summaryrefslogtreecommitdiff
path: root/wsgiref/handlers.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgiref/handlers.py')
-rw-r--r--wsgiref/handlers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsgiref/handlers.py b/wsgiref/handlers.py
index 572cf0d..d4478c7 100644
--- a/wsgiref/handlers.py
+++ b/wsgiref/handlers.py
@@ -6,6 +6,8 @@ from headers import Headers
import sys, os, time
+__all__ = ['BaseHandler', 'SimpleHandler', 'BaseCGIHandler', 'CGIHandler']
+
try:
dict
except NameError:
@@ -37,8 +39,6 @@ def format_date_time(timestamp):
-
-
class BaseHandler:
"""Manage the invocation of a WSGI application"""
@@ -375,7 +375,7 @@ class SimpleHandler(BaseHandler):
Usage::
- handler = BaseCGIHandler(
+ handler = SimpleHandler(
inp,out,err,env, multithread=False, multiprocess=True
)
handler.run(app)"""