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 jimjjewett
Recipients
Date 2006-08-02.22:04:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=764593

I suspect that changing 

>>> fp = StringIO(qs)

to 

>>> fp = StringIO(qs or "")

would fix the problem.

If so, this is arguably a bug in myghty.  qs was already 
set to "" unless sys.argv[1] or environ['QUERY_STRING']had 
a value.  Neither of these should ever be None.  (They 
should be either a string, or not found.)
History
Date User Action Args
2008-01-20 09:58:49adminlinkissue1525343 messages
2008-01-20 09:58:49admincreate