summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-14 17:54:48 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-14 17:54:48 (GMT)
commit88b1defb6f770c4f74788e8296b88fc31c3936ce (patch)
tree9ed263ea6acb3de8804a169aef5d4a1499b4431b /Lib
parent39c12bfba1f2094d9ee997ee71e816980ff674f7 (diff)
downloadcpython-88b1defb6f770c4f74788e8296b88fc31c3936ce.zip
cpython-88b1defb6f770c4f74788e8296b88fc31c3936ce.tar.gz
cpython-88b1defb6f770c4f74788e8296b88fc31c3936ce.tar.bz2
The filterwarnings() call here should be updated to filter out
FutureWarning.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/test/regrtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index dee2847..3ae73b4 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -67,7 +67,7 @@ import warnings
# I see no other way to suppress these warnings;
# putting them in test_grammar.py has no effect:
-warnings.filterwarnings("ignore", "hex/oct constants", DeprecationWarning,
+warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
".*test.test_grammar$")
from test import test_support