summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-119182: Add PyUnicodeWriter_WriteUCS4() function (#120849)Victor Stinner2024-06-241-1/+35
* gh-70278: Fix PyUnicode_FromFormat() with precision for %s and %V (GH-120365)Serhiy Storchaka2024-06-241-2/+44
* gh-120373: Mark test_audit.test_http as requiring the network resource (#120374)Itamar Oren2024-06-241-0/+1
* gh-119521: Rename IncompleteInputError to _IncompleteInputError and remove fr...Pablo Galindo Salgado2024-06-243-3/+2
* gh-119614: Fix truncation of strings with embedded null characters in Tkinter...Serhiy Storchaka2024-06-242-0/+33
* gh-120683: Fix an error in logging.LogRecord timestamp (GH-120709)Serhiy Storchaka2024-06-241-2/+7
* GH-73991: Add `pathlib.Path.copytree()` (#120718)Barney Gale2024-06-232-0/+170
* gh-120910: Fix issue resolving relative paths outside site-packages. (#120911)Jason R. Coombs2024-06-232-0/+35
* gh-101830: Fix Tcl_Obj to string conversion (GH-120884)Serhiy Storchaka2024-06-231-1/+51
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-234-83/+16
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-234-114/+13
* GH-107803: double linked list implementation for asyncio tasks (GH-107804)Kumar Aditya2024-06-221-11/+23
* gh-120873: Add tests for new widget options in Tk 8.7 (GH-120877)Serhiy Storchaka2024-06-223-36/+104
* gh-120873: Add test for "state" option in ttk.Scale (GH-120874)Serhiy Storchaka2024-06-221-12/+10
* gh-104855: Update Tkinter tests for Tcl/Tk 8.7 and 9.0 (GH-120824)Serhiy Storchaka2024-06-226-137/+250
* gh-119182: Rewrite PyUnicodeWriter tests in Python (#120845)Victor Stinner2024-06-211-1/+149
* gh-120782: Update internal type cache when reloading datetime (#120829)neonene2024-06-211-0/+17
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-214-67/+106
* gh-120380: fix Python implementation of `pickle.Pickler` for `bytes` and `byt...Bénédikt Tran2024-06-211-6/+43
* gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (#120442)Nikita Sobolev2024-06-212-0/+22
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-214-719/+1
* gh-120801: Refactor importlib.metadata fixtures. (#120803)Jason R. Coombs2024-06-203-28/+9
* gh-120769: Add pdb meta command to print frame status. (#120770)Tian Gao2024-06-201-0/+31
* gh-120780: Show attribute name for LOAD_SPECIAL in dis output (#120781)Jelle Zijlstra2024-06-201-6/+6
* gh-98442: fix locations of with statement's cleanup instructions (#120763)Irit Katriel2024-06-201-0/+33
* gh-111259: Optimize complementary character sets in RE (GH-120742)Serhiy Storchaka2024-06-201-0/+18
* gh-119698: fix `symtable.Class.get_methods` and document its behaviour correc...Bénédikt Tran2024-06-201-1/+134
* gh-120606: Allow EOF to exit pdb commands definition (#120607)Tian Gao2024-06-191-0/+5
* gh-120732: Fix `name` passing to `Mock`, when using kwargs to `create_autospe...Nikita Sobolev2024-06-191-0/+5
* GH-120097: Make FrameLocalsProxy a mapping (#120101)Mark Shannon2024-06-191-0/+12
* GH-119462: Enforce invariants of type versioning (GH-120731)Mark Shannon2024-06-191-6/+23
* gh-120635: Avoid leaking processes in test_pyrepl (#120676)Victor Stinner2024-06-191-1/+1
* gh-120722: Set position on RETURN_VALUE in lambda (#120724)Jelle Zijlstra2024-06-191-1/+28
* gh-102797: Add more code snippets in test_ast (#102798)Kirill Podoprigora2024-06-191-8/+196
* GH-73991: Add follow_symlinks argument to `pathlib.Path.copy()` (#120519)Barney Gale2024-06-191-1/+34
* GH-73991: pathlib ABC tests: add `DummyPath.unlink()` and `rmdir()` (#120715)Barney Gale2024-06-182-20/+51
* gh-120367: fix bug where compiler detects redundant jump after pseudo op repl...Irit Katriel2024-06-181-1/+26
* GH-73991: Use same signature for `shutil._rmtree_[un]safe()`. (#120517)Barney Gale2024-06-181-8/+6
* gh-119574: Add some missing environment variables to '--help-env'. (GH-120006)devdanzin2024-06-181-0/+70
* gh-120417: Add #noqa: F401 to tests (#120627)Victor Stinner2024-06-1824-41/+43
* gh-117953: Skip `test_interpreters` properly without GIL (#120689)Nice Zombies2024-06-181-3/+6
* gh-120417: Use import_helper() in test_regrtest (#120680)Victor Stinner2024-06-181-14/+12
* gh-120449: fix ``test_pyclbr`` introspection for mangled names (GH-120450)Bénédikt Tran2024-06-182-17/+75
* gh-120600: Make Py_TYPE() opaque in limited C API 3.14 (#120601)Victor Stinner2024-06-181-0/+1
* gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (#118807)Sam Gross2024-06-181-0/+28
* gh-120659: Skip `test_freethreading` with GIL (#120660)Nice Zombies2024-06-181-0/+4
* gh-120417: Move imports to doctests in test_doctest (#120679)Victor Stinner2024-06-181-4/+14
* gh-120381: Fix inspect.ismethoddescriptor() (#120383)Jan Kaliszewski2024-06-181-3/+118
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-184/+202
* gh-119897: Add test for lambda generator invocation (#120658)Irit Katriel2024-06-181-1/+5