summaryrefslogtreecommitdiff
path: root/cherrypy/wsgiserver/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cherrypy/wsgiserver/__init__.py')
-rw-r--r--cherrypy/wsgiserver/__init__.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/cherrypy/wsgiserver/__init__.py b/cherrypy/wsgiserver/__init__.py
deleted file mode 100644
index ee6190fe..00000000
--- a/cherrypy/wsgiserver/__init__.py
+++ /dev/null
@@ -1,14 +0,0 @@
-__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 *')