Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: third_party/tlslite/tlslite/integration/__init__.py

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 """Classes for integrating TLS Lite with other packages.""" 1 """Classes for integrating TLS Lite with other packages."""
2 2
3 __all__ = ["AsyncStateMachine", 3 __all__ = ["asyncstatemachine",
4 "HTTPTLSConnection", 4 "httptlsconnection",
5 "POP3_TLS", 5 "pop3_tls",
6 "IMAP4_TLS", 6 "imap4_tls",
7 "SMTP_TLS", 7 "smtp_tls",
8 "XMLRPCTransport", 8 "xmlrpctransport",
9 "TLSSocketServerMixIn", 9 "tlssocketservermixin",
10 "TLSAsyncDispatcherMixIn", 10 "tlsasyncdispatchermixin",
11 "TLSTwistedProtocolWrapper"] 11 "tlstwistedprotocolwrapper"]
12 12
13 try: 13 try:
14 import twisted 14 import twisted
15 del twisted 15 del twisted
16 except ImportError: 16 except ImportError:
17 del __all__[__all__.index("TLSTwistedProtocolWrapper")] 17 del __all__[__all__.index("tlstwistedprotocolwrapper")]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698