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 corona10, eric.snow, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2021-08-09.13:14:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1628514867.15.0.155730737565.issue40912@roundup.psfhosted.org>
In-reply-to
Content
Fixed by bpo-41686:

commit 0ae323b87f1bed64a7fa70f5a41a5800aca032cc
Author: Victor Stinner <vstinner@python.org>
Date:   Tue Nov 17 18:15:20 2020 +0100

    bpo-41686: Always create the SIGINT event on Windows (GH-23344)
    
    bpo-41686, bpo-41713: On Windows, the SIGINT event,
    _PyOS_SigintEvent(), is now created even if Python is configured to
    not install signal handlers (PyConfig.install_signal_handlers=0 or
    Py_InitializeEx(0)).
    
    Changes:
    
    * Move global variables initialization from signal_exec() to
      _PySignal_Init() to clarify that they are global variables cleared
      by _PySignal_Fini().
    * _PySignal_Fini() now closes sigint_event.
    * IntHandler is no longer a global variable.
History
Date User Action Args
2021-08-09 13:14:27vstinnersetrecipients: + vstinner, paul.moore, tim.golden, eric.snow, zach.ware, steve.dower, corona10
2021-08-09 13:14:27vstinnersetmessageid: <1628514867.15.0.155730737565.issue40912@roundup.psfhosted.org>
2021-08-09 13:14:27vstinnerlinkissue40912 messages
2021-08-09 13:14:26vstinnercreate