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 sgala
Recipients sgala
Date 2010-03-14.18:08:53
SpamBayes Score 0.00067470904
Marked as misclassified No
Message-id <1268590136.32.0.519225445448.issue8138@psf.upfronthosting.co.za>
In-reply-to
Content
In python 2.6, a server created with wsgiref.simple_server.make_server will
claim to be multithreaded and multiprocess through it wsgi environ. See  wsgi.multithread in the browser page after launching

  $ python /usr/lib/python2.6/wsgiref/simple_server.py

The bug is due to the default value in the constructor wsgiref.handlers.SimpleHandler, and it is misleading, as the servier is singlethreaded. It gives problems for any app that wants to change behavior or error on singlethreaded.

The problem can be fixed very simply by patching a "multithreaded=False" argument into the ServerHandler constructor in simple_server.
History
Date User Action Args
2010-03-14 18:08:56sgalasetrecipients: + sgala
2010-03-14 18:08:56sgalasetmessageid: <1268590136.32.0.519225445448.issue8138@psf.upfronthosting.co.za>
2010-03-14 18:08:54sgalalinkissue8138 messages
2010-03-14 18:08:54sgalacreate