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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
gh-115795: Doc: fix obsolete URL (#115749)
partev
2024-02-22
1
-1/+1
*
gh-111140: Improve PyLong_AsNativeBytes API doc example & improve the test (#...
Gregory P. Smith
2024-02-22
2
-22/+82
*
gh-111225: Link extension modules against libpython on Android (#115780)
Malcolm Smith
2024-02-21
5
-25/+19
*
gh-93205: When rotating logs with no namer specified, match whole extension (...
Gabriele Catania
2024-02-21
3
-19/+62
*
gh-115491: Keep some fields valid across allocations in obmalloc (free-thread...
Sam Gross
2024-02-21
2
-10/+33
*
gh-115304: Add doc for initializing PyMutex as a global variable (#115305)
AN Long
2024-02-21
1
-0/+3
*
gh-96310: Fix a traceback in argparse when all options in a mutually exclusiv...
Daniel Mach
2024-02-21
3
-0/+25
*
gh-104090: Add exit code to multiprocessing ResourceTracker (GH-115410)
Petr Viktorin
2024-02-21
4
-7/+94
*
argparse: remove incoherent and redundant docstring for private method (GH-10...
Frank Dana
2024-02-21
1
-8/+0
*
gh-115399: Document CVE-2023-52425 under "XML vulnerabilities" (GH-115400)
Sebastian Pipping
2024-02-21
2
-0/+14
*
gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)
Victor Stinner
2024-02-21
8
-100/+57
*
gh-112364: Correct unparsing of backslashes and quotes in ast.unparse (#115696)
Frank Hoffmann
2024-02-21
3
-7/+24
*
gh-115737: Correct libpython install name for macOS shared library builds. (g...
Russell Keith-Magee
2024-02-21
2
-1/+3
*
gh-115653: Document PyCode_GetFirstFree() (#115654)
Bogdan Romanyuk
2024-02-21
1
-2/+6
*
gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)
Victor Stinner
2024-02-21
3
-8/+4
*
Delete unused sym_clear_flag function. (#115744)
Benjamin Peterson
2024-02-21
1
-6/+0
*
gh-112087: Make list_{concat, repeat, inplace_repeat, ass_item) to be thread...
Donghee Na
2024-02-21
2
-40/+88
*
gh-112075: Accessing a single element should optimistically avoid locking (#1...
Dino Viehland
2024-02-21
3
-175/+496
*
gh-112075: Make PyDictKeysObject thread-safe (#114741)
Dino Viehland
2024-02-21
6
-93/+257
*
gh-110850: Use public PyTime functions (#115746)
Victor Stinner
2024-02-20
12
-55/+39
*
gh-110850: Rename internal PyTime C API functions (#115734)
Victor Stinner
2024-02-20
16
-83/+68
*
gh-104061: Add socket.SO_BINDTOIFINDEX constant (GH-104062)
Victor Westerhuis
2024-02-20
3
-0/+9
*
Tier 2 cleanups and tweaks (#115534)
Guido van Rossum
2024-02-20
8
-121/+203
*
gh-115733: Fix crash involving exhausted list iterator (#115740)
Sam Gross
2024-02-20
6
-5/+13
*
GH-115727: Temporary fix of confidence score test. (GH-115728)
Mark Shannon
2024-02-20
1
-4/+3
*
gh-115735: Fix current executor NULL before _START_EXECUTOR (#115736)
Ken Jin
2024-02-20
1
-2/+2
*
gh-115103: Implement delayed free mechanism for free-threaded builds (#115367)
Sam Gross
2024-02-20
8
-0/+226
*
gh-110850: Cleanup pycore_time.h includes (#115724)
Victor Stinner
2024-02-20
23
-17/+28
*
gh-86291: linecache: get module name from __spec__ if available (GH-22908)
Eugene Toder
2024-02-20
3
-7/+45
*
gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspace=True ...
Serhiy Storchaka
2024-02-20
3
-17/+90
*
gh-115491: Keep some fields valid across allocations (free-threading) (#115573)
Sam Gross
2024-02-20
5
-25/+33
*
gh-101860: Expose __name__ on property (GH-101876)
Eugene Toder
2024-02-20
8
-25/+158
*
gh-110850: Replace _PyTime_t with PyTime_t (#115719)
Victor Stinner
2024-02-20
31
-341/+341
*
gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)
Brett Simmers
2024-02-20
19
-169/+262
*
gh-112020: Document the meaning of empty bytes returned by socket.recv() (GH-...
talcs
2024-02-20
1
-2/+3
*
gh-110850: Enhance PyTime C API tests (#115715)
Victor Stinner
2024-02-20
1
-4/+9
*
Add missed `stream` argument (#111775)
Alexander Shadchin
2024-02-20
2
-1/+3
*
gh-110850: PyTime_Time() return 0 on success (GH-115713)
Victor Stinner
2024-02-20
1
-1/+1
*
gh-115687: Split up guards from COMPARE_OP (GH-115688)
Ken Jin
2024-02-20
9
-163/+249
*
gh-115700: Add target `_RegenCases` in Windows build for cases regeneration. ...
Kirill Podoprigora
2024-02-20
2
-3/+30
*
GH-115457: Support splitting and replication of micro ops. (GH-115558)
Mark Shannon
2024-02-20
20
-309/+908
*
GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...
Mark Shannon
2024-02-20
29
-198/+744
*
gh-113157: Document and test __get__ for MethodType (gh-115492)
Raymond Hettinger
2024-02-20
1
-2/+18
*
Make the title match the content (GH-115702)
Raymond Hettinger
2024-02-20
2
-5/+5
*
Modernize the Sorting HowTo guide (gh-115479)
Raymond Hettinger
2024-02-20
1
-6/+54
*
gh-115539: Allow enum.Flag to have None members (GH-115636)
Jason Zhang
2024-02-19
2
-21/+52
*
gh-115543: Update py.exe to know about Python 3.13 and to install 3.12 by def...
Steve Dower
2024-02-19
2
-1/+7
*
Fix typo in multiprocessing docs (#115650)
Naglis Jonaitis
2024-02-19
1
-1/+1
*
gh-115664: Fix versionadded and versionchanged directives in multiprocessing....
Serhiy Storchaka
2024-02-19
1
-15/+14
*
gh-115664: Fix chronological ordering of versionadded and versionchanged dire...
Brian Schubert
2024-02-19
6
-20/+20
[prev]
[next]