summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--paramiko/__init__.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/README b/README
index 04faf721..909d13d3 100644
--- a/README
+++ b/README
@@ -215,3 +215,5 @@ v1.6 UMBREON
* figure out how to parse ssh.com encrypted key files?
* is it possible to poll on a set of events at once?
* potentially create only one thread shared by all Transports
+* SSHClient: flag to turn off agent detection? flag to turn off keyfile discovery?
+
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 65f28207..94565d94 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -96,6 +96,7 @@ 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, \
@@ -112,6 +113,7 @@ __all__ = [ 'Transport',
'SecurityOptions',
'SubsystemHandler',
'Channel',
+ 'PKey',
'RSAKey',
'DSSKey',
'Message',