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 stutiredboy
Recipients stutiredboy
Date 2013-11-13.14:07:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384351634.39.0.133564903051.issue19571@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import urlparse
>>> urlparse.parse_qs('a=&b=1')
{'b': ['1']}
>>> 

why not:

{'a' : [''], 'b' : ['1']}

is this a bug?
History
Date User Action Args
2013-11-13 14:07:14stutiredboysetrecipients: + stutiredboy
2013-11-13 14:07:14stutiredboysetmessageid: <1384351634.39.0.133564903051.issue19571@psf.upfronthosting.co.za>
2013-11-13 14:07:14stutiredboylinkissue19571 messages
2013-11-13 14:07:14stutiredboycreate