summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-124130: Fix a bug in matching regular expression \B in empty string (GH-12...Serhiy Storchaka2025-01-021-8/+5
* gh-95371: Add support for other image formats(e.g. PNG) to the turtle… (#95...Shin-myoung-serp2025-01-021-16/+14
* Fix while statements with non-bool conditions in `_pyrepl` (#127509)RUANG (James Roy)2025-01-012-2/+2
* gh-128277: remove unnecessary critical section from `socket.close` (#128305)Kumar Aditya2025-01-011-0/+20
* gh-121676: Raise a ``DeprecationWarning`` if the Python implementation of ``f...Kirill Podoprigora2025-01-012-5/+34
* gh-88834: Unify the instance check for typing.Union and types.UnionType (GH-1...Serhiy Storchaka2024-12-312-3/+78
* gh-128342: Specify timeout unit in subprocess docstrings (GH-128343)n-l-i2024-12-301-3/+3
* gh-128118: Speed up copy.copy with fast lookup for atomic and container types...Pieter Eendebak2024-12-301-18/+9
* gh-119180: Set the name of the param to __annotate__ to "format" (#124730)Jelle Zijlstra2024-12-302-2/+51
* GH-127381: pathlib ABCs: remove uncommon `PurePathBase` methods (#127853)Barney Gale2024-12-295-433/+365
* GH-127381: pathlib ABCs: remove `PathBase.stat()` (#128334)Barney Gale2024-12-294-83/+62
* gh-123424: add `ZipInfo._for_archive` to set suitable default properties (#12...Bénédikt Tran2024-12-293-29/+52
* gh-128192: mark new tests with skips based on hashlib algorithm availability ...Gregory P. Smith2024-12-292-1/+19
* gh-128192: support HTTP sha-256 digest authentication as per RFC-7617 (GH-128...Calvin Bui2024-12-282-5/+27
* gh-128265: Support WASI/Emscripten on PDB tests, by removing asyncio from pdb...Thomas Grainger2024-12-284-60/+70
* gh-127586: multiprocessing.Pool does not properly restore blocked signals (tr...Stephen Hansen2024-12-272-3/+25
* gh-127089: Add missing description for codes in `http.HTTPStatus` (#127100)donBarbos2024-12-272-30/+52
* Mention loop_factory argument in docstring for asyncio.run() (#128288)Andrew Svetlov2024-12-271-0/+1
* gh-127537: Add __class_getitem__ to the python implementation of functools.pa...CF Bolz-Tereick2024-12-272-0/+9
* Remove incorrect imports rationale comment in `http.server` (#128278)Moshe Kaplan2024-12-261-1/+1
* gh-128234: support emscripten and wasi in async contextlib tests by removing ...Thomas Grainger2024-12-251-33/+61
* gh-128201: Fix ``DeprecationWarning`` in ``test_pdb`` (#128202)Kirill Podoprigora2024-12-251-16/+4
* gh-128035: Add ssl.HAS_PHA to detect libssl PHA support (GH-128036)Will Childs-Klein2024-12-243-4/+5
* gh-127847: Fix position in the special-cased zipfile seek (#127856)Dima Ryazanov2024-12-242-1/+16
* gh-127949: deprecate `asyncio.set_event_loop` (#128218)Kumar Aditya2024-12-2415-55/+73
* gh-127949: deprecate asyncio policy classes (#128216)Kumar Aditya2024-12-247-34/+66
* gh-127949: fix `DeprecationWarning` in test_inspect.py (#128215)Thomas Grainger2024-12-241-15/+13
* pathlib tests: create test hierarchy without using class under test (#128200)Barney Gale2024-12-232-29/+55
* gh-115999: Update test_opcache to test with nested method (gh-128166)Donghee Na2024-12-231-10/+8
* gh-127949: fix resource warnings in `test_tasks.py` (#128172)Thomas Grainger2024-12-221-8/+8
* GH-127807: pathlib ABCs: move private copying methods to dedicated class (#12...Barney Gale2024-12-223-248/+261
* GH-127807: pathlib ABCs: remove a few private attributes (#127851)Barney Gale2024-12-222-56/+64
* GH-127807: pathlib ABCs: remove `PurePathBase._raw_paths` (#127883)Barney Gale2024-12-225-96/+92
* gh-112328: Make EnumDict usable on its own and document it (GH-123669)Petr Viktorin2024-12-202-6/+37
* gh-128049: Fix type confusion bug with the return value of a custom Exception...Nico-Posada2024-12-201-0/+43
* gh-127946: Use a critical section for `CFuncPtr` attributes (GH-128109)Peter Bierma2024-12-201-1/+19
* gh-128116: Skip test_socket VSOCK testStream() on PermissionError (#128120)Victor Stinner2024-12-201-1/+4
* gh-109959: Log the current directory in test_glob.test_selflink() (#128122)Victor Stinner2024-12-201-0/+7
* gh-128030: Avoid error from PyModule_GetFilenameObject for non-module (#128047)Shantanu2024-12-201-0/+23
* gh-128058: Fix test_builtin ImmortalTests (#128068)Victor Stinner2024-12-201-1/+4
* gh-128080: remove unnecessary `__init__` method from Enum (GH-128081)Stephen Morton2024-12-191-3/+0
* gh-127274: Defer nested methods (#128012)mpage2024-12-194-13/+9
* gh-128062: Fix the font size and shortcut display of the turtledemo menu (#12...Zhikang Yan2024-12-191-10/+7
* gh-115999: Specialize `STORE_ATTR` in free-threaded builds. (gh-127838)Neil Schemenauer2024-12-192-0/+207
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-194-296/+362
* gh-128083: Fix macro redefinition warning in clinic. (GH-127950)Peter Bierma2024-12-191-0/+69
* gh-128013: fix data race in `PyUnicode_AsUTF8AndSize` on free-threading (#128...Kumar Aditya2024-12-191-1/+19
* gh-115999: Enable BINARY_SUBSCR_GETITEM for free-threaded build (gh-127737)Donghee Na2024-12-191-1/+18
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-187-25/+35
* gh-126639: Add ResourceWarning to NamedTemporaryFile (#126677)Thomas Grainger2024-12-182-6/+29