960f4065f26eca7df5ac2cf64dd0594efcc4b06f
[platform/framework/web/crosswalk.git] / src / third_party / tlslite / tlslite / integration / __init__.py
1 """Classes for integrating TLS Lite with other packages."""
2
3 __all__ = ["AsyncStateMachine",
4            "HTTPTLSConnection",
5            "POP3_TLS",
6            "IMAP4_TLS",
7            "SMTP_TLS",
8            "XMLRPCTransport",
9            "TLSSocketServerMixIn",
10            "TLSAsyncDispatcherMixIn",
11            "TLSTwistedProtocolWrapper"]
12
13 try:
14     import twisted
15     del twisted
16 except ImportError:
17    del __all__[__all__.index("TLSTwistedProtocolWrapper")]