summaryrefslogtreecommitdiffstats
path: root/Modules/signalmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-67795: Accept any real numbers as timestamp and timeout (GH-139224)Serhiy Storchaka2025-09-231-2/+2
* gh-137490: Fix signal.sigwaitinfo() on NetBSD (GH-137523)Serhiy Storchaka2025-09-151-1/+7
* fix comment reference from man 7 signal to man 7 signal-safety (#138554)mqudah2025-09-061-1/+1
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-3/+6
* gh-126662: naming consistency for `signal.ItimerError` (#126712)Stephen Morton2025-07-261-1/+1
* gh-131591: Check for remote debug in PyErr_CheckSignals (#132853)Pablo Galindo Salgado2025-04-231-0/+4
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-1/+1
* gh-129354: Fix grammar in PyErr_FormatUnraisable() (#129475)Victor Stinner2025-01-311-3/+5
* gh-129354: Use PyErr_FormatUnraisable() function (#129435)Victor Stinner2025-01-301-1/+2
* gh-123014: Disable pidfd API on older Android versions (#124458)Malcolm Smith2024-09-251-1/+3
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-3/+3
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-117764: Use Argument Clinic for signal.set_wakeup_fd() (GH-117777)Serhiy Storchaka2024-04-121-25/+24
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-201-0/+1
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-201-3/+3
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-7/+4
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-021-3/+2
* gh-108765: Include explicitly <unistd.h> in signalmodule.c (#111402)Victor Stinner2023-10-271-0/+3
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-201-1/+1
* gh-109693: Use pyatomic.h for signal module (gh-110480)Donghee Na2023-10-091-17/+18
* gh-76785: Add SendChannel.send_buffer() (#110246)Eric Snow2023-10-091-2/+2
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-041-3/+2
* gh-108765: Python.h no longer includes <sys/time.h> (#108775)Victor Stinner2023-09-021-5/+5
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-1/+1
* gh-104812: Run Pending Calls in any Thread (gh-104813)Eric Snow2023-06-131-2/+4
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-102650: Remove duplicate include directives from multiple source files (#1...chgnrdv2023-03-131-3/+1
* GH-102397: Fix segfault from race condition in signal handling (#102399)Kumar Aditya2023-03-081-0/+4
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-241-6/+4
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-091-4/+1
* gh-81057: Move Signal-Related Globals to _PyRuntimeState (gh-100085)Eric Snow2022-12-121-56/+15
* gh-98930: improve the docstring of signal.strsignal (#99290)ram vikram singh2022-11-131-3/+4
* signalmodule.c uses _PyErr_WriteUnraisableMsg() (#98217)Victor Stinner2022-10-121-7/+6
* gh-97922: Run the GC only on eval breaker (#97920)Pablo Galindo Salgado2022-10-081-0/+13
* GH-96754: Check whether the interpreter frame is complete before creating fra...Mark Shannon2022-09-131-0/+3
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Christian Heimes2022-06-201-2/+5
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-1/+1
* gh-64783: Fix signal.NSIG value on FreeBSD (#91929)Victor Stinner2022-04-251-16/+18
* gh-90623: signal.raise_signal() calls PyErr_CheckSignals() (#91756)Victor Stinner2022-04-211-0/+7
* bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...Hood Chatham2022-04-031-0/+2
* bpo-23325: Fix SIG_IGN and SIG_DFL int comparison in signal module (GH-31759)Christian Heimes2022-03-081-13/+23
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-251-2/+2
* bpo-46417: signal: move siginfo_type to the module state (GH-30964)Victor Stinner2022-01-271-19/+20
* bpo-46417: signal uses PyStructSequence_NewType() (GH-30735)Victor Stinner2022-01-211-7/+9
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-121-1/+1
* bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)Gareth Rees2021-12-131-0/+3
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-121-1/+1
* bpo-41498: Fix build on platforms without sigset_t (GH-29770)Christian Heimes2021-11-251-3/+10
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-281-1/+1
* bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)Victor Stinner2021-10-131-0/+1