summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-092-0/+47
* gh-118802: Fix ACL use in test for non-English Windows (GH-118831)Miss Islington (bot)2024-05-091-3/+2
* [3.12] gh-103956: Fix `trace` output in case of missing source line (GH-10395...Miss Islington (bot)2024-05-092-4/+37
* [3.12] gh-118033: Fix `__weakref__` not set for generic dataclasses (GH-11809...Miss Islington (bot)2024-05-092-3/+116
* [3.12] gh-118671: Updated dead ActiveState links (GH-118730) (#118754)Miss Islington (bot)2024-05-081-1/+1
* [3.12] gh-118314: Fix padding edge case in binascii.a2b_base64 strict mode (G...Miss Islington (bot)2024-05-071-0/+15
* [3.12] gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-11...Serhiy Storchaka2024-05-061-4/+15
* [3.12] gh-118164: Break a loop between _pydecimal and _pylong and optimize in...Miss Islington (bot)2024-05-062-11/+66
* [3.12] gh-78955: Use user-selected color theme for Help => IDLE Doc (GH-9502)...Miss Islington (bot)2024-05-062-2/+7
* [3.12] gh-117389: Fix `test_compileall.EncodingTest` (GH-117390) (#118603)Miss Islington (bot)2024-05-051-8/+14
* [3.12] gh-118455: Fix mangle_from_ default value in email.policy.Policy.__doc...Miss Islington (bot)2024-05-051-1/+1
* [3.12] gh-118164: str(10**10000) hangs if the C _decimal module is missing (G...Miss Islington (bot)2024-05-052-5/+39
* [3.12] gh-118569: Add a test for dynamic PEP695 classes (GH-118570) (#118574)Miss Islington (bot)2024-05-041-0/+25
* [3.12] gh-118513: Fix sibling comprehensions with a name bound in one and glo...Miss Islington (bot)2024-05-031-0/+14
* [3.12] gh-90848: Fixed create_autospec ignoring configure_mock style kwargs (...Miss Islington (bot)2024-05-022-8/+25
* [3.12] gh-118272: Clear generator frame's locals when the generator is closed...Irit Katriel2024-05-021-0/+20
* [3.12] GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-...Thomas Grainger2024-05-021-0/+148
* [3.12] Uncomment one grammar test (GH-118361) (#118385)Miss Islington (bot)2024-05-021-1/+1
* [3.12] docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (GH-1...Jelle Zijlstra2024-05-022-2/+2
* [3.12] gh-116767: fix crash on 'async with' with many context managers (GH-11...Irit Katriel2024-05-011-4/+32
* [3.12] gh-118418: Use a default value for `type_params` in `typing._eval_type...Miss Islington (bot)2024-04-301-2/+2
* [3.12] gh-117860: Add tests for resolving names when import rebind names (GH-...Miss Islington (bot)2024-04-307-0/+147
* [3.12] gh-118404: Fix inspect.signature() for non-comparable callables (GH-11...Miss Islington (bot)2024-04-302-2/+14
* [3.12] gh-117566: fix IPv6Address.is_loopback for IPv4-mapped loopbacks (GH-1...Miss Islington (bot)2024-04-292-1/+20
* [3.12] gh-118042: Fix error in Telnet.__del__ when __init__() was not called ...Serhiy Storchaka2024-04-261-0/+1
* [3.12] gh-118221: Always use the default row factory in sqlite3.iterdump() (#...Erlend E. Aasland2024-04-252-0/+16
* [3.12] GH-117894: prevent aclose()/athrow() being re-used after StopIteration...Thomas Grainger2024-04-251-1/+61
* [3.12] gh-118013: Use weakrefs for the cache key in `inspect._shadowed_dict` ...Miss Islington (bot)2024-04-243-4/+47
* [3.12] gh-113171: gh-65056: Fix "private" (non-global) IP address ranges (GH-...Petr Viktorin2024-04-242-20/+100
* [3.12] bpo-40944: Fix IndexError when parse emails with truncated Message-ID,...Miss Islington (bot)2024-04-232-5/+50
* [3.12] gh-118168: Fix Unpack interaction with builtin aliases (GH-118169) (#1...Miss Islington (bot)2024-04-232-2/+35
* [3.12] gh-59215: unittest: restore _top_level_dir at end of discovery (GH-152...Miss Islington (bot)2024-04-232-1/+27
* [3.12] gh-117968: Add tests for the part of the PyRun family of the C API (GH...Serhiy Storchaka2024-04-221-0/+106
* [3.12] gh-118148: Improve tests for shutil.make_archive() (GH-118149) (GH-118...Miss Islington (bot)2024-04-221-71/+176
* [3.12] gh-117995: Don't raise DeprecationWarnings for indexed nameless params...Miss Islington (bot)2024-04-221-0/+14
* [3.12] gh-118121: Fix `test_doctest.test_look_in_unwrapped` (#118122) (#118129)Nikita Sobolev2024-04-211-1/+16
* [3.12] gh-114053: Fix bad interaction of PEP-695, PEP-563 and ``get_type_hint...Alex Waygood2024-04-193-9/+74
* [3.12] gh-87969: Align docs and docstrings with implementation for ctypes' [w...Miss Islington (bot)2024-04-191-4/+4
* [3.12] gh-117535: Ignore made up file name "sys" for warnings (#118014)Tian Gao2024-04-191-1/+3
* [3.12] gh-117503: Fix test for posixpath.expanduser() when pw_dir ends with /...Miss Islington (bot)2024-04-181-0/+1
* [3.12] gh-117613: Argument Clinic: ensure that defining class params are posi...neonene2024-04-171-0/+22
* [3.12] gh-80361: Fix TypeError in email.Message.get_payload() (GH-117994) (GH...Miss Islington (bot)2024-04-172-1/+16
* [3.12] gh-117975: Ensure flush level is checked when configuring a logging Me...Miss Islington (bot)2024-04-172-12/+43
* [3.12] gh-71966: Move the module docstring from _pydecimal to decimal (GH-117...Miss Islington (bot)2024-04-172-100/+100
* [3.12] gh-117313: Fix re-folding email messages containing non-standard line ...Miss Islington (bot)2024-04-172-2/+52
* [3.12] gh-117503: Fix support of non-ASCII user names in posixpath.expanduser...Serhiy Storchaka2024-04-172-1/+12
* [3.12] gh-117879: Fix test_httpservers for the build with profiling (GH-11793...Miss Islington (bot)2024-04-171-0/+3
* [3.12] gh-86650: Fix IndexError when parse emails with invalid Message-ID (GH...Miss Islington (bot)2024-04-172-0/+30
* [3.12] gh-75171: Fix parsing invalid email address headers starting or ending...Miss Islington (bot)2024-04-173-5/+60
* [3.12] gh-117691: Add an appropriate stacklevel for PEP-706 tarfile deprecati...Miss Islington (bot)2024-04-162-1/+26