summaryrefslogtreecommitdiffstats
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-31 11:46:54 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-31 11:46:54 (GMT)
commitef4909643d6e1d07626c646137699dfc6b6346f8 (patch)
tree191a314cb4ce6a4480bdce1e48ef7ee2b1f2eda1 /Lib/cgi.py
parent46bff79d1ffa0308bf902fc8961365d7d2fb2c1a (diff)
downloadcpython-ef4909643d6e1d07626c646137699dfc6b6346f8.zip
cpython-ef4909643d6e1d07626c646137699dfc6b6346f8.tar.gz
cpython-ef4909643d6e1d07626c646137699dfc6b6346f8.tar.bz2
#7092: silence more -3 and -Wd warnings
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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,