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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
gh-140260: fix data race in `_struct` module initialization with subinterpret...
Shamil
2025-11-13
1
-41/+50
*
gh-137109: refactor warning about threads when forking (#141438)
Gregory P. Smith
2025-11-13
1
-43/+60
*
gh-124111: Fix TCL 9 thread detection (GH-128103)
Michael Cho
2025-11-12
1
-0/+4
*
gh-132657: add regression test for `PySet_Contains` with unhashable type (#14...
M Bussonnier
2025-11-12
1
-0/+47
*
gh-141004: soft-deprecate Py_INFINITY macro (#141033)
Sergey B Kirpichev
2025-11-12
2
-13/+13
*
gh-141311: Avoid assertion in BytesIO.readinto() (GH-141333)
Cody Maloney
2025-11-12
1
-3/+13
*
gh-85524: Raise "UnsupportedOperation" on FileIO.readall (#141214)
Cody Maloney
2025-11-12
2
-8/+19
*
gh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (GH-141391)
Petr Viktorin
2025-11-12
1
-2/+2
*
GH-116946: revert eliminate the need for the GC in the `_thread.lock` and `_t...
Kumar Aditya
2025-11-12
1
-15/+7
*
GH-116946: eliminate the need for the GC in the `_thread.lock` and `_thread.R...
Sergey Miryanov
2025-11-12
1
-7/+15
*
gh-120950: Fix overflow in math.log() with large int-like argument (GH-121011)
Serhiy Storchaka
2025-11-11
1
-30/+50
*
gh-141314: Fix TextIOWrapper.tell() assertion failure with standalone carriag...
Mohsin Mehmood
2025-11-11
1
-1/+1
*
gh-116738: use `PyMutex` in `lzma` module (#140711)
Alper
2025-11-11
1
-33/+13
*
gh-141376: Fix exported symbols (GH-141377)
Victor Stinner
2025-11-11
9
-46/+46
*
gh-111389: replace deprecated occurrences of `_PyHASH_*` macros (#141236)
Bénédikt Tran
2025-11-09
1
-3/+3
*
gh-100218: correctly set `errno` when `socket.if_{nametoindex,indextoname}` r...
Bénédikt Tran
2025-11-09
1
-2/+3
*
gh-140615: Update docstrings in the fcntl module (GH-140619)
Serhiy Storchaka
2025-11-08
2
-92/+98
*
gh-83714: Fix stat_nanosecond_timestamp() for 32-bit time_t (#141069)
Victor Stinner
2025-11-05
1
-2/+4
*
Fix compiler warnings in remote debugging (#141060)
Victor Stinner
2025-11-05
1
-29/+29
*
gh-140650: Fix write(), flush() and close() methods of io.BufferedWriter (GH-...
Sachin Shah
2025-11-05
1
-6/+19
*
Fix a compiler warning in _randommodule.c (#141058)
Victor Stinner
2025-11-05
1
-1/+1
*
Remove internal _PyTime_AsLong() function (#141053)
Victor Stinner
2025-11-05
3
-19/+19
*
gh-83714: Fix a compiler warning in stat_nanosecond_timestamp() (#141043)
Victor Stinner
2025-11-05
1
-1/+4
*
gh-140550: Initial implementation of PEP 793 – PyModExport (GH-140556)
Petr Viktorin
2025-11-05
8
-1/+605
*
gh-140979: Fix off-by-one error in the RE code validator (GH-140984)
Serhiy Storchaka
2025-11-04
1
-1/+1
*
gh-131253: free-threaded build support for pystats (gh-137189)
Neil Schemenauer
2025-11-03
1
-2/+2
*
gh-134786: raise error if `Py_TPFLAGS_MANAGED_WEAKREF` or `Py_TPFLAGS_MANAGED...
Sergey Miryanov
2025-11-02
1
-0/+35
*
gh-81313: Add the math.integer module (PEP-791) (GH-133909)
Serhiy Storchaka
2025-10-31
6
-1372/+1482
*
gh-55531: Implement `normalize_encoding` in C (#136643)
Stan Ulbrych
2025-10-30
2
-1/+107
*
gh-137821: Improve Argument Clinic definitions in the ``_json`` module (#140780)
Donghee Na
2025-10-30
2
-45/+56
*
gh-129117: Add unicodedata.isxidstart() function (#140269)
Stan Ulbrych
2025-10-30
2
-1/+128
*
gh-137821: Convert _json module to use Argument Clinic (gh-140778)
Yoonho Hann
2025-10-30
2
-43/+130
*
GH-140590: Fix setstate for functools.partial C-module (GH-140671)
Sergey Miryanov
2025-10-28
1
-1/+2
*
gh-140634: Fix a reference counting bug in os.sched_param.__reduce__() (GH-14...
Serhiy Storchaka
2025-10-27
1
-1/+1
*
gh-140607: Validate returned byte count in RawIOBase.read (#140611)
Cody Maloney
2025-10-27
1
-3/+10
*
gh-116738: Use PyMutex for bz2 module (gh-140555)
Alper
2025-10-27
1
-37/+12
*
gh-134160: Add more comments for the xxlimited module (GH-140214)
Petr Viktorin
2025-10-27
1
-7/+53
*
gh-140593: Fix a memory leak in function `my_ElementDeclHandler` of `pyexpat`...
Sebastian Pipping
2025-10-26
1
-1/+1
*
gh-76007: Deprecate `__version__` attribute in `decimal` (#140302)
Stan Ulbrych
2025-10-26
1
-1/+27
*
Remove unreachable break statements in _ctypes_test.c (#140585)
Shamil
2025-10-25
1
-3/+0
*
gh-140414: add fastpath for current running loop in `asyncio.all_tasks` (#140...
Kumar Aditya
2025-10-24
1
-24/+38
*
gh-83714: Set os.statx().stx_mode to None if missing from stx_mask (#140484)
Victor Stinner
2025-10-23
1
-16/+19
*
gh-140443: Use `fma` in `loghelper` to improve accuracy of log for very large...
Abhishek Tiwari
2025-10-23
1
-1/+1
*
gh-140474: Fix memory leak in `array.array` (GH-140478)
Stan Ulbrych
2025-10-23
1
-0/+3
*
gh-116738: Add critical section to dbm/gdbm context manager (gh-140391)
Alper
2025-10-22
2
-2/+10
*
gh-83714: Only use STATX_MNT_ID & STATX_SUBVOL if they're defined (GH-140446)
Petr Viktorin
2025-10-22
1
-4/+4
*
gh-83714: Use "stx_" prefix for all os.statx_result members (#140432)
Victor Stinner
2025-10-22
1
-50/+45
*
gh-116738: Make _suggestions module thread-safe (gh-140321)
Alper
2025-10-22
2
-3/+7
*
gh-69528: Distinguish between file modes "wb+" and "rb+" (GH-137834)
Stan Ulbrych
2025-10-21
1
-3/+13
*
gh-83714: Check for struct statx members in configure (#140402)
Jeffrey Bosboom
2025-10-21
1
-10/+10
[prev]
[next]