summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref/handlers.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-02-23 06:00:04 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2010-02-23 06:00:04 (GMT)
commit8e615ae3bb6589993316fe960cdf6d710ad5aa66 (patch)
treec528f8c9816e8e4ca02a424665ab1077c7acade7 /Lib/wsgiref/handlers.py
parentc339978b1bbce8f3003f25e79ba0dc2f16c319cb (diff)
downloadcpython-8e615ae3bb6589993316fe960cdf6d710ad5aa66.zip
cpython-8e615ae3bb6589993316fe960cdf6d710ad5aa66.tar.gz
cpython-8e615ae3bb6589993316fe960cdf6d710ad5aa66.tar.bz2
Merged revisions 78367 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78367 | tarek.ziade | 2010-02-23 00:53:05 -0500 (Tue, 23 Feb 2010) | 1 line fixed #5801: removed spurious empty lines in wsgiref ........
Diffstat (limited to 'Lib/wsgiref/handlers.py')
-rw-r--r--Lib/wsgiref/handlers.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py
index 4c548d1..f0cc398 100644
--- a/Lib/wsgiref/handlers.py
+++ b/Lib/wsgiref/handlers.py
@@ -20,7 +20,6 @@ def format_date_time(timestamp):
)
-
class BaseHandler:
"""Manage the invocation of a WSGI application"""
@@ -55,13 +54,6 @@ class BaseHandler:
headers = None
bytes_sent = 0
-
-
-
-
-
-
-
def run(self, application):
"""Invoke the application"""
# Note to self: don't move the close()! Asynchronous servers shouldn't
@@ -351,15 +343,6 @@ class BaseHandler:
raise NotImplementedError
-
-
-
-
-
-
-
-
-
class SimpleHandler(BaseHandler):
"""Handler that's just initialized with streams, environment, etc.
@@ -430,23 +413,6 @@ class BaseCGIHandler(SimpleHandler):
origin_server = False
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
class CGIHandler(BaseCGIHandler):
"""CGI-based invocation via sys.stdin/stdout/stderr and os.environ
@@ -471,20 +437,3 @@ class CGIHandler(BaseCGIHandler):
self, sys.stdin, sys.stdout, sys.stderr, dict(os.environ.items()),
multithread=False, multiprocess=True
)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-#