summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* gh-140260: fix data race in `_struct` module initialization with subinterpret...Shamil2025-11-131-41/+50
* gh-137109: refactor warning about threads when forking (#141438)Gregory P. Smith2025-11-131-43/+60
* gh-124111: Fix TCL 9 thread detection (GH-128103)Michael Cho2025-11-121-0/+4
* gh-132657: add regression test for `PySet_Contains` with unhashable type (#14...M Bussonnier2025-11-121-0/+47
* gh-141004: soft-deprecate Py_INFINITY macro (#141033)Sergey B Kirpichev2025-11-122-13/+13
* gh-141311: Avoid assertion in BytesIO.readinto() (GH-141333)Cody Maloney2025-11-121-3/+13
* gh-85524: Raise "UnsupportedOperation" on FileIO.readall (#141214)Cody Maloney2025-11-122-8/+19
* gh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (GH-141391)Petr Viktorin2025-11-121-2/+2
* GH-116946: revert eliminate the need for the GC in the `_thread.lock` and `_t...Kumar Aditya2025-11-121-15/+7
* GH-116946: eliminate the need for the GC in the `_thread.lock` and `_thread.R...Sergey Miryanov2025-11-121-7/+15
* gh-120950: Fix overflow in math.log() with large int-like argument (GH-121011)Serhiy Storchaka2025-11-111-30/+50
* gh-141314: Fix TextIOWrapper.tell() assertion failure with standalone carriag...Mohsin Mehmood2025-11-111-1/+1
* gh-116738: use `PyMutex` in `lzma` module (#140711)Alper2025-11-111-33/+13
* gh-141376: Fix exported symbols (GH-141377)Victor Stinner2025-11-119-46/+46
* gh-111389: replace deprecated occurrences of `_PyHASH_*` macros (#141236)Bénédikt Tran2025-11-091-3/+3
* gh-100218: correctly set `errno` when `socket.if_{nametoindex,indextoname}` r...Bénédikt Tran2025-11-091-2/+3
* gh-140615: Update docstrings in the fcntl module (GH-140619)Serhiy Storchaka2025-11-082-92/+98
* gh-83714: Fix stat_nanosecond_timestamp() for 32-bit time_t (#141069)Victor Stinner2025-11-051-2/+4
* Fix compiler warnings in remote debugging (#141060)Victor Stinner2025-11-051-29/+29
* gh-140650: Fix write(), flush() and close() methods of io.BufferedWriter (GH-...Sachin Shah2025-11-051-6/+19
* Fix a compiler warning in _randommodule.c (#141058)Victor Stinner2025-11-051-1/+1
* Remove internal _PyTime_AsLong() function (#141053)Victor Stinner2025-11-053-19/+19
* gh-83714: Fix a compiler warning in stat_nanosecond_timestamp() (#141043)Victor Stinner2025-11-051-1/+4
* gh-140550: Initial implementation of PEP 793 – PyModExport (GH-140556)Petr Viktorin2025-11-058-1/+605
* gh-140979: Fix off-by-one error in the RE code validator (GH-140984)Serhiy Storchaka2025-11-041-1/+1
* gh-131253: free-threaded build support for pystats (gh-137189)Neil Schemenauer2025-11-031-2/+2
* gh-134786: raise error if `Py_TPFLAGS_MANAGED_WEAKREF` or `Py_TPFLAGS_MANAGED...Sergey Miryanov2025-11-021-0/+35
* gh-81313: Add the math.integer module (PEP-791) (GH-133909)Serhiy Storchaka2025-10-316-1372/+1482
* gh-55531: Implement `normalize_encoding` in C (#136643)Stan Ulbrych2025-10-302-1/+107
* gh-137821: Improve Argument Clinic definitions in the ``_json`` module (#140780)Donghee Na2025-10-302-45/+56
* gh-129117: Add unicodedata.isxidstart() function (#140269)Stan Ulbrych2025-10-302-1/+128
* gh-137821: Convert _json module to use Argument Clinic (gh-140778)Yoonho Hann2025-10-302-43/+130
* GH-140590: Fix setstate for functools.partial C-module (GH-140671)Sergey Miryanov2025-10-281-1/+2
* gh-140634: Fix a reference counting bug in os.sched_param.__reduce__() (GH-14...Serhiy Storchaka2025-10-271-1/+1
* gh-140607: Validate returned byte count in RawIOBase.read (#140611)Cody Maloney2025-10-271-3/+10
* gh-116738: Use PyMutex for bz2 module (gh-140555)Alper2025-10-271-37/+12
* gh-134160: Add more comments for the xxlimited module (GH-140214)Petr Viktorin2025-10-271-7/+53
* gh-140593: Fix a memory leak in function `my_ElementDeclHandler` of `pyexpat`...Sebastian Pipping2025-10-261-1/+1
* gh-76007: Deprecate `__version__` attribute in `decimal` (#140302)Stan Ulbrych2025-10-261-1/+27
* Remove unreachable break statements in _ctypes_test.c (#140585)Shamil2025-10-251-3/+0
* gh-140414: add fastpath for current running loop in `asyncio.all_tasks` (#140...Kumar Aditya2025-10-241-24/+38
* gh-83714: Set os.statx().stx_mode to None if missing from stx_mask (#140484)Victor Stinner2025-10-231-16/+19
* gh-140443: Use `fma` in `loghelper` to improve accuracy of log for very large...Abhishek Tiwari2025-10-231-1/+1
* gh-140474: Fix memory leak in `array.array` (GH-140478)Stan Ulbrych2025-10-231-0/+3
* gh-116738: Add critical section to dbm/gdbm context manager (gh-140391)Alper2025-10-222-2/+10
* gh-83714: Only use STATX_MNT_ID & STATX_SUBVOL if they're defined (GH-140446)Petr Viktorin2025-10-221-4/+4
* gh-83714: Use "stx_" prefix for all os.statx_result members (#140432)Victor Stinner2025-10-221-50/+45
* gh-116738: Make _suggestions module thread-safe (gh-140321)Alper2025-10-222-3/+7
* gh-69528: Distinguish between file modes "wb+" and "rb+" (GH-137834)Stan Ulbrych2025-10-211-3/+13
* gh-83714: Check for struct statx members in configure (#140402)Jeffrey Bosboom2025-10-211-10/+10