diff options
author | Guido van Rossum <guido@python.org> | 2002-08-14 18:38:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-14 18:38:27 (GMT) |
commit | 54df53a3522436e714ac6ea6f896bf790d31bc4e (patch) | |
tree | bccd10e1e90877f0068a3aa704827272ad146c3e /Lib | |
parent | 29c2106465afdcb3f48f3ef6cca7660fa644764d (diff) | |
download | cpython-54df53a3522436e714ac6ea6f896bf790d31bc4e.zip cpython-54df53a3522436e714ac6ea6f896bf790d31bc4e.tar.gz cpython-54df53a3522436e714ac6ea6f896bf790d31bc4e.tar.bz2 |
More changes of DeprecationWarning to FutureWarning.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_b1.py | 2 | ||||
-rw-r--r-- | Lib/test/test_b2.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index 938e76d..d80767b 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -2,7 +2,7 @@ import warnings warnings.filterwarnings("ignore", "hex../oct.. of negative int", - DeprecationWarning, __name__) + FutureWarning, __name__) from test.test_support import TestFailed, fcmp, have_unicode, TESTFN, unlink diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py index d3653a5..d59e905 100644 --- a/Lib/test/test_b2.py +++ b/Lib/test/test_b2.py @@ -2,7 +2,7 @@ import warnings warnings.filterwarnings("ignore", "hex../oct.. of negative int", - DeprecationWarning, __name__) + FutureWarning, __name__) from test.test_support import TestFailed, fcmp, TESTFN, unlink, vereq |