[issue23426] run_setup is broken in distutils

2015-07-27 Thread Robert Collins
Changes by Robert Collins : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ __

[issue23426] run_setup is broken in distutils

2015-07-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset d8950778e3c2 by Robert Collins in branch 'default': Issue #23426: run_setup was broken in distutils. https://hg.python.org/cpython/rev/d8950778e3c2 -- nosy: +python-dev ___ Python tracker

[issue23426] run_setup is broken in distutils

2015-07-27 Thread Robert Collins
Robert Collins added the comment: The change in exec doesn't make sense to me (but see lower :)) __file__ should be in globals, not locals, right? Also if it is right, then exec(foo, g) should be equivalent :) The reset of the patch looks ok. But I can see your patch shows this breaking - I'm

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- stage: test needed -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Added tests. -- stage: -> test needed Added file: http://bugs.python.org/file38071/issue23426-with-tests.patch ___ Python tracker ___ ___

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- keywords: +patch Added file: http://bugs.python.org/file38067/issue23426.patch ___ Python tracker ___ ___

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Attached patch fixes both issues. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Removed file: http://bugs.python.org/file38063/setup.py ___ Python tracker ___ ___ Python-bugs-list mailing

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Added file: http://bugs.python.org/file38066/setup.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Added file: http://bugs.python.org/file38063/setup.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Added file: http://bugs.python.org/file38064/setup1.py ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue23426] run_setup is broken in distutils

2015-02-09 Thread Alexander Belopolsky
New submission from Alexander Belopolsky: With the following simple setup.py $ cat setup.py from distutils.core import setup from distutils.command.install import install class install1(install): sub_commands = install.sub_commamnds setup(name='bug', cmdclass={'install': install1}) I get