summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-118893: Evaluate all statements in the new REPL separately (#119318)Pablo Galindo Salgado2024-05-215-9/+128
* gh-118692: Avoid creating unnecessary StopIteration instances for monitoring ...Irit Katriel2024-05-211-5/+26
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Nice Zombies2024-05-213-24/+38
* gh-119102: Fix REPL for dumb terminal (#119332)Victor Stinner2024-05-211-1/+6
* gh-111201: Remove readline dependency from the PyREPL (#119262)Lysandros Nikolaou2024-05-212-3/+2
* gh-119189: Add yet more tests for mixed Fraction arithmetic (GH-119298)Serhiy Storchaka2024-05-211-3/+32
* gh-117657: Fix itertools.count thread safety (#119268)Arnon Yaari2024-05-211-1/+23
* gh-119306: Break up _pyrepl tests (#119307)Eugene Triguba2024-05-2110-1490/+1516
* gh-113978: Ignore warnings on text completion inside REPL (#113979)Yan Yanchii2024-05-211-4/+6
* gh-110383: Document `socket.makefile()` accepts combined modes (#119150)Daniel Williams2024-05-211-1/+2
* gh-119035: Add Ctrl+← and Ctrl+→ word-skipping keybindings to new repl (#...Alastair Stanley2024-05-212-3/+8
* gh-119102: Fix REPL for dumb terminal (#119269)Victor Stinner2024-05-211-1/+2
* gh-74929: PEP 667 general docs update (gh-119201)Alyssa Coghlan2024-05-212-7/+10
* gh-119174: Fix high DPI causes turtledemo(turtle-graphics examples) windows b...Wulian2332024-05-214-11/+23
* gh-111201: Add tests for unix console class in pyrepl (#118653)Lysandros Nikolaou2024-05-201-2/+290
* gh-119050: Add XML support to libregrtest refleak checker (#119148)Victor Stinner2024-05-204-25/+37
* gh-119253: use ImportError in _ios_support (#119254)Shantanu2024-05-201-2/+2
* gh-94808: Add test coverage for "starred kind" in _PyPegen_set_expr_context (...Mark Jason Dominus (陶敏修)2024-05-201-0/+6
* gh-111201: Add more tests to test_pyrepl to cover key translation (#118705)Pablo Galindo Salgado2024-05-201-8/+181
* gh-119189: Add more tests for mixed Fraction arithmetic (GH-119236)Serhiy Storchaka2024-05-201-0/+263
* gh-118760: Restore the default value of tkinter.wantobjects to 1 (GH-118784)Serhiy Storchaka2024-05-201-1/+1
* gh-92081: Fix for email.generator.Generator with whitespace between encoded w...Toshio Kuratomi2024-05-203-8/+78
* gh-118877: Fix AssertionError crash in pyrepl (#118936)Daniel Hollas2024-05-202-4/+25
* gh-119185: Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_p...Thanos2024-05-201-1/+1
* gh-103134: Update multiprocessing.managers.ListProxy and DictProxy (GH-103133)Roy Hyunjin Han2024-05-202-10/+54
* Enable some stricter mypy settings on `Lib/_pyrepl` (#119077)Alex Waygood2024-05-201-4/+1
* gh-119121: Fix and test `async.staggered.staggered_race` (#119173)Nikita Sobolev2024-05-202-2/+98
* IDLE: fix url in config.py comment (#119198)Terry Jan Reedy2024-05-201-1/+1
* gh-119105: difflib: improve recursion for degenerate cases (#119131)pulkin2024-05-191-5/+19
* GH-119113: Raise `TypeError` from `pathlib.PurePath.with_suffix(None)` (#119124)Barney Gale2024-05-192-7/+7
* GH-118447: Fix FreeBSD test failures. (#119170)Barney Gale2024-05-191-0/+1
* Try to repair oddball test bots timing out in test_int (#119166)Tim Peters2024-05-191-0/+8
* gh-118750: Asymptotically faster `int(string)` (#118751)Tim Peters2024-05-192-33/+478
* GH-118447: Fix handling of unreadable symlinks in `os.path.realpath()` (#118489)Barney Gale2024-05-182-13/+30
* gh-119050: Add type hints to libregrtest/results.py (#119144)Victor Stinner2024-05-181-6/+6
* gh-119132: Update sys.version to identify free-threaded or not. (gh-119134)Donghee Na2024-05-181-9/+15
* gh-119132: Log sys._is_gil_enabled() in test.pythoninfo (#119140)Victor Stinner2024-05-181-3/+7
* gh-119049: Defer `import warnings` in `pathlib._local` (#119111)Kirill Podoprigora2024-05-171-1/+1
* Improve `pyrepl` type-annotation coverage (#119081)Alex Waygood2024-05-176-14/+31
* gh-119049: Fix incorrect display of warning which is constructed by C API (GH...Kirill Podoprigora2024-05-161-1/+43
* Add Tkinter tests for different events (GH-118778)Serhiy Storchaka2024-05-161-0/+278
* gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH-119065)Serhiy Storchaka2024-05-1619-127/+115
* Fix typos in test_buffer.py and update numpy issue links (#118963)Wulian2332024-05-161-6/+6
* gh-118760: Fix errors in calling Tkinter bindings on Windows (GH-118782)Serhiy Storchaka2024-05-151-0/+3
* Remove references to private symbols from zipimport module docstring (GH-119015)Thomas Grainger2024-05-151-3/+1
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Steve Dower2024-05-151-15/+8
* GH-74033: Drop deprecated `pathlib.Path` keyword arguments (#118793)Barney Gale2024-05-142-9/+2
* GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118...Barney Gale2024-05-143-90/+47
* gh-118928: sqlite3: disallow sequences of params with named placeholders (#11...Erlend E. Aasland2024-05-141-2/+1
* typing tests: remove some unnecessary uses of `exec()` (#119005)Alex Waygood2024-05-141-19/+9