expose PKey for documentation, so inherited methods can be seen in DSSKey and RSAKey
This commit is contained in:
parent
6b71c642d1
commit
920b172360
2
README
2
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?
|
||||
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue