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 09e5af5c..507f8e6c 100644
--- a/setuptools/compat.py
+++ b/setuptools/compat.py
@@ -23,7 +23,6 @@ if PY2:
long_type = long
maxsize = sys.maxint
next = lambda o: o.next()
- numeric_types = (int, long, float)
unichr = unichr
unicode = unicode
bytes = str
@@ -52,7 +51,6 @@ if PY3:
long_type = int
maxsize = sys.maxsize
next = next
- numeric_types = (int, float)
unichr = chr
unicode = str
bytes = bytes