commit | ef4909643d6e1d07626c646137699dfc6b6346f8 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sun Jan 31 11:46:54 2010 +0000 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sun Jan 31 11:46:54 2010 +0000 |
tree | 191a314cb4ce6a4480bdce1e48ef7ee2b1f2eda1 | |
parent | 46bff79d1ffa0308bf902fc8961365d7d2fb2c1a [diff] [blame] |
#7092: silence more -3 and -Wd warnings
diff --git a/Lib/cgi.py b/Lib/cgi.py index fd30383..db10a62 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py
@@ -172,7 +172,7 @@ 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,