diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2012-07-21 17:25:51 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-07-21 17:25:51 -0400 |
| commit | 686a056a8c3b362ae112b289644ef34e8a272b65 (patch) | |
| tree | 8ab5eb9c0ec60143f973a98ced721cec1642971a /setuptools/command/bdist_egg.py | |
| parent | 3a042756a6f849a81171204d1f922214fe8483f0 (diff) | |
| parent | 12c0d7f3e916957294a095a8425554fe8413e42e (diff) | |
| download | python-setuptools-git-686a056a8c3b362ae112b289644ef34e8a272b65.tar.gz | |
Merge pull request #12
--HG--
branch : distribute
extra : rebase_source : d28d651ee0c59a1194c171613aefe284ade4399b
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 |
