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 vstinner
Recipients vstinner, zach.ware
Date 2017-06-27.00:12:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498522331.22.0.262640729084.issue30705@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, for test_regrtest which hangs on Windows, I'm quite sure that it comes from test_crashed() which opens a popup!

In the master branch, test_crashed() uses faulthandler._sigsegv() which disables the Windows popup using SetErrorMode() and _set_abort_behavior().

In Python 2.7, test_crashed() just calls ctypes.string_at(0) which doesn't prevent the Windows popup.

My PR https://github.com/python/cpython/pull/2423 implements support.SuppressCrashReport on Windows and so will allow to fix this issue!
History
Date User Action Args
2017-06-27 00:12:11vstinnersetrecipients: + vstinner, zach.ware
2017-06-27 00:12:11vstinnersetmessageid: <1498522331.22.0.262640729084.issue30705@psf.upfronthosting.co.za>
2017-06-27 00:12:11vstinnerlinkissue30705 messages
2017-06-27 00:12:10vstinnercreate