summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Python 3.15.0a4v3.15.0a4Hugo van Kemenade44 hours35-60/+351
* gh-142448: Disable JIT tracing when monitoring is enabled (GH-142842)Ken Jin2025-12-231-0/+1
* gh-138122: Add blocking mode for accurate stack traces in Tachyon (#142998)Pablo Galindo Salgado2025-12-231-0/+2
* gh-84232: Fix `pydoc` docs.python.org link generation (#139995)Stan Ulbrych2025-12-231-0/+2
* gh-122431: Correct the non-negative error message in `readline.append_history...Zheng Yu2025-12-231-0/+1
* gh-138122: Allow tachyon to write and read binary output (#142730)Pablo Galindo Salgado2025-12-221-0/+4
* GH-139922: Tail calling for MSVC (VS 2026) (GH-143068)Chris Eibl2025-12-221-0/+1
* gh-139109: Add terminator to JIT code when halting due to invalid dependenci...Ken Jin2025-12-221-0/+1
* gh-143010: Prevent a TOCTOU issue by only calling open once (#143011)AZero132025-12-221-0/+1
* gh-143057: avoid locking in `tracemalloc` C-APIs when it is not enabled (#143...Kumar Aditya2025-12-221-0/+1
* gh-143046: Make asyncio REPL respect the `-q` flag (quiet mode) (#143047)Bartosz Sławecki2025-12-221-0/+2
* gh-80744: do not read .pdbrc twice when cwd == $home (#136816)saucoide2025-12-211-0/+1
* gh-142834: pdb commands command should use last available breakpoint (#142835)Hai Zhu2025-12-201-0/+1
* gh-142476: fix memory leak when creating JIT executors (GH-142492)Shamil2025-12-191-0/+2
* gh-142776: Ensure fp file descriptor is closed on all code paths in import.c ...stratakis2025-12-191-0/+1
* gh-142961: Fix constant folding len(tuple) in JIT (GH-142963)Ken Jin2025-12-191-0/+1
* gh-136282: Configparser: create unnamed sections via mapping protocol access ...Rogdham2025-12-191-0/+2
* gh-142560: prevent use-after-free in search-like methods by exporting buffer ...wangxiaolei2025-12-191-0/+1
* gh-129068: Make range iterators thread-safe (gh-142886)Sam Gross2025-12-181-0/+2
* gh-142419: Add mmap.set_name method for user custom annotation (gh-142480)Donghee Na2025-12-181-0/+3
* gh-76007: Deprecate `VERSION` in `xml.etree.ElementTree` & `version` in `xml....Hugo van Kemenade2025-12-181-0/+3
* gh-142784: make the asyncio REPL call `loop.close()` at exit (#142785)Bartosz Sławecki2025-12-181-0/+3
* gh-124098: Fix incorrect inclusion of handler methods without protocol prefix...MonadChains2025-12-181-0/+4
* gh-139757: Treat call specially in JIT assembly backend optimizer on x86-64 a...Ken Jin2025-12-171-0/+1
* GH-100964: Fix reference cycle in exhausted generator frames (#141112)Savannah Ostrowski2025-12-171-0/+1
* gh-142766: Clear frame when `generator.close()` is called (gh-142838)Sam Gross2025-12-171-0/+1
* gh-138122: Validate base frame before caching in remote debugging frame cache...Pablo Galindo Salgado2025-12-171-0/+4
* gh-112127: Fix possible use-after-free in atexit.unregister() (GH-114092)Benjamin Johnson2025-12-172-0/+3
* gh-142654: show the clear error message when sampling on an unknown PID in ta...Keming2025-12-171-0/+2
* gh-142783: Fix possible use after free in zoneinfo module (GH-142790)wangxiaolei2025-12-171-0/+1
* gh-142836: Avoid /proc fd pipes on Solaris (#142853)Jason R. Coombs2025-12-171-0/+1
* gh-142543: Mark tracer functions as Py_NO_INLINE (GH-142846)Ken Jin2025-12-171-0/+1
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_WITH_HINT` (GH-1...Nadeshiko Manju2025-12-161-0/+1
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_INSTANCE_VALUE` (...Nadeshiko Manju2025-12-161-0/+1
* gh-142495: Make `defaultdict` keep existed value when racing with `__missing_...Edward Xu2025-12-161-0/+4
* Python 3.15.0a3v3.15.0a3Hugo van Kemenade2025-12-16152-364/+1605
* gh-142754: Ensure that Element & Attr instances have the ownerDocument attrib...Petr Viktorin2025-12-161-0/+4
* gh-76007: Deprecate `__version__` attribute in `wsgiref.simple_server` (#142675)Hugo van Kemenade2025-12-161-0/+2
* gh-142737: Handle lost `io.open` in `_Py_FindSourceFile` (GH-142747)Bartosz Sławecki2025-12-151-0/+3
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_INSTANCE_VALUE` ...Nadeshiko Manju2025-12-151-0/+1
* gh-141081: Revert "Add a `.gitignore` file to `__pycache__` folders (#141162)...Hugo van Kemenade2025-12-151-2/+0
* GH-142718: JIT: Fix crash due to incorrect caching on side exits when exiting...Mark Shannon2025-12-151-0/+1
* gh-116738: Make _bz2 module thread-safe (gh-142756)Alper2025-12-151-0/+2
* gh-134584: Eliminate redundant refcounting from _CALL_LIST_APPEND (GH-142711)Nadeshiko Manju2025-12-151-0/+1
* gh-142594: fix by property calls io.TextIOWrapper.detach (GH-142706)yihong2025-12-151-0/+2
* gh-142217: Recommend PyUnicode_InternFromString() to replace _PyUnicode_FromI...Victor Stinner2025-12-151-1/+1
* gh-142029: Raise `ModuleNotFoundError` instead of crashing on nonexsistent mo...dr-carlos2025-12-151-0/+2
* gh-138122: Add --subprocesses flag to profile child processes in tachyon (#14...Pablo Galindo Salgado2025-12-151-0/+6
* gh-142651: make `Mock.call_count` thread-safe (#142656)chaope2025-12-151-0/+3
* gh-76007: Deprecate `__version__` attribute in `ctypes` (#142679)Hugo van Kemenade2025-12-151-0/+1