diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-17 20:05:11 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-17 20:05:11 (GMT) |
commit | 78c1871d2171b091d7249af63a4b5e3a927c0bc2 (patch) | |
tree | 43a34ea07dd9c26baf1e7b02ddf011e4d9bf82c8 /Lib | |
parent | 945a8ba635e2f46de0c883771f2a4b3fa1bd9df4 (diff) | |
download | cpython-78c1871d2171b091d7249af63a4b5e3a927c0bc2.zip cpython-78c1871d2171b091d7249af63a4b5e3a927c0bc2.tar.gz cpython-78c1871d2171b091d7249af63a4b5e3a927c0bc2.tar.bz2 |
Fix and check cgi module deprecation warnings. Revert an unwanted rename in test_import.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/cgi.py | 10 | ||||
-rw-r--r-- | Lib/test/test_cgi.py | 11 | ||||
-rw-r--r-- | Lib/test/test_import.py | 2 |
3 files changed, 12 insertions, 11 deletions
@@ -45,10 +45,10 @@ from warnings import filterwarnings, catch_warnings, warn with catch_warnings(): if sys.py3kwarning: filterwarnings("ignore", ".*mimetools has been removed", - DeprecationWarning) + DeprecationWarning) + filterwarnings("ignore", ".*rfc822 has been removed", + DeprecationWarning) import mimetools - if sys.py3kwarning: - filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning) import rfc822 try: @@ -180,8 +180,8 @@ def parse(fp=None, environ=os.environ, keep_blank_values=0, strict_parsing=0): def parse_qs(qs, keep_blank_values=0, strict_parsing=0): """Parse a query given as a string argument.""" - warn("cgi.parse_qs is deprecated, use urlparse.parse_qs \ - instead", PendingDeprecationWarning, 2) + warn("cgi.parse_qs is deprecated, use urlparse.parse_qs instead", + PendingDeprecationWarning, 2) return urlparse.parse_qs(qs, keep_blank_values, strict_parsing) diff --git a/Lib/test/test_cgi.py b/Lib/test/test_cgi.py index c5e07a0..791553b 100644 --- a/Lib/test/test_cgi.py +++ b/Lib/test/test_cgi.py @@ -4,7 +4,6 @@ import os import sys import tempfile import unittest -from StringIO import StringIO class HackedSysModule: # The regression test will have real values in sys.argv, which @@ -340,14 +339,16 @@ this is the content of the fake file self.assertEqual(result, v) def test_deprecated_parse_qs(self): - with check_warnings(quiet=False): - # this func is moved to urlparse, this is just a sanity check + # this func is moved to urlparse, this is just a sanity check + with check_warnings(('cgi.parse_qs is deprecated, use urlparse.' + 'parse_qs instead', PendingDeprecationWarning)): self.assertEqual({'a': ['A1'], 'B': ['B3'], 'b': ['B2']}, cgi.parse_qs('a=A1&b=B2&B=B3')) def test_deprecated_parse_qsl(self): - with check_warnings(quiet=False): - # this func is moved to urlparse, this is just a sanity check + # this func is moved to urlparse, this is just a sanity check + with check_warnings(('cgi.parse_qsl is deprecated, use urlparse.' + 'parse_qsl instead', PendingDeprecationWarning)): self.assertEqual([('a', 'A1'), ('b', 'B2'), ('B', 'B3')], cgi.parse_qsl('a=A1&b=B2&B=B3')) diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 44594d8..f47c6c9 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -162,7 +162,7 @@ class ImportTests(unittest.TestCase): unlink(filename + 'c') unlink(filename + 'o') - def test_0Bfailing_import_sticks(self): + def test_failing_import_sticks(self): source = TESTFN + os.extsep + "py" with open(source, "w") as f: print >> f, "a = 1 // 0" |