summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-142368: Fix transient error handling in inspection tests (#143093)Pablo Galindo Salgado2025-12-231-6/+14
* gh-138122: Add blocking mode for accurate stack traces in Tachyon (#142998)Pablo Galindo Salgado2025-12-233-43/+182
* gh-84232: Fix `pydoc` docs.python.org link generation (#139995)Stan Ulbrych2025-12-231-0/+26
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_WITH_HINT` (GH-14...Hai Zhu2025-12-231-0/+21
* gh-138122: Allow tachyon to write and read binary output (#142730)Pablo Galindo Salgado2025-12-221-0/+1081
* gh-129069: fix more thread safety issues in `list` (#143019)Kumar Aditya2025-12-221-0/+58
* gh-143046: Make asyncio REPL respect the `-q` flag (quiet mode) (#143047)Bartosz Sławecki2025-12-221-0/+6
* gh-80744: do not read .pdbrc twice when cwd == $home (#136816)saucoide2025-12-211-0/+17
* gh-142145: relax the no-longer-quadratic test timing (#143030)Gregory P. Smith2025-12-201-3/+8
* gh-142834: pdb commands command should use last available breakpoint (#142835)Hai Zhu2025-12-201-0/+43
* gh-120321: Make gi_frame_state transitions atomic in FT build (gh-142599)Sam Gross2025-12-191-0/+71
* gh-134584: JIT: Borrow references for immortal promoted globals (GH-142921)Ken Jin2025-12-191-0/+38
* gh-142961: Fix constant folding len(tuple) in JIT (GH-142963)Ken Jin2025-12-191-0/+12
* gh-136282: Configparser: create unnamed sections via mapping protocol access ...Rogdham2025-12-191-0/+13
* gh-142560: prevent use-after-free in search-like methods by exporting buffer ...wangxiaolei2025-12-191-0/+31
* GH-134584: Remove redundant refcount for `BINARY_OP_SUBSCR_STR_INT` (#142844)Savannah Ostrowski2025-12-181-0/+20
* gh-134584: Eliminate redundant refcounting from _BINARY_OP_SUBSCR_LIST_INT (G...LloydZ2025-12-181-0/+18
* gh-142681: Move NormalizationTest-3.2.0.txt to more safe place. (GH-142935)Serhiy Storchaka2025-12-182-1/+1
* gh-142419: Add mmap.set_name method for user custom annotation (gh-142480)Donghee Na2025-12-181-0/+41
* gh-76007: Deprecate `VERSION` in `xml.etree.ElementTree` & `version` in `xml....Hugo van Kemenade2025-12-182-0/+25
* gh-124098: Fix incorrect inclusion of handler methods without protocol prefix...MonadChains2025-12-181-0/+17
* gh-134584: Remove redundant refcount from _BINARY_OP_ADD_UNICODE (gh-142825)Donghee Na2025-12-181-0/+16
* GH-100964: Fix reference cycle in exhausted generator frames (#141112)Savannah Ostrowski2025-12-171-0/+12
* gh-142766: Clear frame when `generator.close()` is called (gh-142838)Sam Gross2025-12-171-0/+27
* gh-138122: Validate base frame before caching in remote debugging frame cache...Pablo Galindo Salgado2025-12-171-0/+95
* gh-112127: Fix possible use-after-free in atexit.unregister() (GH-114092)Benjamin Johnson2025-12-171-0/+13
* gh-142654: show the clear error message when sampling on an unknown PID in ta...Keming2025-12-173-10/+28
* gh-139743: Avoid print twice verbose version for sqlite tests (GH-142850)yihong2025-12-171-3/+8
* gh-142783: Fix possible use after free in zoneinfo module (GH-142790)wangxiaolei2025-12-171-0/+20
* gh-142752: add more thread safety tests for mock (#142791)Kumar Aditya2025-12-171-0/+76
* gh-142836: Avoid /proc fd pipes on Solaris (#142853)Jason R. Coombs2025-12-171-1/+12
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_WITH_HINT` (GH-1...Nadeshiko Manju2025-12-161-0/+20
* gh-134584: Eliminate redundant refcounting from `_LOAD_ATTR_INSTANCE_VALUE` (...Nadeshiko Manju2025-12-161-0/+19
* gh-142495: Make `defaultdict` keep existed value when racing with `__missing_...Edward Xu2025-12-161-0/+18
* gh-142754: Ensure that Element & Attr instances have the ownerDocument attrib...Petr Viktorin2025-12-161-1/+9
* gh-76007: Deprecate `__version__` attribute in `wsgiref.simple_server` (#142675)Hugo van Kemenade2025-12-161-2/+14
* GH-134584: Remove redundant refcount from `_STORE_ATTR_SLOT` (#142729)Savannah Ostrowski2025-12-151-1/+19
* gh-142737: Handle lost `io.open` in `_Py_FindSourceFile` (GH-142747)Bartosz Sławecki2025-12-151-1/+28
* gh-134584: JIT: Eliminate redundant refcount ops for X_INT (GH-142765)Ken Jin2025-12-151-8/+73
* gh-134584: Eliminate redundant refcounting from `_STORE_ATTR_INSTANCE_VALUE` ...Nadeshiko Manju2025-12-151-0/+17
* gh-134584: Remove custom float decref ops (GH-142576)Ken Jin2025-12-151-4/+4
* gh-141081: Revert "Add a `.gitignore` file to `__pycache__` folders (#141162)...Hugo van Kemenade2025-12-153-29/+2
* GH-142718: JIT: Fix crash due to incorrect caching on side exits when exiting...Mark Shannon2025-12-151-0/+22
* gh-116738: Make _bz2 module thread-safe (gh-142756)Alper2025-12-151-0/+11
* gh-134584: Eliminate redundant refcounting from _STORE_SUBSCR_DICT (GH-142712)Donghee Na2025-12-151-0/+19
* gh-134584: Eliminate redundant refcounting from _CALL_LIST_APPEND (GH-142711)Nadeshiko Manju2025-12-151-0/+12
* gh-142594: fix by property calls io.TextIOWrapper.detach (GH-142706)yihong2025-12-151-0/+16
* gh-142029: Raise `ModuleNotFoundError` instead of crashing on nonexsistent mo...dr-carlos2025-12-151-2/+10
* gh-138122: Add --subprocesses flag to profile child processes in tachyon (#14...Pablo Galindo Salgado2025-12-157-487/+1462
* gh-142651: make `Mock.call_count` thread-safe (#142656)chaope2025-12-151-1/+23