aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/compat.py')
-rw-r--r--setuptools/compat.py2
1 files changed, 0 insertions, 2 deletions
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