expose PKey for documentation, so inherited methods can be seen in DSSKey and RSAKey
This commit is contained in:
Robey Pointer 2007-03-26 00:58:19 -07:00
parent 6b71c642d1
commit 920b172360
2 changed files with 4 additions and 0 deletions

2
README
View File

@ -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?

View File

@ -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',