[issue5183] wsgiref.simple_server not working
Stephen Day
report at bugs.python.org
Sun Feb 8 06:24:24 CET 2009
New submission from Stephen Day <stephen.h.day at gmail.com>:
The attached application doesn't work. I think the value of self.headers
(see line 114) has a blank line at the end that it did not in Python 2.5
Here is the error message that occurs when it gets a request
(http://127.0.0.1:8080/):
Exception happened during processing of request from ('127.0.0.1',
60549)
Traceback (most recent call last):
File "C:\Python30\lib\socketserver.py", line 281, in
_handle_request_noblock
self.process_request(request, client_address)
File "C:\Python30\lib\socketserver.py", line 307, in process_request
self.finish_request(request, client_address)
File "C:\Python30\lib\socketserver.py", line 320, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "C:\Python30\lib\socketserver.py", line 614, in __init__
self.handle()
File "C:\Python30\lib\wsgiref\simple_server.py", line 136, in handle
self.rfile, self.wfile, self.get_stderr(), self.get_environ()
File "C:\Python30\lib\wsgiref\simple_server.py", line 115, in
get_environ
k,v = h.split(':',1)
ValueError: need more than 1 value to unpack
----------
components: Library (Lib)
files: test_server.py
messages: 81366
nosy: StephenDay
severity: normal
status: open
title: wsgiref.simple_server not working
type: crash
versions: Python 3.0
Added file: http://bugs.python.org/file12976/test_server.py
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5183>
_______________________________________
More information about the Python-bugs-list
mailing list