R. David Murray added the comment:
It is not a bug:
>>> parse_qs('a=&b=1', keep_blank_values=True)
{'a': [''], 'b': ['1']}
--
nosy: +r.david.murray
resolution: -> invalid
stage: -> committed/rejected
status: open -> closed
type: -> behavior
___
Py
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