From 91799ae3e11cc85798ffaa633369895f216c6c65 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 16 Nov 2009 00:25:02 +0000 Subject: remove 2.x specific warnings --- Lib/test/test_range.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Lib/test/test_range.py') diff --git a/Lib/test/test_range.py b/Lib/test/test_range.py index 7e7b91f8d8..126868a95a 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: -- cgit v1.2.1