[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2015-01-08 Thread Vjacheslav Fyodorov
Vjacheslav Fyodorov added the comment: Now in 3.4 Fedora 21 -- nosy: +Vjacheslav.Fyodorov versions: +Python 3.4 -3rd party, Python 3.2, Python 3.3 ___ Python tracker ___

[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2011-11-03 Thread Éric Araujo
Éric Araujo added the comment: I wrote the same fix this night :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2011-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2c0253d4d9ba by Antoine Pitrou in branch '3.2': Issue #13307: fix bdist_rpm test failures http://hg.python.org/cpython/rev/2c0253d4d9ba New changeset eb2991f7cdc8 by Antoine Pitrou in branch 'default': Issue #13307: fix bdist_rpm test failures http

[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2011-11-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Should be fixed now (verified here on Mageia). -- dependencies: -distutils doesn't byte-compile .py files to __pycache__ during installation nosy: +pitrou resolution: -> fixed stage: -> committed/rejected status: open -> closed

[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2011-11-02 Thread Éric Araujo
Changes by Éric Araujo : -- dependencies: +distutils doesn't byte-compile .py files to __pycache__ during installation ___ Python tracker ___ ___

[issue13307] bdist_rpm: INSTALLED_FILES does not use __pycache__

2011-11-02 Thread Éric Araujo
Éric Araujo added the comment: bdist_rpm uses the record option of install to create INSTALLED_FILES. install delegates to the get_output method of install_* commands to build its record. install_lib has buggy code that appends 'c' or 'o' instead of using imp functions. I have expanded one