You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
__all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer',
|
|
|
|
'SizeCheckWrapper', 'KnownLengthRFile', 'ChunkedRFile',
|
|
|
|
'MaxSizeExceeded', 'NoSSLError', 'FatalSSLAlert',
|
|
|
|
'WorkerThread', 'ThreadPool', 'SSLAdapter',
|
|
|
|
'CherryPyWSGIServer',
|
|
|
|
'Gateway', 'WSGIGateway', 'WSGIGateway_10', 'WSGIGateway_u0',
|
|
|
|
'WSGIPathInfoDispatcher', 'get_ssl_adapter_class']
|
|
|
|
|
|
|
|
import sys
|
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
from wsgiserver2 import *
|
|
|
|
else:
|
|
|
|
# Le sigh. Boo for backward-incompatible syntax.
|
|
|
|
exec('from .wsgiserver3 import *')
|