Add rst files for all the modules

This commit is contained in:
Andrew Resch 2009-08-11 23:05:13 +00:00
commit c0d0498f36
86 changed files with 761 additions and 3 deletions

View file

@ -296,8 +296,9 @@ class build_docs(BuildDoc):
return old_import(name, globals, locals, fromlist, level)
except ImportError:
return FakeModule()
except:
raise
except Exception, e:
print "Skipping Exception: ", e
return FakeModule()
__builtins__.__import__ = new_import
BuildDoc.run(self)