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
parent be5acb40
...@@ -2,15 +2,20 @@ ...@@ -2,15 +2,20 @@
CHANGES CHANGES
======= =======
------
0.6.29
------
* Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3.
------ ------
0.6.28 0.6.28
------ ------
* Issue 294: setup.py can now be invoked from any directory. * Issue #294: setup.py can now be invoked from any directory.
* Scripts are now installed honoring the umask. * Scripts are now installed honoring the umask.
* Added support for .dist-info directories. * Added support for .dist-info directories.
* Issue #283 bdist_egg issues with python 3.3.0aX. * Issue #283: Fix and disable scanning of *.pyc / *.pyo files on Python 3.3.
* Test and fix for marshal.load of .pyc files on Python 3.3.
------ ------
0.6.27 0.6.27
......
...@@ -463,8 +463,6 @@ def iter_symbols(code): ...@@ -463,8 +463,6 @@ def iter_symbols(code):
yield name yield name
def can_scan(): 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': if not sys.platform.startswith('java') and sys.platform != 'cli':
# CPython, PyPy, etc. # CPython, PyPy, etc.
return True return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment