summaryrefslogtreecommitdiffstats
path: root/Python/clinic/sysmodule.c.h
Commit message (Expand)AuthorAgeFilesLines
* gh-111489: Remove _PyTuple_FromArray() alias (#139973)Victor Stinner2025-10-111-3/+2
* gh-135228: Create __dict__ and __weakref__ descriptors for object (GH-136966)Petr Viktorin2025-08-181-32/+1
* gh-135228: When @dataclass(slots=True) replaces a dataclass, make the origina...Jelle Zijlstra2025-08-121-1/+32
* GH-133231: Add JIT utilities in sys._jit (GH-133233)Brandt Bucher2025-05-051-1/+85
* gh-131591: Implement PEP 768 (#131937)Pablo Galindo Salgado2025-04-031-1/+99
* gh-131525: Cache the result of tuple_hash (#131529)Michael Droettboom2025-03-271-1/+13
* gh-128509: Add `sys._is_immortal` for identifying immortal objects (#128510)Peter Bierma2025-01-311-1/+31
* GH-126833: Dumps graphviz representation of executor graph. (GH-126880)Mark Shannon2024-12-131-1/+57
* gh-126579: Adapt sys.audit() to Argument Clinic (GH-126580)Serhiy Storchaka2024-11-081-1/+50
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-081-6/+11
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-211-6/+46
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-1/+19
* gh-117514: Add `sys._is_gil_enabled()` function (#118514)Sam Gross2024-05-031-1/+29
* gh-117764: Add signatures for some functions in the sys module (GH-117770)Serhiy Storchaka2024-04-121-5/+29
* GH-114695: Add `sys._clear_internal_caches` (GH-115152)Brandt Bucher2024-02-121-1/+19
* bpo-34392: Add sys. _is_interned() (GH-8755)Serhiy Storchaka2023-12-041-1/+35
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-071-2/+7
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-011-7/+2
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-1/+2
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-1/+29
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-6/+18
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-311-4/+3
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-241-8/+8
* gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)Victor Stinner2023-06-011-4/+1
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-1/+29
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-131-1/+70
* Correct CVE-2020-10735 documentation (#100306)Jeremy Paige2022-12-181-2/+2
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-28/+1
* gh-96143: Improve perf profiler docs (#96445)Erlend E. Aasland2022-10-271-4/+6
* gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)Gregory P. Smith2022-09-021-1/+77
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-301-1/+74
* GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...Pablo Galindo Salgado2022-08-241-1/+25
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-131-35/+15
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-111-3/+75
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-211-1/+105
* gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)Victor Stinner2022-05-031-7/+7
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-131-1/+23
* Remove sys._deactivate_opcache() now that is not needed (GH-27154)Pablo Galindo Salgado2021-07-151-19/+1
* bpo-44187: Quickening infrastructure (GH-26264)Mark Shannon2021-06-071-1/+28
* bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...Pablo Galindo2021-02-281-1/+19
* bpo-41435: Add sys._current_exceptions() function (GH-21689)Julien Danjou2020-11-021-1/+21
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-26/+1
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-26/+1
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-141-2/+2
* bpo-37034: Display argument name on errors with keyword arguments with Argume...Rémi Lapeyre2019-08-291-3/+3
* bpo-37942: Improve argument clinic float converter (GH-15470)Raymond Hettinger2019-08-251-4/+10
* bpo-37414: Remove sys.callstats() (GH-14398)Victor Stinner2019-06-261-38/+1
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-251-57/+1
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-28/+1
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-4/+5