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 gvanrossum
Recipients
Date 2003-08-28.16:34:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Here's a fix for the CGI server. The problem only
occurs on systems that support os.fork(). When you
invoke a CGI script with a query string and then
subsequent invoke it without a query string (or with an
empty query string), the second invocation gets passed
the query string of the first invocation. This is
because of the way os.environ is updated in the parent,
but when there is no query string, the old query string
doesn't get deleted. The solution is to update the
os.environ in the child.
History
Date User Action Args
2007-08-23 15:28:54adminlinkissue796772 messages
2007-08-23 15:28:54admincreate