__init__.py revision 5821806d5e7f356e8fa4b058a389a808ea183019
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
13try:
14    import twisted
15    del twisted
16except ImportError:
17   del __all__[__all__.index("TLSTwistedProtocolWrapper")]
18