diff --git a/paramiko/transport.py b/paramiko/transport.py index 94f38e6..a561120 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -83,7 +83,8 @@ class SecurityOptions (object): C{ValueError} will be raised. If you try to assign something besides a tuple to one of the fields, C{TypeError} will be raised. """ - __slots__ = [ 'ciphers', 'digests', 'key_types', 'kex', 'compression', '_transport' ] + # TODO: Come up a more elegant fix... + #__slots__ = [ 'ciphers', 'digests', 'key_types', 'kex', 'compression', '_transport' ] def __init__(self, transport): self._transport = transport