summaryrefslogtreecommitdiff
path: root/paste/util/httpserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'paste/util/httpserver.py')
-rwxr-xr-xpaste/util/httpserver.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/paste/util/httpserver.py b/paste/util/httpserver.py
index dd2be43..06b4901 100755
--- a/paste/util/httpserver.py
+++ b/paste/util/httpserver.py
@@ -10,15 +10,7 @@ if pyOpenSSL is installed, it also provides SSL capabilities.
"""
import BaseHTTPServer, SocketServer
-import urlparse
-import sys
-import socket
-
-try:
- from paste.httpexceptions import HTTPServerError
-except ImportError:
- # so we can run this module independent of paste
- HTTPServerError = RuntimeError
+import urlparse, sys, socket
__all__ = ['WSGIHandlerMixin','WSGIServer','WSGIHandler', 'serve']
__version__ = "0.2"