This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients brian.curtin, r.david.murray, skrah
Date 2010-11-22.14:40:57
SpamBayes Score 2.2218893e-12
Marked as misclassified No
Message-id <1290436861.2.0.949671079169.issue10505@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows, test_compileall fails due to #10197:

======================================================================
FAIL: test_quiet (test.test_compileall.CommandLineTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows7\build\lib\test\test_compileall.py", line 227, in test_quiet
    self.assertGreater(len(noise), len(quiet))
AssertionError: 89 not greater than 89


The patch uses subprocess.check_output() instead. Technically, now
byte strings are compared instead of strings, but that should not matter
for the outcome.

Does the patch look ok?
History
Date User Action Args
2010-11-22 14:41:01skrahsetrecipients: + skrah, r.david.murray, brian.curtin
2010-11-22 14:41:01skrahsetmessageid: <1290436861.2.0.949671079169.issue10505@psf.upfronthosting.co.za>
2010-11-22 14:40:57skrahlinkissue10505 messages
2010-11-22 14:40:57skrahcreate