diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2012-07-25 05:11:56 +0200 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2012-07-25 05:11:56 +0200 |
commit | 4084ebc22ff58d406b73fe25c069b5235f04c4d8 (patch) | |
tree | d1a96789ee6f17c37b52d575621457b2ec55b646 /setuptools | |
parent | be5acb407cfa5dd1ff37ac1ed68d96ba92302cc2 (diff) | |
download | external_python_setuptools-4084ebc22ff58d406b73fe25c069b5235f04c4d8.tar.gz external_python_setuptools-4084ebc22ff58d406b73fe25c069b5235f04c4d8.tar.bz2 external_python_setuptools-4084ebc22ff58d406b73fe25c069b5235f04c4d8.zip |
Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3.
Scanning of these files was fixed in commit 2479772eeea7.
--HG--
branch : distribute
extra : rebase_source : fcbb14f0e6efc2c42b691fa2a8920816903ede42
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/command/bdist_egg.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index cf2d75e4..0ee9c55b 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -463,8 +463,6 @@ 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 |