More changes of DeprecationWarning to FutureWarning.

This commit is contained in:
Guido van Rossum 2002-08-14 18:38:27 +00:00
parent 29c2106465
commit 54df53a352
5 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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