summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-142595: Amend be5e0dcdedb (fix NULL pointer dereference) (GH-142775)Sergey B Kirpichev10 days1-2/+3
* gh-116738: Make _bz2 module thread-safe (gh-142756)Alper11 days1-6/+25
* gh-142594: fix by property calls io.TextIOWrapper.detach (GH-142706)yihong11 days1-0/+3
* gh-138122: Add --subprocesses flag to profile child processes in tachyon (#14...Pablo Galindo Salgado11 days5-16/+709
* gh-76007: Deprecate `__version__` attribute in `ctypes` (#142679)Hugo van Kemenade11 days2-1/+24
* gh-140414: streamline thread state access in `asyncio` (#142742)Kumar Aditya11 days1-31/+31
* gh-142451: correctly copy HMAC attributes in `HMAC.copy()` (#142510)Bénédikt Tran13 days1-3/+11
* gh-116738: Make zlib module thread-safe (gh-142432)Alper2025-12-121-54/+79
* gh-142595: add type check for namedtuple call during decimal initialization (...Sergey B Kirpichev2025-12-121-4/+8
* gh-138122: Add exception profiling mode to the sampling profiler (#142561)Pablo Galindo Salgado2025-12-113-6/+42
* gh-142531: Fix free-threaded GC performance regression (gh-142562)Neil Schemenauer2025-12-111-0/+8
* gh-142589: Fix PyUnstable_Object_IsUniqueReferencedTemporary (gh-142593)Sam Gross2025-12-111-0/+10
* Fix os.posix_spawn() error handling (#142532)Bartosz Sławecki2025-12-111-1/+1
* gh-142438: Added missing GIL release in _PySSL_keylog_callback when keylog_bi...AZero132025-12-111-1/+3
* gh-142556: fix crash when a task gets re-registered during finalization in `a...Kumar Aditya2025-12-111-9/+5
* gh-123241: Don't modify ref count during visitation (GH-142232)Dino Viehland2025-12-111-9/+5
* gh-138122: Make the tachyon profiler opcode-aware (#142394)Pablo Galindo Salgado2025-12-115-45/+172
* Silence warning on conversion from uint64_t to uintptr_t in threads.c (#142437)AZero132025-12-091-1/+2
* gh-138122: Fix unused variable warning in threads.c (#142425)Sam Gross2025-12-081-0/+1
* gh-141770: Annotate anonymous mmap usage if "-X dev" is used (gh-142079)Donghee Na2025-12-082-1/+6
* gh-142207: remove assertions incompatible under `profiling.sampling` (#142331)yihong2025-12-081-4/+2
* gh-138122: Don't sample partial frame chains (#141912)Pablo Galindo Salgado2025-12-073-11/+25
* gh-138122: Implement frame caching in RemoteUnwinder to reduce memory reads (...Pablo Galindo Salgado2025-12-068-36/+822
* GH-141565: Add async code awareness to Tachyon (#141533)Savannah Ostrowski2025-12-063-6/+25
* gh-115952: Fix a potential virtual memory allocation denial of service in pic...Serhiy Storchaka2025-12-051-92/+185
* gh-48752: Add readline.get_pre_input_hook() function (#141586)Sanyam Khurana2025-12-052-1/+48
* gh-116738: Statically initialize special constants in cmath module (gh-142161)Alper2025-12-041-126/+99
* gh-116738: Fix thread-safety issue in re module for free threading (gh-141923)Alper2025-11-261-4/+9
* gh-138122: Split Modules/_remote_debugging_module.c into multiple files (#141...Pablo Galindo Salgado2025-11-2511-3613/+4236
* gh-141780: Make PyModule_FromSlotsAndSpec enable GIL if needed (GH-141785)Petr Viktorin2025-11-242-0/+54
* GH-140638: Add a GC "candidates" stat (GH-141814)Brandt Bucher2025-11-221-1/+2
* gh-141801: Use accessors for ASN1_STRING fields in libssl (GH-141802)David Benjamin2025-11-221-8/+10
* gh-141817: Add IPV6_HDRINCL constant to the socket module (#141818)Chris Angelico2025-11-221-0/+3
* gh-116738: Make csv module thread-safe (gh-141365)Alper2025-11-211-9/+29
* gh-141645: Add a TUI mode to the new tachyon profiler (#141646)Pablo Galindo Salgado2025-11-201-1/+7
* gh-60107: Remove a copy from RawIOBase.read (#141532)Cody Maloney2025-11-201-11/+11
* gh-141784: Fix _remote_debugging_module.c compilation on 32-bit Linux (#141796)Victor Stinner2025-11-201-9/+12
* gh-140042: Removing unsafe call to sqlite3_shutdown (GH-141690)Prithviraj Chaudhuri2025-11-201-1/+0
* GH-140638: Add a GC "duration" stat (GH-141720)Brandt Bucher2025-11-191-2/+3
* gh-141659: Fix bad file descriptor error in subprocess on AIX (GH-141660)Ayappan Perumal2025-11-191-0/+6
* gh-141070: Add PyUnstable_Object_Dump() function (#141072)Victor Stinner2025-11-181-0/+25
* gh-135953: Simplify GC markers in the tachyon profiler (#141666)Pablo Galindo Salgado2025-11-171-11/+0
* GH-139914: Handle stack growth direction on HPPA (GH-140028)Stefano Rivera2025-11-171-0/+4
* GH-140643: Add `<native>` and `<GC>` frames to the sampling profiler (#141108)Brandt Bucher2025-11-172-57/+155
* gh-135953: Add GIL contention markers to sampling profiler Gecko format (#139...Pablo Galindo Salgado2025-11-171-26/+97
* gh-141553: Fix incorrect function signatures in `_testmultiphase` (#141554)Shamil2025-11-151-2/+3
* gh-114203: skip locking if object is already locked by two-mutex critical sec...Kumar Aditya2025-11-141-0/+101
* gh-139109: A new tracing JIT compiler frontend for CPython (GH-140310)Ken Jin2025-11-131-1/+2
* gh-139653: Add PyUnstable_ThreadState_SetStackProtection() (#139668)Victor Stinner2025-11-131-0/+54
* gh-135801: Add the module parameter to compile() etc (GH-139652)Serhiy Storchaka2025-11-132-11/+66