[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3247f8df5514 by Victor Stinner in branch 'default': Issue #23848: Fix usage of _Py_DumpDecimal() https://hg.python.org/cpython/rev/3247f8df5514 -- ___ Python tracker

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread STINNER Victor
STINNER Victor added the comment: Pass succeeded again on ARM, I close the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread STINNER Victor
STINNER Victor added the comment: The change b114dbbe2d31 introduced a regression on the ARM buildbot. I hope that it's fixed by the change e6f00778d61f. http://buildbot.python.org/all/builders/ARMv7%20Ubuntu%203.x/builds/3800/steps/test/logs/stdio 1:06:35 [400/400/1] test_faulthandler

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset e6f00778d61f by Victor Stinner in branch 'default': Issue #23848: Try to fix test_faulthandler on ARM https://hg.python.org/cpython/rev/e6f00778d61f -- ___ Python tracker

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset efcc48cd5bfb by Victor Stinner in branch 'default': faulthandler: only log fatal exceptions https://hg.python.org/cpython/rev/efcc48cd5bfb -- ___ Python tracker

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue23848] faulthandler: setup an exception handler on Windows

2016-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset b2f7bb63377b by Victor Stinner in branch 'default': Issue #23848: Expose _Py_DumpHexadecimal() https://hg.python.org/cpython/rev/b2f7bb63377b New changeset b114dbbe2d31 by Victor Stinner in branch 'default': faulthandler: add Windows exception

[issue23848] faulthandler: setup an exception handler on Windows

2015-04-07 Thread STINNER Victor
STINNER Victor added the comment: More complete (and working) patch. Most unit tests pass, but two unit tests must be updated to match the new error message. -- Added file: http://bugs.python.org/file38860/faulthandler_exc_handler-2.patch ___ Python

[issue23848] faulthandler: setup an exception handler on Windows

2015-04-02 Thread STINNER Victor
New submission from STINNER Victor: Attached patch setup an exception handler on Windows. I wrote it when investigating a failure of test_exceptions related to the issue #22977. faulthandler was not trigerred while the program crashed. I didn't test the patch yet (I tested a previous attempt,