[issue13170] distutils2 test failures

2011-11-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c1b1b537196d by Éric Araujo in branch 'default': Remove usage of stdlib shutil. http://hg.python.org/distutils2/rev/c1b1b537196d -- ___ Python tracker ___

[issue13170] distutils2 test failures

2011-11-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b096fc6e65d by Éric Araujo in branch 'default': Fix import in install_data (#13170). Thanks to David Barnett. http://hg.python.org/distutils2/rev/5b096fc6e65d New changeset 2d469ccfe30e by Éric Araujo in branch 'python3': Merge fixes for #13170 a

[issue13170] distutils2 test failures

2011-11-12 Thread Éric Araujo
Éric Araujo added the comment: All three issues fixed, thanks! I can’t push today but I will as soon as possible, probably Monday. I will open another report for the change I reverted in config; it was done on purpose by another developer to fix a bug with distutils2’s own setup script, so

[issue13170] distutils2 test failures

2011-10-31 Thread Éric Araujo
Éric Araujo added the comment: > When I do "import shutil" inside _backport/shutil.py You shouldn’t do that! Our backported module is fully stand-alone. I have fixed the bug with this change in install_data.py: -from shutil import Error +from distutils2._backport.shutil import Error I think

[issue13170] distutils2 test failures

2011-10-28 Thread David Barnett
David Barnett added the comment: >> The remaining test >> (test_command_install_data.InstallDataTestCase.test_simple_run) was >> broken in r1152. >This looks like a local revision number, which has no meaning outside of one >specific repository. What is the changeset identifier? (see >http:

[issue13170] distutils2 test failures

2011-10-28 Thread Éric Araujo
Éric Araujo added the comment: > The remaining test > (test_command_install_data.InstallDataTestCase.test_simple_run) was > broken in r1152. This looks like a local revision number, which has no meaning outside of one specific repository. What is the changeset identifier? (see http://hgbook

[issue13170] distutils2 test failures

2011-10-27 Thread David Barnett
David Barnett added the comment: The remaining test (test_command_install_data.InstallDataTestCase.test_simple_run) was broken in r1152. What's happening is that the type of exception being raised was changed and it's getting through the try/except block in install_data.run(). Instead of cal

[issue13170] distutils2 test failures

2011-10-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset cda119958db3 by Éric Araujo in branch 'default': Kludge around shlex not supporting unicode in 2.x (#13170). http://hg.python.org/distutils2/rev/cda119958db3 -- ___ Python tracker

[issue13170] distutils2 test failures

2011-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5d858149df06 by Éric Araujo in branch 'default': Synchronize config with packaging (fixes #13170) http://hg.python.org/distutils2/rev/5d858149df06 -- nosy: +python-dev ___ Python tracker

[issue13170] distutils2 test failures

2011-10-17 Thread David Barnett
David Barnett added the comment: The ConfigTestCase.test_parse_extensions_in_config failure is a manifestation of http://bugs.python.org/issue6988. -- ___ Python tracker ___ __

[issue13170] distutils2 test failures

2011-10-17 Thread David Barnett
David Barnett added the comment: I looked into the ConfigTestCase.test_config failure, and it looks like it just needs the righthand edited to match the left. "package_data" lines are supposed to allow comma-separated lists of paths on the righthand. -- nosy: +mu_mind ___

[issue13170] distutils2 test failures

2011-10-13 Thread Éric Araujo
New submission from Éric Araujo : I get three errors/failures on linux3: ERROR: test_simple_run (distutils2.tests.test_command_install_data.InstallDataTestCase) -- Traceback (most recent call last): File "distutils2/tests/tes