summaryrefslogtreecommitdiffstats
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-09-09 02:43:19 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-09-09 02:43:19 (GMT)
commita27244bfa13ed7e0efd0d0fd2dd6a553fbb08124 (patch)
tree3bc30bfbe80a939a298253cc4311076a4e101453 /Lib/cgi.py
parent1cd0247a4d1b8282631707ba06b514aeddc75782 (diff)
downloadcpython-a27244bfa13ed7e0efd0d0fd2dd6a553fbb08124.zip
cpython-a27244bfa13ed7e0efd0d0fd2dd6a553fbb08124.tar.gz
cpython-a27244bfa13ed7e0efd0d0fd2dd6a553fbb08124.tar.bz2
Added a warning filter to don't show the warning during
the tests. Also fixed the warning message in cgi.py
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 d1ac4be..e62fcf2 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -168,7 +168,7 @@ def parse_qs(qs, keep_blank_values=0, strict_parsing=0):
def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
"""Parse a query given as a string argument."""
- warn("cgi.parse_qsl is deprecated, use urllib.parse.parse_qs instead",
+ warn("cgi.parse_qsl is deprecated, use urllib.parse.parse_qsl instead",
DeprecationWarning)
return urllib.parse.parse_qsl(qs, keep_blank_values, strict_parsing)