diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-31 11:46:54 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-31 11:46:54 (GMT) |
| commit | ef4909643d6e1d07626c646137699dfc6b6346f8 (patch) | |
| tree | 191a314cb4ce6a4480bdce1e48ef7ee2b1f2eda1 /Lib/cgi.py | |
| parent | 46bff79d1ffa0308bf902fc8961365d7d2fb2c1a (diff) | |
| download | cpython-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-x | Lib/cgi.py | 2 |
1 files changed, 1 insertions, 1 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, |
