summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Increase minimum Android API level to 24 (#125946)Malcolm Smith2024-10-251-4/+0
* gh-125942: Android: set stdout to `errors="backslashreplace"` (#125943)Malcolm Smith2024-10-252-8/+8
* gh-125245: Fix race condition when importing `collections.abc` (#125415)Sam Gross2024-10-242-3/+3
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-2418-82/+14
* gh-123930: Better error for "from imports" when script shadows module (#123929)Shantanu2024-10-241-110/+215
* gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is t...Javad Shafique2024-10-242-1/+52
* gh-125864: Propagate `pickle.loads()` failures in `InterpreterPoolExecutor` (...Peter Bierma2024-10-242-1/+20
* gh-125842: Fix `sys.exit(0xffff_ffff)` on Windows (#125896)Sam Gross2024-10-241-0/+14
* gh-125859: Fix crash when `gc.get_objects` is called during GC (#125882)Sam Gross2024-10-242-0/+84
* GH-125868: Fix STORE_ATTR_WITH_HINT specialization (GH-125876)Mark Shannon2024-10-242-1/+47
* gh-125614: annotationlib: Fix bug where not all Stringifiers are converted (#...Jelle Zijlstra2024-10-232-4/+70
* gh-125884: Support breakpoint on functions with annotations (#125892)Tian Gao2024-10-232-2/+41
* gh-121938: ctypes: Skip test of _pack_-ed struct with c_int64 on x86 (GH-125877)Petr Viktorin2024-10-231-0/+14
* gh-125665: Update turtledemo docstrings with correct file names (#125691)Wulian2024-10-2319-83/+32
* gh-58032: Deprecate the argparse.FileType type converter (GH-124664)Serhiy Storchaka2024-10-232-26/+49
* gh-80958: unittest: discovery support for namespace packages as start directo...Jacob Walls2024-10-238-16/+117
* gh-125259: Fix error notes removal in enum initialization (GH-125647)Mario Šaško2024-10-222-11/+24
* gh-125710: [Enum] fix hashable<->nonhashable comparisons for member values (G...Ethan Furman2024-10-222-6/+27
* gh-125038: Fix crash after genexpr.gi_frame.f_locals manipulations (#125178)Mikhail Efimov2024-10-222-0/+74
* gh-125355: Rewrite parse_intermixed_args() in argparse (GH-125356)Serhiy Storchaka2024-10-222-82/+73
* GH-125521: Remove `if (true)` from generated output to reduce C compiler warn...Mark Shannon2024-10-221-0/+27
* gh-125811: Remove DeprecationWarnings in test_peg_generator (#125812)Mikhail Efimov2024-10-221-2/+2
* gh-124651: Quote template strings in `venv` activation scripts (GH-124712)Y52024-10-216-21/+134
* gh-53203: Fix test_strptime on Solaris (GH-125785)Serhiy Storchaka2024-10-211-0/+9
* gh-124969: Make locale.nl_langinfo(locale.ALT_DIGITS) returning a string agai...Serhiy Storchaka2024-10-211-9/+21
* gh-125767: Fix pickling and copying of super objects (GH-125781)Serhiy Storchaka2024-10-213-1/+76
* gh-125590: Allow FrameLocalsProxy to delete and pop keys from extra locals (#...Tian Gao2024-10-211-2/+28
* gh-125608: Trigger dictionary watchers when inline values change (#125611)Sam Gross2024-10-211-0/+17
* gh-125519: Improve traceback if `importlib.reload()` is called with a non-mod...Alex Waygood2024-10-212-1/+16
* gh-125378: Trigger a repeat for the full multi-line statement for empty line ...Tian Gao2024-10-192-3/+14
* gh-124984: Enhance `ssl` thread safety (#124993)Peter Bierma2024-10-191-0/+51
* gh-125398: Convert paths in venv activate script when using Git Bash under Wi...Julien2024-10-191-2/+2
* gh-125522: Fix bare except in test_math.testTan (#125544)Irit Katriel2024-10-191-1/+1
* gh-52551: Use wcsftime() to implement time.strftime() on Windows (GH-125658)Serhiy Storchaka2024-10-191-2/+1
* gh-124694: In test_interpreter_pool, Restore the Asyncio Event Loop Policy Du...Eric Snow2024-10-181-0/+13
* Add tests for time.strftime() with invalid format string (GH-125696)Serhiy Storchaka2024-10-181-1/+12
* gh-123610: Added additional types to ctypes/wintypes.py (GH-124086)RUANG (Roy James)2024-10-181-0/+8
* gh-125660: Reject invalid unicode escapes for Python implementation of JSON d...Nice Zombies2024-10-182-4/+15
* gh-125682: Reject non-ASCII digits in the Python implementation of JSON decod...Nice Zombies2024-10-182-1/+7
* gh-125620: Skip check_resource_tracker_death on NetBSD due to long wait for S...Furkan Onder2024-10-181-0/+2
* gh-125600: Only show stale code warning on source code display commands (#125...Tian Gao2024-10-182-4/+39
* gh-125017: Fix crash on premature access to classmethod/staticmethod annotati...Jelle Zijlstra2024-10-171-0/+14
* gh-113570: reprlib.repr does not use builtin __repr__ for reshadowed builtins...George Pittock2024-10-172-5/+70
* gh-52551: Fix encoding issues in strftime() (GH-125193)Serhiy Storchaka2024-10-172-10/+82
* gh-123370: Fix the canvas not clearing after running turtledemo.clock (#123457)Wulian2024-10-171-13/+20
* gh-125542: Deprecate prefix_chars in ArgumentParser.add_argument_group() (GH-...Savannah Ostrowski2024-10-172-0/+33
* GH-99749: Add optional feature to suggest correct names (ArgumentParser) (GH-...Savannah Ostrowski2024-10-172-22/+116
* gh-124694: Add concurrent.futures.InterpreterPoolExecutor (gh-124548)Eric Snow2024-10-166-30/+668
* gh-125620: Remove unnecessary import of subprocess in spawnv_passfds (#125624)Furkan Onder2024-10-161-1/+0
* gh-115382: Fix cross compiles when host and target use same SOABIVincent Fazio2024-10-163-1/+16