aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/compat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-24 17:08:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-11-24 17:08:23 -0500
commit79e0d772345dd1ca9de73635c9eac47bb505ae03 (patch)
tree544cc0509a8947814e93e38979a89c9b400c24bc /setuptools/compat.py
parent9121e19a1f3923456855f816d1ec7385d33aa018 (diff)
downloadexternal_python_setuptools-79e0d772345dd1ca9de73635c9eac47bb505ae03.tar.gz
external_python_setuptools-79e0d772345dd1ca9de73635c9eac47bb505ae03.tar.bz2
external_python_setuptools-79e0d772345dd1ca9de73635c9eac47bb505ae03.zip
Remove reduce compatibility references (intended for earlier commit).
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 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