From: Benjamin Peterson Date: Mon, 16 Nov 2009 00:25:02 +0000 (+0000) Subject: remove 2.x specific warnings X-Git-Tag: v3.2a1~2172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91799ae3e11cc85798ffaa633369895f216c6c65;p=thirdparty%2FPython%2Fcpython.git remove 2.x specific warnings --- diff --git a/Lib/test/test_range.py b/Lib/test/test_range.py index 7e7b91f8d8f1..126868a95a63 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: