diff options
-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 fdb7d8ed..8af8aa74 100644 --- a/setuptools/compat.py +++ b/setuptools/compat.py @@ -23,7 +23,6 @@ if sys.version_info[0] < 3: maxsize = sys.maxint next = lambda o: o.next() numeric_types = (int, long, float) - reduce = reduce unichr = unichr unicode = unicode bytes = str @@ -54,7 +53,6 @@ else: maxsize = sys.maxsize next = next numeric_types = (int, float) - from functools import reduce unichr = chr unicode = str bytes = bytes |