summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-14322: added test case for invalid update to hmac (#26636)Arjun2024-02-251-0/+8
* gh-115886: Handle embedded null characters in shared memory name (GH-115887)Serhiy Storchaka2024-02-251-1/+16
* gh-115323: Add meaningful error message for using bytearray.extend with str (...Jay Ting2024-02-241-0/+7
* GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (...Barney Gale2024-02-242-1/+11
* gh-114763: Protect lazy loading modules from attribute access races (GH-114781)Chris Markiewicz2024-02-242-32/+91
* gh-67044: Always quote or escape \r and \n in csv.writer() (GH-115741)Serhiy Storchaka2024-02-231-15/+39
* gh-115859: Disable the tier 2 redundancy eliminator by default (GH-115860)Ken Jin2024-02-231-0/+3
* gh-115836: Don't use hardcoded line numbers in test_monitoring (#115837)Brett Simmers2024-02-231-6/+14
* gh-88516: show file proxy icon in IDLE editor windows on macOS (#112894)Ronald Oussoren2024-02-231-1/+10
* gh-115796: fix exception table construction in _testinternalcapi.assemble_cod...Irit Katriel2024-02-221-2/+39
* gh-111140: Improve PyLong_AsNativeBytes API doc example & improve the test (#...Gregory P. Smith2024-02-221-5/+25
* gh-93205: When rotating logs with no namer specified, match whole extension (...Gabriele Catania2024-02-212-19/+61
* gh-96310: Fix a traceback in argparse when all options in a mutually exclusiv...Daniel Mach2024-02-212-0/+23
* gh-104090: Add exit code to multiprocessing ResourceTracker (GH-115410)Petr Viktorin2024-02-213-7/+92
* argparse: remove incoherent and redundant docstring for private method (GH-10...Frank Dana2024-02-211-8/+0
* gh-112364: Correct unparsing of backslashes and quotes in ast.unparse (#115696)Frank Hoffmann2024-02-212-7/+23
* Tier 2 cleanups and tweaks (#115534)Guido van Rossum2024-02-202-73/+86
* gh-115733: Fix crash involving exhausted list iterator (#115740)Sam Gross2024-02-201-0/+5
* GH-115727: Temporary fix of confidence score test. (GH-115728)Mark Shannon2024-02-201-4/+3
* gh-86291: linecache: get module name from __spec__ if available (GH-22908)Eugene Toder2024-02-202-7/+43
* gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspace=True ...Serhiy Storchaka2024-02-201-10/+57
* gh-101860: Expose __name__ on property (GH-101876)Eugene Toder2024-02-205-14/+76
* Add missed `stream` argument (#111775)Alexander Shadchin2024-02-201-1/+1
* gh-115687: Split up guards from COMPARE_OP (GH-115688)Ken Jin2024-02-201-3/+56
* GH-115457: Support splitting and replication of micro ops. (GH-115558)Mark Shannon2024-02-201-1/+1
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-202-0/+12
* gh-115539: Allow enum.Flag to have None members (GH-115636)Jason Zhang2024-02-192-21/+52
* gh-60346: Improve handling single-dash options in ArgumentParser.parse_known_...Serhiy Storchaka2024-02-192-23/+56
* gh-115341: Fix loading unit tests with doctests in -OO mode (GH-115342)Serhiy Storchaka2024-02-191-1/+1
* Fix test_py_compile with -O mode (GH-115345)Serhiy Storchaka2024-02-191-1/+3
* Fix test_compile with -O mode (GH-115346)Serhiy Storchaka2024-02-191-2/+5
* gh-115154: Fix untokenize handling of unicode named literals (#115171)Pablo Galindo Salgado2024-02-192-10/+83
* gh-102388: Add windows_31j to aliases for cp932 codec (#102389)Masayuki Moriyama2024-02-191-0/+1
* gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_executor (...Jamie Phan2024-02-192-9/+27
* gh-115122: Add --bisect option to regrtest (#115123)Victor Stinner2024-02-187-30/+176
* gh-114709: Fix exceptions raised by posixpath.commonpath (#114710)Sebastian Rittau2024-02-182-1/+4
* gh-108303: Move `Lib/test/sortperf.py` to `Tools/scripts` (#114687)Nikita Sobolev2024-02-181-169/+0
* gh-115618: Remove improper Py_XDECREFs in property methods (GH-115619)Serhiy Storchaka2024-02-171-0/+18
* gh-115596: Fix ProgramPriorityTests in test_os permanently changing the proce...Brian Schubert2024-02-171-16/+15
* Fix ProgramPriorityTests on FreeBSD with high nice value (GH-100145)Dmitry Marakasov2024-02-171-1/+2
* gh-115567: Catch test_ctypes.test_callbacks.test_i38748_stackCorruption stdou...Kirill Podoprigora2024-02-171-3/+4
* gh-107155: Fix help() for lambda function with return annotation (GH-107401)Kirill Podoprigora2024-02-172-2/+28
* gh-96497: Mangle name before symtable lookup in 'symtable_extend_namedexpr_sc...wookie1842024-02-171-0/+22
* gh-97590: Update docs and tests for ftplib.FTP.voidcmd() (GH-96825)Matthew Hughes2024-02-171-2/+2
* gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...6t8k2024-02-172-2/+48
* gh-100884: email/_header_value_parser: don't encode list separators (GH-100885)Thomas Weißschuh2024-02-172-1/+7
* gh-100985: Consistently wrap IPv6 IP address during CONNECT (GH-100986)Derek Higgins2024-02-172-5/+26
* gh-101384: Add socket timeout to ThreadedVSOCKSocketStreamTest and skip it on...Peter Jiping Xie2024-02-171-0/+3
* gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)Jamie Phan2024-02-175-16/+36
* gh-85294: Handle missing arguments to @singledispatchmethod gracefully (GH-21...Ammar Askar2024-02-162-2/+20