mirror of
https://github.com/python/cpython.git
synced 2025-11-24 20:30:18 +00:00
#7092: silence more -3 and -Wd warnings
This commit is contained in:
parent
46bff79d1f
commit
ef4909643d
5 changed files with 41 additions and 33 deletions
|
|
@ -172,7 +172,7 @@ def parse(fp=None, environ=os.environ, keep_blank_values=0, strict_parsing=0):
|
|||
else:
|
||||
qs = ""
|
||||
environ['QUERY_STRING'] = qs # XXX Shouldn't, really
|
||||
return parse_qs(qs, keep_blank_values, strict_parsing)
|
||||
return urlparse.parse_qs(qs, keep_blank_values, strict_parsing)
|
||||
|
||||
|
||||
# parse query string function called from urlparse,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue