diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-11-16 00:25:02 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-11-16 00:25:02 (GMT) |
commit | 91799ae3e11cc85798ffaa633369895f216c6c65 (patch) | |
tree | 8a945e32ff5bbe97908095f02ea772773653f902 /Lib/test/test_range.py | |
parent | 106274b430ac0112b45bea11a8fb99e185abb252 (diff) | |
download | cpython-91799ae3e11cc85798ffaa633369895f216c6c65.zip cpython-91799ae3e11cc85798ffaa633369895f216c6c65.tar.gz cpython-91799ae3e11cc85798ffaa633369895f216c6c65.tar.bz2 |
remove 2.x specific warnings
Diffstat (limited to 'Lib/test/test_range.py')
-rw-r--r-- | Lib/test/test_range.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_range.py b/Lib/test/test_range.py index 7e7b91f..126868a 100644 --- a/Lib/test/test_range.py +++ b/Lib/test/test_range.py @@ -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: |