]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove 2.x specific warnings
authorBenjamin Peterson <benjamin@python.org>
Mon, 16 Nov 2009 00:25:02 +0000 (00:25 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 16 Nov 2009 00:25:02 +0000 (00:25 +0000)
Lib/test/test_range.py

index 7e7b91f8d8f186f70cb56d85246a670587b1d201..126868a95a630987aafb79888eabd7aa462ec31f 100644 (file)
@@ -5,10 +5,6 @@ import sys
 import pickle
 import itertools
 
-import warnings
-warnings.filterwarnings("ignore", "integer argument expected",
-                        DeprecationWarning, "unittest")
-
 # pure Python implementations (3 args only), for comparison
 def pyrange(start, stop, step):
     if (start - stop) // step < 0: