diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 15:00:26 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 15:00:26 -0400 |
commit | 508f0f5134f3f5e87f53b7773086c8ecb30c527e (patch) | |
tree | c88ecb259ef29450e9a8fdbe18cdc196540326e5 /setuptools/compat.py | |
parent | c4ecbd1e58a3384a5ab730450fa5487e48b68721 (diff) | |
download | external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.tar.gz external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.tar.bz2 external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.zip |
next compatibility is no longer required
Diffstat (limited to 'setuptools/compat.py')
-rw-r--r-- | setuptools/compat.py | 2 |
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 |