summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-74929: PEP 667 C API documentation (gh-119892)Miss Islington (bot)2024-06-011-1/+0
* gh-118518: Rename `PYTHONPERFJITSUPPORT` and `-X perfjit` with underscores (#...Hugo van Kemenade2024-05-071-1/+1
* gh-116322: Enable the GIL while loading C extension modules (#118560)Brett Simmers2024-05-071-2/+1
* gh-118473: Fix set_asyncgen_hooks not to be partially set when arguments are ...Jeong, YunWon2024-05-071-8/+20
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-061-1/+1
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-0/+16
* gh-118518: Allow perf to work without frame pointers (#112254)Pablo Galindo Salgado2024-05-051-0/+10
* gh-74929: Implement PEP 667 (GH-115153)Tian Gao2024-05-041-8/+0
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+3
* gh-117514: Add `sys._is_gil_enabled()` function (#118514)Sam Gross2024-05-031-0/+20
* Remove stray `__cplusplus` guard in sysmodule.c (#118511)Sam Gross2024-05-021-4/+0
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-011-0/+2
* gh-117953: Cleanups For fix_up_extension() in import.c (gh-118192)Eric Snow2024-04-241-1/+1
* gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)Victor Stinner2024-04-181-4/+2
* gh-117764: Add signatures for some functions in the sys module (GH-117770)Serhiy Storchaka2024-04-121-30/+44
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-111-0/+11
* gh-116326: Handler errors correctly in `getwindowsversion` in `sysmodule` (#1...Nikita Sobolev2024-03-051-20/+32
* gh-115320: Refactor `get_hash_info` in `sysmodule.c` not to swallow errors (#...Nikita Sobolev2024-03-041-23/+25
* gh-115168: Add pystats counter for invalidated executors (GH-115169)Michael Droettboom2024-02-261-1/+1
* GH-114695: Add `sys._clear_internal_caches` (GH-115152)Brandt Bucher2024-02-121-0/+17
* gh-112529: Remove PyGC_Head from object pre-header in free-threaded build (#1...Sam Gross2024-02-011-1/+9
* gh-114384: Align sys.set_asyncgen_hooks signature in docs to reflect implemen...Nikita Sobolev2024-01-211-1/+1
* gh-73427: deprecate `_enablelegacywindowsfsencoding` (#107729)Inada Naoki2023-12-281-0/+7
* gh-111924: Use PyMutex for Runtime-global Locks. (gh-112207)Sam Gross2023-12-071-9/+3
* bpo-34392: Add sys. _is_interned() (GH-8755)Serhiy Storchaka2023-12-041-0/+18
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-141-3/+1
* gh-106672: C API: Report indiscriminately ignored errors (GH-106674)Serhiy Storchaka2023-11-071-0/+3
* gh-109587: Allow "precompiled" perf-trampolines to largely mitigate the cost ...gsallam2023-10-271-1/+40
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-0/+15
* gh-85283: Add PySys_AuditTuple() function (#108965)Victor Stinner2023-10-051-3/+19
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-1/+3
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-291-18/+0
* Fix error handling in _PySys_UpdateConfig() (GH-109524)Serhiy Storchaka2023-09-181-2/+9
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-12/+16
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-7/+9
* 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