| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.12] gh-104812: Run Pending Calls in any Thread (gh-104813) (gh-105752) | Eric Snow | 2023-06-14 | 1 | -2/+4 |
|
|
* | gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205) | Eric Snow | 2023-05-05 | 1 | -0/+1 |
|
|
* | gh-102650: Remove duplicate include directives from multiple source files (#1... | chgnrdv | 2023-03-13 | 1 | -3/+1 |
|
|
* | GH-102397: Fix segfault from race condition in signal handling (#102399) | Kumar Aditya | 2023-03-08 | 1 | -0/+4 |
|
|
* | gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in... | Irit Katriel | 2023-02-24 | 1 | -6/+4 |
|
|
* | GH-100126: Skip incomplete frames in more places (GH-100613) | Brandt Bucher | 2023-01-09 | 1 | -4/+1 |
|
|
* | gh-81057: Move Signal-Related Globals to _PyRuntimeState (gh-100085) | Eric Snow | 2022-12-12 | 1 | -56/+15 |
|
|
* | gh-98930: improve the docstring of signal.strsignal (#99290) | ram vikram singh | 2022-11-13 | 1 | -3/+4 |
|
|
* | signalmodule.c uses _PyErr_WriteUnraisableMsg() (#98217) | Victor Stinner | 2022-10-12 | 1 | -7/+6 |
|
|
* | gh-97922: Run the GC only on eval breaker (#97920) | Pablo Galindo Salgado | 2022-10-08 | 1 | -0/+13 |
|
|
* | GH-96754: Check whether the interpreter frame is complete before creating fra... | Mark Shannon | 2022-09-13 | 1 | -0/+3 |
|
|
* | gh-84461: Silence some compiler warnings on WASM (GH-93978) | Christian Heimes | 2022-06-20 | 1 | -2/+5 |
|
|
* | gh-91320: Use _PyCFunction_CAST() (#92251) | Victor Stinner | 2022-05-03 | 1 | -1/+1 |
|
|
* | gh-64783: Fix signal.NSIG value on FreeBSD (#91929) | Victor Stinner | 2022-04-25 | 1 | -16/+18 |
|
|
* | gh-90623: signal.raise_signal() calls PyErr_CheckSignals() (#91756) | Victor Stinner | 2022-04-21 | 1 | -0/+7 |
|
|
* | bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (... | Hood Chatham | 2022-04-03 | 1 | -0/+2 |
|
|
* | bpo-23325: Fix SIG_IGN and SIG_DFL int comparison in signal module (GH-31759) | Christian Heimes | 2022-03-08 | 1 | -13/+23 |
|
|
* | bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583) | Victor Stinner | 2022-02-25 | 1 | -2/+2 |
|
|
* | bpo-46417: signal: move siginfo_type to the module state (GH-30964) | Victor Stinner | 2022-01-27 | 1 | -19/+20 |
|
|
* | bpo-46417: signal uses PyStructSequence_NewType() (GH-30735) | Victor Stinner | 2022-01-21 | 1 | -7/+9 |
|
|
* | bpo-45953: Statically allocate the main interpreter (and initial thread state... | Eric Snow | 2022-01-12 | 1 | -1/+1 |
|
|
* | bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266) | Gareth Rees | 2021-12-13 | 1 | -0/+3 |
|
|
* | bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I... | Kumar Aditya | 2021-12-12 | 1 | -1/+1 |
|
|
* | bpo-41498: Fix build on platforms without sigset_t (GH-29770) | Christian Heimes | 2021-11-25 | 1 | -3/+10 |
|
|
* | bpo-45637: Store the frame pointer in the cframe (GH-29267) | Mark Shannon | 2021-10-28 | 1 | -1/+1 |
|
|
* | bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922) | Victor Stinner | 2021-10-13 | 1 | -0/+1 |
|
|
* | bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895) | Victor Stinner | 2021-10-12 | 1 | -1/+1 |
|
|
* | Fix typos in the Modules directory (GH-28761) | Christian Clauss | 2021-10-07 | 1 | -1/+1 |
|
|
* | bpo-41710: Add private _PyDeadline_Get() function (GH-28674) | Victor Stinner | 2021-10-01 | 1 | -10/+10 |
|
|
* | bpo-45163: Haiku build fix. (GH-28269) | David CARLIER | 2021-09-11 | 1 | -1/+1 |
|
|
* | bpo-44590: Lazily allocate frame objects (GH-27077) | Mark Shannon | 2021-07-26 | 1 | -7/+12 |
|
|
* | bpo-43963: Add _signal module state (GH-25676) | Victor Stinner | 2021-04-28 | 1 | -84/+153 |
|
|
* | bpo-43963: Fix import _signal in subinterpreters (GH-25674) | Victor Stinner | 2021-04-27 | 1 | -27/+41 |
|
|
* | bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755) | Antoine Pitrou | 2021-03-11 | 1 | -30/+45 |
|
|
* | bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tries to ... | Antoine Pitrou | 2021-03-05 | 1 | -1/+25 |
|
|
* | bpo-31904: Support signal module on VxWorks (GH-23391) | pxinwr | 2020-11-30 | 1 | -0/+4 |
|
|
* | bpo-41713: Port _signal module to multi-phase init (GH-23355) | Victor Stinner | 2020-11-17 | 1 | -16/+17 |
|
|
* | bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353) | Victor Stinner | 2020-11-17 | 1 | -0/+23 |
|
|
* | bpo-41686: Refactor signal_exec() (GH-23346) | Victor Stinner | 2020-11-17 | 1 | -158/+125 |
|
|
* | bpo-41686: Always create the SIGINT event on Windows (GH-23344) | Victor Stinner | 2020-11-17 | 1 | -53/+87 |
|
|
* | bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342) | Victor Stinner | 2020-11-17 | 1 | -12/+25 |
|
|
* | bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte... | Serhiy Storchaka | 2020-10-26 | 1 | -2/+1 |
|
|
* | bpo-41713: _signal doesn't use multi-phase init (GH-22087) | Victor Stinner | 2020-09-04 | 1 | -7/+13 |
|
|
* | bpo-1635741: Port _signal module to multi-phase init (PEP 489) (GH-22049) | Mohamed Koubaa | 2020-09-03 | 1 | -82/+86 |
|
|
* | bpo-41675: Modernize siginterrupt calls (GH-22028) | Pablo Galindo | 2020-09-02 | 1 | -1/+13 |
|
|
* | bpo-41146: Convert signal.default_int_handler() to Argument Clinic (GH-21197) | Serhiy Storchaka | 2020-07-12 | 1 | -8/+15 |
|
|
* | bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) | Victor Stinner | 2020-06-03 | 1 | -2/+12 |
|
|
* | PyOS_AfterFork_Child() uses PyStatus (GH-20596) | Victor Stinner | 2020-06-02 | 1 | -3/+8 |
|
|
* | bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) | Victor Stinner | 2020-06-01 | 1 | -2/+3 |
|
|
* | bpo-40268: Remove explicit pythread.h includes (#19529) | Victor Stinner | 2020-04-15 | 1 | -2/+0 |
|
|