/gdata/tlslite/integration/__init__.py
http://radioappz.googlecode.com/ · Python · 17 lines · 14 code · 2 blank · 1 comment · 2 complexity · 09e211aa20be0af7c96f082eb96ea202 MD5 · raw file
- """Classes for integrating TLS Lite with other packages."""
- __all__ = ["AsyncStateMachine",
- "HTTPTLSConnection",
- "POP3_TLS",
- "IMAP4_TLS",
- "SMTP_TLS",
- "XMLRPCTransport",
- "TLSSocketServerMixIn",
- "TLSAsyncDispatcherMixIn",
- "TLSTwistedProtocolWrapper"]
- try:
- import twisted
- del twisted
- except ImportError:
- del __all__[__all__.index("TLSTwistedProtocolWrapper")]