This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author shimizukawa
Recipients docs@python, shimizukawa
Date 2011-05-01.05:56:22
SpamBayes Score 0.21368171
Marked as misclassified No
Message-id <1304229384.21.0.895279111303.issue11968@psf.upfronthosting.co.za>
In-reply-to
Content
WSGI sapmle code at wsgiref document (http://docs.python.org/py3k/library/wsgiref.html#wsgiref.util.setup_testing_defaults) was broken.


- status = b'200 OK'
- headers = [(b'Content-type', b'text/plain; charset=utf-8')]
+ status = '200 OK'
+ headers = [('Content-type', 'text/plain; charset=utf-8')]
History
Date User Action Args
2011-05-01 05:56:24shimizukawasetrecipients: + shimizukawa, docs@python
2011-05-01 05:56:24shimizukawasetmessageid: <1304229384.21.0.895279111303.issue11968@psf.upfronthosting.co.za>
2011-05-01 05:56:22shimizukawalinkissue11968 messages
2011-05-01 05:56:22shimizukawacreate