[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-16 Thread Ezio Melotti
Ezio Melotti added the comment: This should be fixed now. -- assignee: -> ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 2.7 ___ Python tracker

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2370ae9ee052 by Ezio Melotti in branch '3.2': #11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters. http://hg.python.org/cpython/rev/2370ae9ee052 New changeset c70746a0291f by Ezio Melotti in branch '2.7': #1

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-15 Thread Éric Araujo
Éric Araujo added the comment: Looks fine. Can this go into 2.7 too? -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-lis

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: There are a couple more tests elsewhere that use @skipIf(sys.dont_write_bytecode, ...) directly, but I don't think it's generic enough to be moved to test.support. -- ___ Python tracker

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-14 Thread Berker Peksag
Berker Peksag added the comment: +skip_if_dont_write_bytecode = unittest.skipIf( +sys.dont_write_bytecode, +"test meaningful only when writing bytecode") Maybe this could be added to the test.support module? -- nosy: +berker.peksag __

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2013-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: Attached an updated patch against 3.2. -- nosy: +ezio.melotti type: -> behavior versions: +Python 3.4 -Python 3.1 Added file: http://bugs.python.org/file29405/issue11420.diff ___ Python tracker

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-07 Thread Thomas Wouters
Changes by Thomas Wouters : Added file: http://bugs.python.org/file21037/py32-dontwritebytecode.diff ___ Python tracker ___ ___ Python-bugs-li

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-07 Thread Thomas Wouters
Thomas Wouters added the comment: As per issue #11417, updated to also skip the tests in distutils/tests/test_bdist_rpm.py when not writing bytecode. -- Added file: http://bugs.python.org/file21036/py31-dontwritebytecode.diff ___ Python tracker

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-07 Thread Thomas Wouters
Changes by Thomas Wouters : Removed file: http://bugs.python.org/file21023/py32-dontwritebytecode.diff ___ Python tracker ___ ___ Python-bugs-

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-07 Thread Thomas Wouters
Changes by Thomas Wouters : Removed file: http://bugs.python.org/file21022/py31-dontwritebytecode.diff ___ Python tracker ___ ___ Python-bugs-

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +barry, ncoghlan stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-06 Thread Thomas Wouters
Changes by Thomas Wouters : Added file: http://bugs.python.org/file21023/py32-dontwritebytecode.diff ___ Python tracker ___ ___ Python-bugs-li

[issue11420] Make testsuite pass with -B/DONTWRITEBYTECODE set.

2011-03-06 Thread Thomas Wouters
New submission from Thomas Wouters : This patch tweaks a few tests that currently rely on .pyc files being written, causing them to fail (or crash) when running 'make test TESTPYTHONOPTS=-B'. All these are purely test failures, not failures in the tested code (unlike issue #11417, which is a f