summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-121645: Add PyBytes_Join() function (#121646)Victor Stinner2024-08-301-0/+40
* gh-123446: Fix empty function names in `TypeError`s in `typeobject` (#123470)sobolevn2024-08-301-0/+14
* gh-121485: Always use 64-bit integers for integers bits count (GH-121486)Serhiy Storchaka2024-08-303-6/+95
* gh-123431: Harmonize extension code checks in pickle (GH-123434)Serhiy Storchaka2024-08-292-7/+62
* gh-122136: test_asyncio: Don't fail if the kernel buffers more data than adve...Petr Viktorin2024-08-281-5/+13
* gh-123142: fix too wide source location of GET_ITER/GET_AITER (#123420)Irit Katriel2024-08-285-1/+33
* gh-123344: Add missing ast optimizations for PEP 696 (#123377)Bogdan Romanyuk2024-08-281-9/+95
* gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)Victor Stinner2024-08-282-0/+33
* gh-123363: Show string value of CONTAINS_OP oparg in dis (#123387)Alexandr Mitin2024-08-282-0/+12
* gh-123270: Replaced SanitizedNames with a more surgical fix. (#123354)Jason R. Coombs2024-08-272-71/+84
* gh-123271: Make builtin zip method safe under free-threading (#123272)Pieter Eendebak2024-08-271-0/+41
* gH-80788: remove old weakset workaround for thread safety (#123388)Kumar Aditya2024-08-271-17/+2
* gh-123089: Make weakref.WeakSet safe against concurrent mutations while it is...Kumar Aditya2024-08-271-43/+10
* Further revise idlelib/Icons/README.text (#123364)Terry Jan Reedy2024-08-261-10/+25
* gh-122666: Tests for ast optimizations (#122667)Kirill Podoprigora2024-08-262-1/+213
* gh-123340: Show string value of `IS_OP` oparg in `dis` (#123348)sobolevn2024-08-262-0/+12
* GH-73991: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337)Barney Gale2024-08-262-96/+19
* GH-73991: Make `pathlib.Path.delete()` private. (#123315)Barney Gale2024-08-264-246/+44
* gh-111495: Remove test_capi test_rshift_print() (#123338)Victor Stinner2024-08-261-15/+0
* gh-111495: Add tests for PyNumber C API (#111996)Sergey B Kirpichev2024-08-262-7/+335
* GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)Barney Gale2024-08-263-0/+69
* gh-111495: Add tests for PyTuple C API (#118757)Sergey B Kirpichev2024-08-265-0/+277
* Rewrite idlelib/Icons/README.txt (#123329)Terry Jan Reedy2024-08-261-8/+31
* gh-123177: Fix prompt for wrapped lines in pyrepl (#123324)Matt Wozniski2024-08-252-1/+40
* gh-123177: Deactivate line wrap for Apple Terminal via scape codes in the new...Pablo Galindo Salgado2024-08-251-0/+8
* GH-73991: Add `pathlib.Path.move()` (#122073)Barney Gale2024-08-253-1/+201
* gh-123228: don't leak file descriptors in pyrepl test (#123302)CF Bolz-Tereick2024-08-251-1/+1
* Revert "GH-120754: Add a strace helper and test set of syscalls for o… (#12...Shantanu2024-08-243-279/+33
* GH-120754: Add a strace helper and test set of syscalls for open().read() (#1...Cody Maloney2024-08-243-33/+279
* gh-123228: fix return type for _ReadlineWrapper.get_line_buffer() (#123281)Sergey B Kirpichev2024-08-242-5/+10
* GH-122890: Fix low-level error handling in `pathlib.Path.copy()` (#122897)Barney Gale2024-08-242-16/+90
* GH-73991: Disallow copying directory into itself via `pathlib.Path.copy()` (#...Barney Gale2024-08-232-14/+140
* Fix typo mentioning threads instead of tasks (#123203)Kevin Evans2024-08-231-3/+3
* gh-122272: Guarantee specifiers %F and %C for datetime.strftime to be 0-padde...blhsing2024-08-232-8/+34
* GH-123040: Specialize shadowed `LOAD_ATTR`. (GH-123219)Mark Shannon2024-08-231-31/+33
* gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment to no lo...Bar Harel2024-08-231-0/+32
* gh-122546: Relax SyntaxError check when raising errors on the new REPL (#123233)Sergey B Kirpichev2024-08-222-1/+5
* gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH_HINT`` (gh-123...Donghee Na2024-08-221-0/+18
* gh-123165: correct tests for `dis.dis(func, show_positions=True)` (#123220)Bénédikt Tran2024-08-221-34/+38
* gh-122546: use same filename for different exceptions in new repl (#123217)Sergey B Kirpichev2024-08-223-10/+12
* gh-122712: Test `CALL_ALLOC_AND_ENTER_INIT` handles reassignment of `__code__...mpage2024-08-221-7/+32
* gh-123142: Fix too wide source locations in tracebacks of exceptions from bro...Irit Katriel2024-08-216-20/+117
* gh-123165: make `dis` functions render positions on demand (#123168)Bénédikt Tran2024-08-212-29/+152
* Fix typos in comments (#123201)Wulian2024-08-217-8/+8
* GH-123185: Check for `NULL` after calling `_PyEvalFramePushAndInit` (GH-123194)Mark Shannon2024-08-211-0/+13
* gh-85110: Preserve relative path in URL without netloc in urllib.parse.urluns...Serhiy Storchaka2024-08-212-9/+36
* gh-123084: Turn `shutil.ExecError` into a deprecated alias of `RuntimeError` ...Peter Bierma2024-08-212-4/+16
* gh-122981: Fix inspect.getsource() for generated classes with Python base cla...Serhiy Storchaka2024-08-203-4/+64
* gh-123048: Fix missing source location in pattern matching code (#123167)Irit Katriel2024-08-201-0/+19
* gh-122909: Pass ftp error strings to URLError constructor (#122913)Jeremy Hylton2024-08-202-2/+23