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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
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 960f4065f26eca7df5ac2cf64dd0594efcc4b06f..bb7bca03b755330783a65d678ff9e2d7db10c47b 100644
--- a/third_party/tlslite/tlslite/integration/__init__.py
+++ b/third_party/tlslite/tlslite/integration/__init__.py
@@ -1,17 +1,17 @@
"""Classes for integrating TLS Lite with other packages."""
-__all__ = ["AsyncStateMachine",
- "HTTPTLSConnection",
- "POP3_TLS",
- "IMAP4_TLS",
- "SMTP_TLS",
- "XMLRPCTransport",
- "TLSSocketServerMixIn",
- "TLSAsyncDispatcherMixIn",
- "TLSTwistedProtocolWrapper"]
+__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")]
+ del __all__[__all__.index("tlstwistedprotocolwrapper")]

Powered by Google App Engine
This is Rietveld 408576698