From 508f0f5134f3f5e87f53b7773086c8ecb30c527e Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 5 Jul 2014 15:00:26 -0400 Subject: next compatibility is no longer required --- setuptools/compat.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'setuptools/compat.py') diff --git a/setuptools/compat.py b/setuptools/compat.py index 45c2f24c..73e6e4aa 100644 --- a/setuptools/compat.py +++ b/setuptools/compat.py @@ -21,7 +21,6 @@ if PY2: iteritems = lambda o: o.iteritems() long_type = long maxsize = sys.maxint - next = lambda o: o.next() unichr = unichr unicode = unicode bytes = str @@ -49,7 +48,6 @@ if PY3: iteritems = lambda o: o.items() long_type = int maxsize = sys.maxsize - next = next unichr = chr unicode = str bytes = bytes -- cgit v1.2.1