diff --git a/Lib/test/test_range.py b/Lib/test/test_range.py index 7e7b91f8d8f..126868a95a6 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: