aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAge
* gh-85283: Add PySys_AuditTuple() function (#108965)Victor Stinner2023-10-05
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-30
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-29
* Fix error handling in _PySys_UpdateConfig() (GH-109524)Serhiy Storchaka2023-09-18
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-06
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-06
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-24
* gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426)Victor Stinner2023-08-24
* gh-108014: Add Py_IsFinalizing() function (#108032)Victor Stinner2023-08-18
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-17
* gh-106320: Remove private _PyDict C API (#107145)Victor Stinner2023-07-24
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-23
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-12
* gh-106320: Create pycore_modsupport.h header file (#106355)Victor Stinner2023-07-03
* gh-106023: Remove _PyObject_FastCallTstate() function (#106273)Victor Stinner2023-06-30
* gh-106182: sys: Intern getfilesystemencoding() and getfilesystemencodeerrors(...Inada Naoki2023-06-30
* fix typos (#106247)Inada Naoki2023-06-30
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-30
* gh-106118: Add O_CLOEXEC preprocessor guard (#106120)Erlend E. Aasland2023-06-28
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-26
* gh-105673: Fix uninitialized warning in sysmodule.c (#105674)Nikita Sobolev2023-06-12
* gh-105375: Improve error handling in the sys extension module (#105611)Erlend E. Aasland2023-06-11
* gh-100227: Lock Around Adding Global Audit Hooks (gh-105515)Eric Snow2023-06-08
* gh-105145: Remove old functions to config Python init (#105154)Victor Stinner2023-06-01
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-31
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-21
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-19
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-15
* gh-103323: Remove PyRuntimeState_GetThreadState() (#104171)Victor Stinner2023-05-04
* gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...Eric Snow2023-05-01
* gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054)Eric Snow2023-05-01
* gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)Eric Snow2023-04-27
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-24
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-22
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-12
* gh-103167: Fix `-Wstrict-prototypes` warnings by using `(void)` for functions...Nikita Sobolev2023-04-05
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-21
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-20
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-18
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-16
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-15
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-14
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-09
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-28
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-15
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-08
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-13
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-09
* Correct CVE-2020-10735 documentation (#100306)Jeremy Paige2022-12-18
* gh-96715 Remove redundant NULL check in `profile_trampoline` function (#96716)chgnrdv2022-12-12