aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/bdist_egg.py
diff options
context:
space:
mode:
authorJim Fulton <jim@zope.com>2012-07-14 14:25:06 -0400
committerJim Fulton <jim@zope.com>2012-07-14 14:25:06 -0400
commit12c0d7f3e916957294a095a8425554fe8413e42e (patch)
tree08dc2f3203449edbfcdc4b8917032651f4b68841 /setuptools/command/bdist_egg.py
parentd169177b19658f115db80d62c91593ca19bb5ee6 (diff)
downloadexternal_python_setuptools-12c0d7f3e916957294a095a8425554fe8413e42e.tar.gz
external_python_setuptools-12c0d7f3e916957294a095a8425554fe8413e42e.tar.bz2
external_python_setuptools-12c0d7f3e916957294a095a8425554fe8413e42e.zip
Issue #283 bdist_egg issues with python 3.3.0aX
--HG-- branch : distribute extra : rebase_source : 3173cb1ab5550635b8565767059701ab2649ac19
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r--setuptools/command/bdist_egg.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py
index 68ca15c7..a9d98d3b 100644
--- a/setuptools/command/bdist_egg.py
+++ b/setuptools/command/bdist_egg.py
@@ -459,6 +459,8 @@ def iter_symbols(code):
yield name
def can_scan():
+ if sys.version_info > (3, 3):
+ return False # Can't scan recent formats
if not sys.platform.startswith('java') and sys.platform != 'cli':
# CPython, PyPy, etc.
return True