summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-125451: Fix deadlock in ProcessPoolExecutor shutdown (#125492)Sam Gross2024-10-162-32/+21
* gh-125584: Require network resource in ``test_urllib2.HandlerTests.test_ftp_e...Michał Górny2024-10-161-0/+1
* gh-124872: Replace enter/exit events with "switched" (#125532)Kirill Podoprigora2024-10-161-41/+46
* Merge remote-tracking branch 'upstream/main'Hugo van Kemenade2024-10-153-7/+82
|\
| * gh-58956: Set f_trace on frames with breakpoints after setting a new breakpoi...Tian Gao2024-10-152-0/+38
| * gh-125115: Pass unknown pdb command line args to script instead of fail (#125...Tian Gao2024-10-152-7/+44
* | Python 3.14.0a1v3.14.0a1Hugo van Kemenade2024-10-151-552/+1117
|/
* gh-125206: Bug in ctypes with old libffi is fixed (#125322)Mikhail Efimov2024-10-151-1/+1
* gh-125522 : add explicit exception types to bare excepts in tests (#125523)Irit Katriel2024-10-1511-38/+38
* gh-100141: Allow pdb to deal with empty file (#125425)Tian Gao2024-10-152-2/+11
* gh-125451: Skip concurrent.futures test_processes_terminate() (#125533)Victor Stinner2024-10-151-0/+3
* gh-125422: Don't set the caller's f_trace if it's botframe (#125427)Tian Gao2024-10-153-2/+30
* gh-125512: Revert "gh-124872: Replace enter/exit events with "switched" (#124...Kirill Podoprigora2024-10-151-45/+44
* gh-125514: fix bug in test_traceback utility. Specify exception types in exce...Irit Katriel2024-10-151-9/+10
* gh-125041: test_zlib: For s390x HW acceleration, only skip checking the compr...Petr Viktorin2024-10-152-12/+19
* gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035)foreignmeloman2024-10-151-1/+1
* gh-53203: Fix strptime() tests for %X on glibc < 2.29 (#125469)Serhiy Storchaka2024-10-151-3/+11
* gh-124958: Revert "gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _P...Thomas Grainger2024-10-144-15/+156
* Fix idlelib typos (#125484)Terry Jan Reedy2024-10-142-15/+18
* gh-124872: Replace enter/exit events with "switched" (#124776)Richard Hansen2024-10-141-44/+45
* gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (...Kirill Podoprigora2024-10-144-146/+15
* gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959)Thomas Grainger2024-10-144-15/+146
* gh-124960: Fixed `barry_as_FLUFL` future flag does not work in new REPL (#124...Wulian2024-10-143-5/+39
* gh-53203: Fix strptime() for %c, %x and %X formats on many locales (GH-125406)Serhiy Storchaka2024-10-143-40/+64
* gh-121798: Add class method Decimal.from_number() (GH-121801)Serhiy Storchaka2024-10-142-0/+38
* gh-121797: Add class method Fraction.from_number() (GH-121800)Serhiy Storchaka2024-10-142-8/+66
* gh-86357: argparse: use str() consistently and explicitly to print choices (G...rindeal2024-10-142-8/+35
* GH-125069: Fix inconsistent joining in `WindowsPath(PosixPath(...))` (#125156)Barney Gale2024-10-132-2/+11
* gh-89967: make WeakKeyDictionary and WeakValueDictionary thread safe (#125325)Kumar Aditya2024-10-132-174/+49
* gh-61698: Use launchctl to detect macOS window manager in tests (#118390)Erlend E. Aasland2024-10-131-15/+9
* gh-86673: Loosen test_ttk.test_identify() requirements (#125335)Erlend E. Aasland2024-10-131-5/+5
* Trivial change: Update comments in activate about what running hash -r does (...Andrew Athan2024-10-131-2/+3
* gh-53203: Fix strptime() for %c and %x formats on many locales (GH-124946)Serhiy Storchaka2024-10-122-34/+129
* gh-125260: Change the default ``gzip.compress()`` mtime to 0 (#125261)Bernhard M. Wiedemann2024-10-122-3/+14