diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 16:49:29 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 16:49:29 -0800 |
commit | 3b0df60b6ae6453e7248f75625cc0d1ccc5b905b (patch) | |
tree | a74da08a60e86ec59327b2b8ef493ee7c0ffe99d | |
parent | 95b5fd22559e3e24e125471a99962601b490b965 (diff) |
This handily explains why everything was really confusing in autodoc
-rw-r--r-- | paramiko/__init__.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py index 99123858..4bf0c7e6 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -86,13 +86,6 @@ from hostkeys import HostKeys from config import SSHConfig from proxy import ProxyCommand -# fix module names for epydoc -for c in locals().values(): - if issubclass(type(c), type) or type(c).__name__ == 'classobj': - # classobj for exceptions :/ - c.__module__ = __name__ -del c - from common import AUTH_SUCCESSFUL, AUTH_PARTIALLY_SUCCESSFUL, AUTH_FAILED, \ OPEN_SUCCEEDED, OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED, OPEN_FAILED_CONNECT_FAILED, \ OPEN_FAILED_UNKNOWN_CHANNEL_TYPE, OPEN_FAILED_RESOURCE_SHORTAGE |