index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
clinic
/
sysmodule.c.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...
Petr Viktorin
2024-06-21
1
-6/+46
*
gh-111201: A new Python REPL (GH-111567)
Pablo Galindo Salgado
2024-05-05
1
-1/+19
*
gh-117514: Add `sys._is_gil_enabled()` function (#118514)
Sam Gross
2024-05-03
1
-1/+29
*
gh-117764: Add signatures for some functions in the sys module (GH-117770)
Serhiy Storchaka
2024-04-12
1
-5/+29
*
GH-114695: Add `sys._clear_internal_caches` (GH-115152)
Brandt Bucher
2024-02-12
1
-1/+19
*
bpo-34392: Add sys. _is_interned() (GH-8755)
Serhiy Storchaka
2023-12-04
1
-1/+35
*
gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
Victor Stinner
2023-11-07
1
-2/+7
*
gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)
Victor Stinner
2023-11-01
1
-7/+2
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-1/+2
*
gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)
Donghee Na
2023-10-10
1
-1/+29
*
gh-108753: Enhance pystats (#108754)
Victor Stinner
2023-09-06
1
-6/+18
*
gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)
Victor Stinner
2023-08-31
1
-4/+3
*
gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)
Victor Stinner
2023-08-24
1
-8/+8
*
gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)
Victor Stinner
2023-06-01
1
-4/+1
*
gh-84436: Implement Immortal Objects (gh-19474)
Eddie Elizondo
2023-04-22
1
-1/+29
*
gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...
Steve Dower
2023-01-13
1
-1/+70
*
Correct CVE-2020-10735 documentation (#100306)
Jeremy Paige
2022-12-18
1
-2/+2
*
GH-98686: Quicken everything (GH-98687)
Brandt Bucher
2022-11-02
1
-28/+1
*
gh-96143: Improve perf profiler docs (#96445)
Erlend E. Aasland
2022-10-27
1
-4/+6
*
gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)
Gregory P. Smith
2022-09-02
1
-1/+77
*
gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)
Pablo Galindo Salgado
2022-08-30
1
-1/+74
*
GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...
Pablo Galindo Salgado
2022-08-24
1
-1/+25
*
gh-90928: Improve static initialization of keywords tuple in AC (#95907)
Erlend E. Aasland
2022-08-13
1
-35/+15
*
gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...
Eric Snow
2022-08-11
1
-3/+75
*
GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....
Mark Shannon
2022-06-21
1
-1/+105
*
gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)
Victor Stinner
2022-05-03
1
-7/+7
*
bpo-46328: Add sys.exception() (GH-30514)
Irit Katriel
2022-01-13
1
-1/+23
*
Remove sys._deactivate_opcache() now that is not needed (GH-27154)
Pablo Galindo Salgado
2021-07-15
1
-19/+1
*
bpo-44187: Quickening infrastructure (GH-26264)
Mark Shannon
2021-06-07
1
-1/+28
*
bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...
Pablo Galindo
2021-02-28
1
-1/+19
*
bpo-41435: Add sys._current_exceptions() function (GH-21689)
Julien Danjou
2020-11-02
1
-1/+21
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-26/+1
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-26/+1
*
bpo-37206: Unrepresentable default values no longer represented as None. (GH-...
Serhiy Storchaka
2019-09-14
1
-2/+2
*
bpo-37034: Display argument name on errors with keyword arguments with Argume...
Rémi Lapeyre
2019-08-29
1
-3/+3
*
bpo-37942: Improve argument clinic float converter (GH-15470)
Raymond Hettinger
2019-08-25
1
-4/+10
*
bpo-37414: Remove sys.callstats() (GH-14398)
Victor Stinner
2019-06-26
1
-38/+1
*
bpo-37392: Remove sys.setcheckinterval() (GH-14355)
Victor Stinner
2019-06-25
1
-57/+1
*
bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...
Matthias Bussonnier
2019-05-28
1
-28/+1
*
bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)
Victor Stinner
2019-05-27
1
-4/+5
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-1/+33
*
bpo-36829: Add sys.unraisablehook() (GH-13187)
Victor Stinner
2019-05-22
1
-1/+17
*
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...
Serhiy Storchaka
2019-03-14
1
-4/+14
*
bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520)
Serhiy Storchaka
2019-01-11
1
-7/+11
*
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...
Serhiy Storchaka
2019-01-11
1
-6/+23
*
bpo-20182: AC convert Python/sysmodule.c (GH-11328)
Tal Einat
2018-12-31
1
-4/+970
*
bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...
Serhiy Storchaka
2018-11-27
1
-2/+2
*
bpo-32591: Add native coroutine origin tracking (#5250)
Nathaniel J. Smith
2018-01-21
1
-0/+66