[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-11 Thread STINNER Victor
STINNER Victor added the comment: Python 2.7 is not affected by the bug (I'm unable to reproduce it on Python 2.7). Python 3.4 is near end-of-life and this bug looks like a corner case, I don't think that it's worth to fix it. I fixed the bug in Python 3.5 and 3.6. I added an unit test for

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 746b98342943 by Victor Stinner in branch 'default': Close #25373: Fix regrtest --slow with interrupted test https://hg.python.org/cpython/rev/746b98342943 New changeset ef70e5373131 by Victor Stinner in branch '3.5': lose #25373: Fix regrtest

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-11 Thread STINNER Victor
STINNER Victor added the comment: Oh! I didn't see that you proposed a fix, sorry. I fixed the bug differently. IMHO it's easier to not add the test to test_times. -- ___ Python tracker

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-11 Thread STINNER Victor
STINNER Victor added the comment: No idea. I don't think that --slow is heavily used in the wild. The current behaiour looks good to me. -- ___ Python tracker

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file40748/regrtest-3.5.patch ___ Python tracker ___

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file40747/regrtest-3.4.patch ___ Python tracker ___

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file40749/regrtest-3.6.patch ___ Python tracker ___

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: Function runtest() (used by single-process mode) always returns tuple with test result as integer and test time as float. This tuple is passed as second argument to function accumulate_result(), which has (in Python 3.6): def

[issue25373] test.regrtest: -jN (with N != 1) + --slow + child error or interruption = TypeError

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +patch Added file: http://bugs.python.org/file40746/regrtest-2.7.patch ___ Python tracker