summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* [3.12] gh-116034: fix location info on the error of a failed assertion (#116054)Irit Katriel2024-02-292-1/+18
* [3.12] gh-115197: Stop resolving host in urllib.request proxy bypass (GH-115210)Miss Islington (bot)2024-02-282-44/+62
* [3.12] doc: Use super() in subclassed JSONEncoder examples (GH-115565) (GH-11...Miss Islington (bot)2024-02-281-1/+1
* [3.12] gh-115961: Improve tests for compressed file-like objects (GH-115963) ...Miss Islington (bot)2024-02-285-45/+476
* [3.12] gh-112006: Fix inspect.unwrap() for types where __wrapped__ is a data ...Miss Islington (bot)2024-02-272-13/+21
* [3.12] bpo-43952: Fix multiprocessing Listener authkey bug (GH-25845) (GH-115...Miss Islington (bot)2024-02-272-1/+21
* [3.12] bpo-44865: Fix yet one missing translations in argparse (GH-27668) (GH...Miss Islington (bot)2024-02-261-1/+2
* [3.12] gh-77956: Add the words 'default' and 'version' help text localizable...Serhiy Storchaka2024-02-261-2/+4
* [3.12] gh-114763: Protect lazy loading modules from attribute access races (G...Miss Islington (bot)2024-02-262-32/+91
* [3.12] gh-115881: Ensure `ast.parse()` parses conditional context managers ev...Alex Waygood2024-02-261-8/+4
* [3.12] gh-115823: Calculate correctly error locations when dealing with impli...Miss Islington (bot)2024-02-261-0/+1
* [3.12] gh-115931: Fix `SyntaxWarning`s in `test_unparse` (GH-115935) (#115948)Miss Islington (bot)2024-02-261-2/+11
* [3.12] gh-115886: Handle embedded null characters in shared memory name (GH-1...Serhiy Storchaka2024-02-251-1/+16
* [3.12] bpo-14322: added test case for invalid update to hmac (GH-26636) (#115...Miss Islington (bot)2024-02-251-0/+8
* [3.12] gh-67044: Always quote or escape \r and \n in csv.writer() (GH-115741)...Miss Islington (bot)2024-02-231-15/+39
* gh-114435: Allow test_stat_inaccessible_file() to have matching ino/dev (GH-1...Miss Islington (bot)2024-02-231-4/+3
* [3.12] gh-88516: show file proxy icon in IDLE editor windows on macOS (GH-112...Miss Islington (bot)2024-02-231-1/+10
* [3.12] gh-100762: Fix optimization in gen_close (GH-111069) (#115818)Miss Islington (bot)2024-02-222-6/+2
* [3.12] gh-112364: Correct unparsing of backslashes and quotes in ast.… (#11...Frank Hoffmann2024-02-212-7/+23
* [3.12] gh-93205: When rotating logs with no namer specified, match whole exte...Miss Islington (bot)2024-02-212-19/+61
* [3.12] gh-96310: Fix a traceback in argparse when all options in a mutually e...Miss Islington (bot)2024-02-212-0/+23
* [3.12] gh-86291: linecache: get module name from __spec__ if available (GH-22...Miss Islington (bot)2024-02-202-7/+43
* [3.12] gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspac...Serhiy Storchaka2024-02-201-6/+67
* [3.12] Add missed `stream` argument (GH-111775) (#115716)Miss Islington (bot)2024-02-201-1/+1
* [3.12] gh-115539: Allow enum.Flag to have None members (GH-115636) (GH-115694)Miss Islington (bot)2024-02-202-21/+52
* [3.12] gh-60346: Improve handling single-dash options in ArgumentParser.parse...Miss Islington (bot)2024-02-192-23/+56
* [3.12] gh-115341: Fix loading unit tests with doctests in -OO mode (GH-115342...Miss Islington (bot)2024-02-191-1/+1
* [3.12] Fix test_py_compile with -O mode (GH-115345) (GH-115669)Miss Islington (bot)2024-02-191-1/+3
* [3.12] Fix test_compile with -O mode (GH-115346) (GH-115668)Miss Islington (bot)2024-02-191-2/+5
* [3.12] gh-115154: Fix untokenize handling of unicode named literals (GH-11517...Miss Islington (bot)2024-02-192-10/+83
* [3.12] gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_exe...Miss Islington (bot)2024-02-192-9/+27
* [3.12] gh-108303: Move `Lib/test/sortperf.py` to `Tools/scripts` (GH-114687) ...Miss Islington (bot)2024-02-181-169/+0
* [3.12] gh-115618: Remove improper Py_XDECREFs in property methods (GH-115619)...Serhiy Storchaka2024-02-171-0/+18
* [3.12] gh-115596: Fix ProgramPriorityTests in test_os permanently changing th...Miss Islington (bot)2024-02-171-16/+15
* [3.12] Fix ProgramPriorityTests on FreeBSD with high nice value (GH-100145) (...Miss Islington (bot)2024-02-171-1/+2
* [3.12] gh-107155: Fix help() for lambda function with return annotation (GH-1...Kirill Podoprigora2024-02-172-2/+28
* [3.12] gh-115567: Catch test_ctypes.test_callbacks.test_i38748_stackCorruptio...Miss Islington (bot)2024-02-171-3/+4
* [3.12] gh-101384: Add socket timeout to ThreadedVSOCKSocketStreamTest and ski...Miss Islington (bot)2024-02-171-0/+3
* [3.12] gh-100985: Consistently wrap IPv6 IP address during CONNECT (GH-100986...Miss Islington (bot)2024-02-172-5/+26
* [3.12] gh-100884: email/_header_value_parser: don't encode list separators (G...Miss Islington (bot)2024-02-172-1/+7
* [3.12] gh-95782: Fix io.BufferedReader.tell() etc. being able to return offse...Miss Islington (bot)2024-02-172-2/+48
* [3.12] gh-97590: Update docs and tests for ftplib.FTP.voidcmd() (GH-96825) (G...Miss Islington (bot)2024-02-171-2/+2
* [3.12] gh-96497: Mangle name before symtable lookup in 'symtable_extend_named...Miss Islington (bot)2024-02-171-0/+22
* [3.12] gh-115570: Fix DeprecationWarnings in test_typing (#115571) (#115574)Jelle Zijlstra2024-02-162-2/+13
* [3.12] gh-108303: Move all `pydoc` related files to `test_pydoc` (GH-114506) ...Nikita Sobolev2024-02-156-25/+31
* [3.12] gh-112087: Fix reduce logic for the empty reverse iterator for list (g...Donghee Na2024-02-141-1/+1
* [3.12] gh-115243: Fix crash in deque.index() when the deque is concurrently m...Miss Islington (bot)2024-02-141-1/+5
* [3.12] gh-115392: Fix doctest reporting incorrect line numbers for decorated ...Miss Islington (bot)2024-02-144-1/+21
* [3.12] gh-115450: Fix direct invocation of `test_desctut` (GH-115451) (#115453)Miss Islington (bot)2024-02-141-11/+11
* [3.12] gh-115252: Fix test_enum with -OO mode again (GH-115334) (GH-115396)Miss Islington (bot)2024-02-131-5/+5