[New-bugs-announce] [issue19571] urlparse.parse_qs with empty string

stutiredboy report at bugs.python.org
Wed Nov 13 15:07:14 CET 2013


New submission from stutiredboy:

>>> import urlparse
>>> urlparse.parse_qs('a=&b=1')
{'b': ['1']}
>>> 

why not:

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

is this a bug?

----------
components: Library (Lib)
messages: 202751
nosy: stutiredboy
priority: normal
severity: normal
status: open
title: urlparse.parse_qs with empty string
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19571>
_______________________________________


More information about the New-bugs-announce mailing list