OLD | NEW |
(Empty) | |
| 1 __all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer', |
| 2 'SizeCheckWrapper', 'KnownLengthRFile', 'ChunkedRFile', |
| 3 'MaxSizeExceeded', 'NoSSLError', 'FatalSSLAlert', |
| 4 'WorkerThread', 'ThreadPool', 'SSLAdapter', |
| 5 'CherryPyWSGIServer', |
| 6 'Gateway', 'WSGIGateway', 'WSGIGateway_10', 'WSGIGateway_u0', |
| 7 'WSGIPathInfoDispatcher', 'get_ssl_adapter_class'] |
| 8 |
| 9 import sys |
| 10 if sys.version_info < (3, 0): |
| 11 from wsgiserver2 import * |
| 12 else: |
| 13 # Le sigh. Boo for backward-incompatible syntax. |
| 14 exec('from .wsgiserver3 import *') |
OLD | NEW |