diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-02-23 05:53:05 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-02-23 05:53:05 (GMT) |
| commit | b8708a298e104be12ac6532dafecd81890aacd61 (patch) | |
| tree | dd9e08f1d750bcfb0328a190a3ed8f4e3df66b5d /Lib/wsgiref/handlers.py | |
| parent | 2900c4413b13c81d2974cbe9898edcf4c417a1f6 (diff) | |
| download | cpython-b8708a298e104be12ac6532dafecd81890aacd61.zip cpython-b8708a298e104be12ac6532dafecd81890aacd61.tar.gz cpython-b8708a298e104be12ac6532dafecd81890aacd61.tar.bz2 | |
fixed #5801: removed spurious empty lines in wsgiref
Diffstat (limited to 'Lib/wsgiref/handlers.py')
| -rw-r--r-- | Lib/wsgiref/handlers.py | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py index aa8163b..fcb8e23 100644 --- a/Lib/wsgiref/handlers.py +++ b/Lib/wsgiref/handlers.py @@ -39,7 +39,6 @@ def format_date_time(timestamp): ) - class BaseHandler: """Manage the invocation of a WSGI application""" @@ -74,13 +73,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 @@ -359,15 +351,6 @@ class BaseHandler: raise NotImplementedError - - - - - - - - - class SimpleHandler(BaseHandler): """Handler that's just initialized with streams, environment, etc. @@ -433,23 +416,6 @@ class BaseCGIHandler(SimpleHandler): origin_server = False - - - - - - - - - - - - - - - - - class CGIHandler(BaseCGIHandler): """CGI-based invocation via sys.stdin/stdout/stderr and os.environ @@ -474,20 +440,3 @@ class CGIHandler(BaseCGIHandler): self, sys.stdin, sys.stdout, sys.stderr, dict(os.environ.items()), multithread=False, multiprocess=True ) - - - - - - - - - - - - - - - - -# |
