diff options
author | Jim Fulton <jim@zope.com> | 2012-07-14 14:25:06 -0400 |
---|---|---|
committer | Jim Fulton <jim@zope.com> | 2012-07-14 14:25:06 -0400 |
commit | 12c0d7f3e916957294a095a8425554fe8413e42e (patch) | |
tree | 08dc2f3203449edbfcdc4b8917032651f4b68841 /setuptools/command/bdist_egg.py | |
parent | d169177b19658f115db80d62c91593ca19bb5ee6 (diff) | |
download | external_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.py | 2 |
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 |