| Index: third_party/tlslite/tlslite/integration/__init__.py
|
| diff --git a/third_party/tlslite/tlslite/integration/__init__.py b/third_party/tlslite/tlslite/integration/__init__.py
|
| index bb7bca03b755330783a65d678ff9e2d7db10c47b..663dfb6de4a6ff0670c9b3c5a5e5d159a56d3125 100644
|
| --- a/third_party/tlslite/tlslite/integration/__init__.py
|
| +++ b/third_party/tlslite/tlslite/integration/__init__.py
|
| @@ -1,3 +1,6 @@
|
| +# Author: Trevor Perrin
|
| +# See the LICENSE file for legal information regarding use of this file.
|
| +
|
| """Classes for integrating TLS Lite with other packages."""
|
|
|
| __all__ = ["asyncstatemachine",
|
| @@ -7,11 +10,4 @@ __all__ = ["asyncstatemachine",
|
| "smtp_tls",
|
| "xmlrpctransport",
|
| "tlssocketservermixin",
|
| - "tlsasyncdispatchermixin",
|
| - "tlstwistedprotocolwrapper"]
|
| -
|
| -try:
|
| - import twisted
|
| - del twisted
|
| -except ImportError:
|
| - del __all__[__all__.index("tlstwistedprotocolwrapper")]
|
| + "tlsasyncdispatchermixin"]
|
|
|