summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-123823: Fix test_posix for unsupported posix_fallocate on NetBSD (#123824)Furkan Onder2024-09-091-1/+3
* gh-122311: Improve and unify pickle errors (GH-122771)Serhiy Storchaka2024-09-092-149/+154
* gh-123843: Remove broken links to the Zope DateTimeWiki (#123846)Adam Turner2024-09-093-11/+8
* gh-121039: add Floats/ComplexesAreIdenticalMixin to test.support.testcase (GH...Sergey B Kirpichev2024-09-086-120/+65
* gh-122792: Make IPv4-mapped IPv6 address properties consistent with IPv4 (GH-...Seth Michael Larson2024-09-072-0/+39
* gh-120221: Support KeyboardInterrupt in asyncio REPL (#123795)Łukasz Langa2024-09-067-21/+131
* gh-123321: Make Parser/myreadline.c locking safe in free-threaded build (#123...Sam Gross2024-09-061-2/+1
* gh-117657: Fix file descriptor race in test_socket.py (#123697)Nadeshiko Manju2024-09-061-8/+9
* gh-119310: Fix encoding when reading old history file (#121779)aorcajo2024-09-063-6/+56
* gh-123780: Make test_pkgutil clean up `spam` module (GH-123036)Malcolm Smith2024-09-061-4/+10
* gh-119034, REPL: Change page up/down keys to search in history (#123607)Victor Stinner2024-09-064-4/+111
* gh-111201: fix auto-indent in pyrepl for muliple pound comments (#123196)Arnon Yaari2024-09-062-1/+19
* gh-123275: Add tests for `PYTHON_GIL=1` and `-Xgil=1` (gh-123754)Peter Bierma2024-09-061-6/+16
* gh-123476: Add support for TCP_QUICKACK socket setting to Windows (#123478)nkinnan2024-09-051-1/+25
* gh-123240: Raise input audit events in the new REPL (#123274)sobolevn2024-09-051-2/+6
* gh-123465: Allow Py_RELATIVE_OFFSET for __*offset__ members (GH-123474)Petr Viktorin2024-09-052-43/+116
* gh-97588: Move ctypes struct/union layout logic to Python (GH-123352)Petr Viktorin2024-09-053-5/+366
* gh-123321: Fix Parser/myreadline.c to prevent a segfault during a multi-threa...Bar Harel2024-09-041-1/+27
* gh-118710: Make IPv*Address.version & max_prefixlen available on the class (G...Nice Zombies2024-09-042-64/+47
* gh-107954, PEP 741: Add PyInitConfig_AddModule() function (#123668)Victor Stinner2024-09-041-0/+3
* gh-107954, PEP 741: Adjust Python initialization config (#123663)Victor Stinner2024-09-041-1/+0
* gh-121423: Improve import time of `socket` (#121424)Wulian2024-09-041-101/+107
* gh-122989: Replace duplicate “self.policy.linesep” with “linesep” (#...Damien2024-09-041-1/+1
* gh-123572: Fix key codes in VK_MAP in windows_console.py (#122692)devdanzin2024-09-031-4/+5
* gh-121804: always show error location for SyntaxError's in basic repl (#123202)Sergey B Kirpichev2024-09-031-0/+13
* gh-107954, PEP 741: Add PyInitConfig C API (#123502)Victor Stinner2024-09-031-10/+36
* gh-123430: Add dark mode support to pages generated by http.server (#123475)Yorik Hansen2024-09-031-0/+6
* gh-121313: multiprocessing: simplify by increasing the connection buffer size...Inada Naoki2024-09-031-16/+4
* Fix typos in warnings, docstrings, comments and text files (#123597)abstractee2024-09-038-8/+8
* gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)Victor Stinner2024-09-023-61/+445
* GH-119518: Stop interning strings in pathlib GH-123356)Barney Gale2024-09-022-11/+1
* gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses (GH-12...Bénédikt Tran2024-09-022-12/+51
* gh-101525: Skip test_gdb if the binary is relocated by BOLT. (gh-118572)Donghee Na2024-09-023-0/+17
* gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563)sobolevn2024-09-022-1/+48
* gh-118761: Speedup pathlib import by deferring shutil (#123520)Daniel Hollas2024-09-011-2/+4
* gh-123341: Support `tkinter.Event` type subcript (#123353)Yoda2024-09-012-0/+8
* gh-91126: Docs and tests for slotted dataclasses with `__init_subclass__` (#1...sobolevn2024-09-011-0/+32
* gh-123494: Improve documentation for ``webbrowser`` return types (#123495)Aarni Koskela2024-09-011-0/+3
* gh-115238: Remove a redundant f-string in graphlib (#115239)Luka2024-09-011-1/+1
* gh-121285: Remove backtracking when parsing tarfile headers (GH-121286)Seth Michael Larson2024-08-312-35/+110
* gh-123309: Remove check for redefined memo entry in pickletools.dis() (GH-123...Serhiy Storchaka2024-08-312-24/+10
* gh-76960: Fix urljoin() and urldefrag() for URIs with empty components (GH-12...Serhiy Storchaka2024-08-312-52/+135
* gh-123309: Add more tests for the pickletools module (GH-123355)Serhiy Storchaka2024-08-311-0/+310
* gh-108172: do not override OS preferred browser if it is a super-string of a ...Oded Arbel2024-08-311-1/+1
* gh-121313: Limit the reading size from pipes to their default buffer size on ...Alexander P.2024-08-311-3/+18
* gh-123440: Improve error message for `except as` used with not a name (#123442)sobolevn2024-08-301-0/+47
* gh-122854: Add Py_HashBuffer() function (#122855)Victor Stinner2024-08-301-0/+10
* 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