- b150d0b bpo-38037: Fix reference counters in signal module (GH-15753) by Miss Islington (bot) · 5 years ago
- e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 5 years ago
- 6a150bc bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714) by Eric Snow · 5 years ago
- 438a12d bpo-36710: Add tstate parameter in ceval.c (GH-13547) by Victor Stinner · 5 years ago
- d8613dc bpo-37031: Reuse _PyRuntime.main_thread in signalmodule.c (GH-13538) by Victor Stinner · 5 years ago
- 608876b bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not handled (GH-7778) by Matěj Cepl · 5 years ago
- 09532fe bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934) by Victor Stinner · 6 years ago
- d237b3f bpo-36601: clarify signal handler comment and remove unnecessary pid check. (GH-12784) by Jeroen Demeyer · 6 years ago
- 9541bd3 bpo-24011: Use PyModule_Add{Object,IntMacro} in PyInit__signal() (GH-12765) by Joannah Nanjekye · 6 years ago
- b75b1a35 bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) by Eric Snow · 6 years ago
- f13c5c8 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) by Eric Snow · 6 years ago
- 8b5bdda bpo-31904: Adapt the _signal module to VxWorks RTOS (GH-12304) by pxinwr · 6 years ago
- 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 6 years ago
- ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 6 years ago
- 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 6 years ago
- fdf282d bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) by Eric Snow · 6 years ago
- c24c6c2 bpo-35568: add 'raise_signal' function (GH-11335) by Vladimir Matveev · 6 years ago
- 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
- 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
- 31368a4 bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239) by Victor Stinner · 6 years ago
- 48ce489 bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786) by Michael Osipov · 6 years ago
- e905c84 bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) by pkerling · 6 years ago
- d54cfb1 bpo-33441: Make the sigset_t converter available in other modules. (GH-6720) by Serhiy Storchaka · 7 years ago
- 9d3627e bpo-33332: Add signal.valid_signals() (GH-6581) by Antoine Pitrou · 7 years ago
- 25038ec bpo-33329: Fix multiprocessing regression on newer glibcs (GH-6575) by Antoine Pitrou · 7 years ago
- 5d2a27d signal: add strsignal() (#6017) by Antoine Pietri · 7 years ago
- 902ab80 bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792) by Nathaniel J. Smith · 7 years ago
- f6f90ff bpo-30057: Fix potential missed signal in signal.signal(). (#4258) by Antoine Pitrou · 7 years ago
- ef611c9 bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865) by Victor Stinner · 7 years ago
- a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
- 2c8a5e4 bpo-30808: Use _Py_atomic API for concurrency-sensitive signal state (#2417) by Antoine Pitrou · 7 years ago
- 729780a bpo-30807: signal.setitimer() may disable the timer by mistake (#2493) by Antoine Pitrou · 7 years ago
- c08177a bpo-30703: Improve signal delivery (#2415) by Antoine Pitrou · 7 years ago
- 346cbd3 bpo-16500: Allow registering at-fork handlers (#1715) by Antoine Pitrou · 7 years ago
- 4ae0149 bpo-30038: fix race condition in signal delivery + wakeup fd (#1082) by Nathaniel J. Smith · 7 years ago
- 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 8 years ago
- aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 8 years ago
- 6a6967e Issue #21085: add configure check for siginfo_t.si_band by Zachary Ware · 8 years ago
- d508d00 Issue #28139: Merge indentation fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
- 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
- 6782b14 Use PyModule_AddIntMacro() in signal module by Christian Heimes · 8 years ago
- 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
- ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
- 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
- 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
- 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
- 6b680cd Fixed compilation error in signalmodule.c (issue #20182). by Serhiy Storchaka · 9 years ago
- c7027b7 Issue #20182: converted the signal module to use Argument Clinic by Tal Einat · 9 years ago
- e72fe39 Issue #23836: Use _Py_write_noraise() to retry on EINTR in trip_signal() of by Victor Stinner · 10 years ago
- 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 10 years ago
- e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 10 years ago
- 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 10 years ago
- 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 10 years ago
- a453cd8 Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried by Victor Stinner · 10 years ago
- 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 10 years ago
- f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 10 years ago
- cf40a9e Issue #23450: Fix signal.set_wakeup_fd() on Windows by Victor Stinner · 10 years ago
- d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
- 3822760 Issue #22042: signal.set_wakeup_fd(fd) now raises an exception if the file by Victor Stinner · 10 years ago
- 1151710 Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets. by Victor Stinner · 10 years ago
- 1d8948e Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/ by Victor Stinner · 10 years ago
- d18ccd1 tets by Victor Stinner · 10 years ago
- 0bffc94 Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a by Victor Stinner · 10 years ago
- 815a6f3 merge along w/ fix for issue #2107 (commit c9239171e429) by Brett Cannon · 11 years ago
- e09fb71 fix #21076: turn signal module constants into enums by Giampaolo Rodola' · 11 years ago
- 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 11 years ago
- dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 44ed3de Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok. by Christian Heimes · 11 years ago
- 6f6ec37 Issue #16105: When a signal handler fails to write to the file descriptor registered with ``signal.set_wakeup_fd()``, report an exception instead of ignoring the error. by Antoine Pitrou · 11 years ago
- 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
- 52c5f85 Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 12 years ago
- c8c952c Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown. by Antoine Pitrou · 12 years ago
- 245bbee Merge. by Richard Oudkerk · 12 years ago
- cf8a1e5 - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. by Antoine Pitrou · 12 years ago
- 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 12 years ago
- c2d0200 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 12 years ago
- 7cf5599 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 12 years ago
- 611afc1 Issue #17098: all modules should have __loader__ by Brett Cannon · 12 years ago
- 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 12 years ago
- 9f30abd merge 3.3 by Benjamin Peterson · 12 years ago
- c68a4a0 check windows fd validity (closes #16992) by Benjamin Peterson · 12 years ago
- 0b83224 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
- 34b1495 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
- 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
- 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
- 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 13 years ago
- 3f32fc8 Merge. by Charles-François Natali · 13 years ago
- 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
- 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
- bc80822 Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module. by Ross Lagerwall · 13 years ago
- 10c30d6 Issue #8407: signal.sigwait() releases the GIL by Victor Stinner · 13 years ago
- c13ef66 Issue #8407: Fix the signal handler of the signal module: if it is called by Victor Stinner · 13 years ago
- aedb282 (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
- 5ebfe6d (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the by Victor Stinner · 13 years ago
- 2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. by Victor Stinner · 13 years ago
- 388196e Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, by Victor Stinner · 14 years ago
- 86e104a Issue #8407: Use an explicit cast for FreeBSD by Victor Stinner · 14 years ago
- d49b1f1 Issue #8407: The signal handler writes the signal number as a single byte by Victor Stinner · 14 years ago