summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-142571: Check for errors before calling each syscall in `PyUnstable_CopyPe...AZero132025-12-111-6/+17
* gh-141579: Fix perf_jit backend in sys.activate_stack_trampoline() (#141580)Pablo Galindo Salgado2025-11-151-8/+8
* gh-111389: replace deprecated occurrences of `_PyHASH_*` macros (#141236)Bénédikt Tran2025-11-091-3/+3
* gh-131253: free-threaded build support for pystats (gh-137189)Neil Schemenauer2025-11-031-1/+3
* gh-138886: Remove deprecated `PySys_ResetWarnOptions` C-API function (#138887)sobolevn2025-09-151-1/+1
* gh-133143: Use _Py_ID for the other literals in sys (GH-138698)Petr Viktorin2025-09-091-5/+5
* gh-133143: Condense the implementation for ``sys.abi_info`` (#138672)Adam Turner2025-09-081-23/+16
* gh-133143: Add sys.abi_info (GH-137476)Klaus Zimmermann2025-09-081-0/+70
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-7/+14
* gh-135228: Create __dict__ and __weakref__ descriptors for object (GH-136966)Petr Viktorin2025-08-181-41/+0
* gh-137400: Fix thread-safety issues when profiling all threads (gh-137518)Sam Gross2025-08-131-5/+8
* gh-135228: When @dataclass(slots=True) replaces a dataclass, make the origina...Jelle Zijlstra2025-08-121-0/+42
* gh-135645: Added `supports_isolated_interpreters` to `sys.implementation` (#1...sobolevn2025-06-211-0/+12
* gh-135543: Emit sys.remote_exec audit event when sys.remote_exec is called (G...Nadeshiko Manju2025-06-191-0/+5
* gh-108512: Add and use new replacements for PySys_GetObject() (GH-111035)Serhiy Storchaka2025-05-281-18/+18
* gh-134064: Fix sys.remote_exec() error checking (#134067)Victor Stinner2025-05-171-1/+1
* gh-133580: Add missing exception to _sys_getwindowsversion_from_kernel32 (GH-...Max Bachmann2025-05-141-0/+1
* gh-133886: Fix sys.remote_exec() for non-UTF-8 paths (GH-133887)Serhiy Storchaka2025-05-131-54/+52
* gh-133597: Fix memory leak if error occurred in _sys_getwindowsversion_from_k...Sergey Miryanov2025-05-081-0/+3
* GH-133231: Add JIT utilities in sys._jit (GH-133233)Brandt Bucher2025-05-051-0/+75
* gh-132950: Check for Py_SUPPORTS_REMOTE_DEBUG in sys.is_remote_debug_enabled ...Pablo Galindo Salgado2025-04-251-1/+1
* gh-129027: Raise DeprecationWarning for sys._clear_type_cache (#129043)Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి)2025-04-251-0/+8
* gh-128384: Use a context variable for warnings.catch_warnings (gh-130010)Neil Schemenauer2025-04-091-0/+4
* gh-131591: Implement PEP 768 (#131937)Pablo Galindo Salgado2025-04-031-0/+116
* GH-131296: fix clang-cl warnings in sysmodule.c (#131304)Chris Eibl2025-03-201-1/+1
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-2/+1
* Fix Windows build warnings (#131487)Victor Stinner2025-03-201-0/+2
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-0/+3
* gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (#131044)Max Bachmann2025-03-111-1/+3
* gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)Serhiy Storchaka2025-02-251-45/+126
* gh-111924: Fix data races when swapping allocators (gh-130287)Sam Gross2025-02-201-15/+7
* gh-128509: Add `sys._is_immortal` for identifying immortal objects (#128510)Peter Bierma2025-01-311-0/+18
* gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOptionUnic...Valery Fedorenko2025-01-311-3/+4
* GH-126599: Remove the PyOptimizer API (GH-129194)Brandt Bucher2025-01-291-3/+1
* gh-127350: Add Py_fopen() and Py_fclose() functions (#127821)Victor Stinner2025-01-061-1/+1
* GH-126833: Dumps graphviz representation of executor graph. (GH-126880)Mark Shannon2024-12-131-0/+25
* gh-127238: adjust error message for sys.set_int_max_str_digits() (#127241)Sergey B Kirpichev2024-11-251-1/+1
* gh-126579: Adapt sys.audit() to Argument Clinic (GH-126580)Serhiy Storchaka2024-11-081-41/+13
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-0/+5
* gh-126255: Ignore warning about JIT being deactivated when perf support is ac...mpage2024-11-011-0/+1
* gh-124855: Don't allow the JIT and perf support to be active at the same time...Pablo Galindo Salgado2024-10-301-0/+8
* gh-126018: Avoid aborting due to unnecessary assert in `sys.audit` (#126020)devdanzin2024-10-271-1/+0
* gh-125604: Move _Py_AuditHookEntry, etc. Out of pycore_runtime.h (gh-125605)Eric Snow2024-10-181-0/+1
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-241-2/+3
* gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)Victor Stinner2024-09-021-69/+75
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-211-10/+18
* gh-120568: fix file leak in PyUnstable_CopyPerfMapFile (#120569)Carson Radtke2024-06-161-4/+4
* gh-74929: PEP 667 C API documentation (gh-119379)Alyssa Coghlan2024-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