summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.13] Restore decimal context after decimal doctests (GH-120149) (GH-120167)Miss Islington (bot)2024-06-061-3/+7
* Python 3.13.0b2v3.13.0b2Thomas Wouters2024-06-051-34/+39
* [3.13] gh-120065: Increase `collect_in_thread` period to 5 ms. (GH-120068) (#...Miss Islington (bot)2024-06-051-1/+1
* [3.13] gh-119819: Update logging configuration to support joinable multiprocâ...Miss Islington (bot)2024-06-052-3/+9
* [3.13] gh-119553: Fix console when pressing Ctrl-C within a multiline block (...Miss Islington (bot)2024-06-042-1/+3
* [3.13] gh-120048: Make `test_imaplib` faster (GH-120050) (#120069)Miss Islington (bot)2024-06-041-14/+8
* [3.13] gh-119819: Update test to skip if _multiprocessing is unavailable. (GH...Miss Islington (bot)2024-06-041-1/+1
* [3.13] gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843) (GH-120066)Łukasz Langa2024-06-045-10/+73
* [3.13] gh-119553: Clear reader on Ctrl-C command (GH-119801) (#120062)Miss Islington (bot)2024-06-043-0/+19
* [3.13] gh-120039: Reduce expected timeout in test_siginterrupt_off (GH-120047...Miss Islington (bot)2024-06-041-3/+3
* [3.13] gh-120041: Do not use append_to_screen when completions are visible (G...Miss Islington (bot)2024-06-043-10/+52
* [3.13] gh-89928: Fix integer conversion of device numbers (GH-31794) (GH-120053)Miss Islington (bot)2024-06-041-2/+13
* [3.13] gh-119588: Implement zipfile.Path.is_symlink (zipp 3.19.0). (GH-119591...Miss Islington (bot)2024-06-042-12/+22
* [3.13] gh-106531: Apply changes from importlib_resources 6.3.2 (GH-117054) (#...Miss Islington (bot)2024-06-0414-146/+224
* [3.13] gh-119819: Fix regression to allow logging configuration with multiprâ...Miss Islington (bot)2024-06-042-1/+29
* [3.13] gh-118868: logging QueueHandler fix passing of kwargs (GH-118869) (GH-...Miss Islington (bot)2024-06-042-8/+37
* [3.13] gh-119070: Update test_shebang_executable_extension to always use non-...Miss Islington (bot)2024-06-041-3/+3
* [3.13] gh-119724: Revert "bpo-45759: Better error messages for non-matching '...T. Wouters2024-06-041-59/+2
* [3.13] gh-117657: Fix itertools.count thread safety (GH-119268) (#120007)Sam Gross2024-06-031-1/+23
* [3.13] gh-117657: Fix race involving immortalizing objects (GH-119927) (#120005)Sam Gross2024-06-031-2/+2
* [3.13] gh-118835: pyrepl: Fix prompt length computation for custom prompts co...Miss Islington (bot)2024-06-032-2/+40
* [3.13] Use Cirrus M1 macOS runners for CI (GH-119979) (GH-119986)Miss Islington (bot)2024-06-032-2/+3
* [3.13] gh-119856: Support exiting help() with just "exit" (GH-119858) (#119967)Miss Islington (bot)2024-06-031-2/+2
* [3.13] gh-111201: Skip pyrepl Windows tests earlier (#119848) (#119924)Victor Stinner2024-06-011-2/+6
* [3.13] GH-89727: Fix `shutil.rmtree()` recursion error on deep trees (GH-1198...Miss Islington (bot)2024-06-012-97/+66
* [3.13] gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to en...Miss Islington (bot)2024-06-012-2/+9
* [3.13] gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119...Jelle Zijlstra2024-06-011-0/+20
* [3.13] gh-74929: PEP 667 C API documentation (gh-119892)Miss Islington (bot)2024-06-011-4/+9
* [3.13] gh-118894: Make asyncio REPL use pyrepl (GH-119433) (#119884)Miss Islington (bot)2024-05-316-65/+142
* gh-119690: Adds Unicode support for named pipes in _winapi (GH-119717)Miss Islington (bot)2024-05-313-1/+58
* [3.13] gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadSta...Miss Islington (bot)2024-05-311-0/+16
* [3.13] gh-111201: Support pyrepl on Windows (GH-119559) (GH-119850)Miss Islington (bot)2024-05-3113-44/+1010
* [3.13] gh-111201: Improve pyrepl auto indentation (GH-119606) (GH-119833)Miss Islington (bot)2024-05-313-11/+101
* [3.13] gh-119548: Add a 'clear' command to the REPL (GH-119549) (#119552)Miss Islington (bot)2024-05-312-1/+11
* [3.13] gh-107262: Update Tkinter tests for Tcl/Tk 8.6.14 (GH-119322) (GH-119806)Miss Islington (bot)2024-05-302-9/+22
* [3.13] gh-119791: Fix new Tkinter tests for wantobjects=0 (GH-119792) (GH-119...Miss Islington (bot)2024-05-301-3/+10
* [3.13] GH-89727: Fix FD leak on `os.fwalk()` generator finalization. (GH-1197...Miss Islington (bot)2024-05-302-2/+30
* [3.13] GH-89727: Fix `os.fwalk()` recursion error on deep trees (GH-119638) (...Miss Islington (bot)2024-05-302-40/+53
* [3.13] gh-119260: Clarify is_dataclass Behavior for Subclasses in Documentati...Miss Islington (bot)2024-05-301-0/+18
* [3.13] gh-117398: Add multiphase support to _datetime (gh-119694)Eric Snow2024-05-291-0/+20
* [3.13] GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (GH-11957...Miss Islington (bot)2024-05-293-39/+34
* [3.13] GH-89727: Partially fix `shutil.rmtree()` recursion error on deep tree...Miss Islington (bot)2024-05-293-28/+30
* gh-119070: Fix py.exe handling of /usr/bin/env commands missing extension (GH...Miss Islington (bot)2024-05-291-0/+8
* [3.13] gh-119555: catch SyntaxError from compile() in the InteractiveColoredC...Miss Islington (bot)2024-05-292-1/+9
* [3.13] gh-119443: Turn off from __future__ import annotations in REPL (GH-119...Miss Islington (bot)2024-05-292-1/+10
* [3.13] gh-119011: `type.__type_params__` now return an empty tuple (GH-119296...Miss Islington (bot)2024-05-282-0/+13
* [3.13] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) (#...Jelle Zijlstra2024-05-282-1/+96
* [3.13] gh-119581: Add a test of InitVar with name shadowing (GH-119582) (#119...Miss Islington (bot)2024-05-281-0/+23
* [3.13] Clarify base64.a85encode docs: *wrapcols* doesn't count the newline (G...Miss Islington (bot)2024-05-281-1/+1
* [3.13] Re-order imports to align with zipp 3.18.2 (GH-119587) (#119589)Miss Islington (bot)2024-05-282-3/+3