summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-241-0/+1
* gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426)Victor Stinner2023-08-241-1/+6
* gh-108014: Add Py_IsFinalizing() function (#108032)Victor Stinner2023-08-181-1/+1
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-171-2/+2
* gh-106320: Remove private _PyDict C API (#107145)Victor Stinner2023-07-241-0/+1
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-231-1/+1
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-2/+2
* gh-106320: Create pycore_modsupport.h header file (#106355)Victor Stinner2023-07-031-0/+1
* gh-106023: Remove _PyObject_FastCallTstate() function (#106273)Victor Stinner2023-06-301-7/+5
* gh-106182: sys: Intern getfilesystemencoding() and getfilesystemencodeerrors(...Inada Naoki2023-06-301-5/+25
* fix typos (#106247)Inada Naoki2023-06-301-1/+1
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-301-1/+1
* gh-106118: Add O_CLOEXEC preprocessor guard (#106120)Erlend E. Aasland2023-06-281-1/+4
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-261-1/+1
* gh-105673: Fix uninitialized warning in sysmodule.c (#105674)Nikita Sobolev2023-06-121-1/+1
* gh-105375: Improve error handling in the sys extension module (#105611)Erlend E. Aasland2023-06-111-6/+18
* gh-100227: Lock Around Adding Global Audit Hooks (gh-105515)Eric Snow2023-06-081-17/+39
* gh-105145: Remove old functions to config Python init (#105154)Victor Stinner2023-06-011-7/+14
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-311-1/+1
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-211-1/+79
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-191-4/+0
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-151-0/+4
* gh-103323: Remove PyRuntimeState_GetThreadState() (#104171)Victor Stinner2023-05-041-1/+1
* gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...Eric Snow2023-05-021-12/+16
* gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054)Eric Snow2023-05-011-5/+5
* gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)Eric Snow2023-04-271-14/+8
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-241-1/+3
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-0/+13
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-0/+11
* gh-103167: Fix `-Wstrict-prototypes` warnings by using `(void)` for functions...Nikita Sobolev2023-04-051-1/+1
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-211-0/+2
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-201-1/+1
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-181-2/+4
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-161-1/+1
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-161-3/+0
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-141-0/+8
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-0/+4
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-281-15/+11
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-151-19/+21
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-6/+4
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-131-0/+38
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-091-4/+1
* Correct CVE-2020-10735 documentation (#100306)Jeremy Paige2022-12-181-2/+2
* gh-96715 Remove redundant NULL check in `profile_trampoline` function (#96716)chgnrdv2022-12-121-4/+0
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-221-2/+1
* gh-87604: Avoid publishing list of active per-interpreter audit hooks via the...Steve Dower2022-11-141-0/+2
* gh-81057: Move PyImport_Inittab to _PyRuntimeState (gh-99402)Eric Snow2022-11-121-2/+3
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-101-21/+10
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-13/+0
* gh-96143: Improve perf profiler docs (#96445)Erlend E. Aasland2022-10-271-6/+8