summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-07-25 05:11:56 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-07-25 05:11:56 +0200
commit0f2c6ace6117b9ae968d4061ee3dc20444a67d8e (patch)
tree135ffb3719c961e6aab545f7d579516d04b35ba2 /setuptools/command
parent66585305ccaa12cdb0b89b3c99f2189085c8ec0d (diff)
downloadpython-setuptools-bitbucket-0f2c6ace6117b9ae968d4061ee3dc20444a67d8e.tar.gz
Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3.
Scanning of these files was fixed in commit 2479772eeea7.
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/bdist_egg.py2
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