[issue7537] test_format fails with -j combined with -v

2011-01-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Seems to work, even when forcing LANG=C. -- status: pending -> closed ___ Python tracker ___ ___ Pyt

[issue7537] test_format fails with -j combined with -v

2010-10-14 Thread Florent Xicluna
Florent Xicluna added the comment: Unable to reproduce, here. It seems fixed. -- nosy: +haypo resolution: -> works for me status: open -> pending ___ Python tracker ___

[issue7537] test_format fails with -j combined with -v

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Funny, because it works here (Mandriva Linux, py3k branch). Can you still reproduce? (in any case, it doesn't make much sense to run in verbose mode with -jN, since it will interleave output from several tests) --

[issue7537] test_format fails with -j combined with -v

2010-07-31 Thread Éric Araujo
Éric Araujo added the comment: James, can you set PYTHONIOENCODING to a reasonable value in the test environment and see if it fixes the bug? (More info on http://docs.python.org/dev/using/cmdline#envvar-PYTHONIOENCODING) -- nosy: +merwok ___ Pytho

[issue7537] test_format fails with -j combined with -v

2009-12-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue7537] test_format fails with -j combined with -v

2009-12-18 Thread flox
Changes by flox : Added file: http://bugs.python.org/file15591/issue7537_tolerant_stdout.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue7537] test_format fails with -j combined with -v

2009-12-18 Thread flox
Changes by flox : Removed file: http://bugs.python.org/file15590/issue7537_tolerant_stdout.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue7537] test_format fails with -j combined with -v

2009-12-18 Thread flox
flox added the comment: Maybe the "sys.stdout.write" method can be wrapped in a decorator or a context manager? See example of decorator attached. -- keywords: +patch nosy: +flox Added file: http://bugs.python.org/file15590/issue7537_tolerant_stdout.diff __

[issue7537] test_format fails with -j combined with -v

2009-12-18 Thread R. David Murray
R. David Murray added the comment: This is because in -j mode stdout is a pipe, and so python defaults to ascii for the output encoding. I'm not sure what the best way is to fix this. -- nosy: +pitrou, r.david.murray priority: -> low stage: -> needs patch type: -> behavior

[issue7537] test_format fails with -j combined with -v

2009-12-17 Thread Eric Smith
Eric Smith added the comment: I can duplicate this on Fedora Core 6, x86, r76872. I simplified the command line down to: ./python Lib/test/regrtest.py -j1 -v test_format (and any value for j >= 1 causes the error). -- nosy: +eric.smith title: test_format -> test_format fails with -j c