summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.10.19v3.10.19Pablo Galindo2025-10-091-1/+1
* [3.10] gh-139310: skip `test_aead_aes_gcm` for Linux kernel between 6.16.0 an...Miss Islington (bot)2025-10-092-1/+17
* [3.10] gh-139700: Check consistency of the zip64 end of central directory rec...Miss Islington (bot)2025-10-072-23/+110
* [3.10] gh-135661: Fix CDATA section parsing in HTMLParser (GH-135665) (GH-137...Miss Islington (bot)2025-10-072-8/+99
* [3.10] gh-139400: Make sure that parent parsers outlive their subparsers in `...Sebastian Pipping2025-10-061-0/+36
* [3.10] gh-135374: Adjust test for setuptools' replacement of distutils (GH-13...Miss Islington (bot)2025-09-292-7/+33
* [3.10] gh-118350: Fix support of elements "textarea" and "title" in HTMLParse...Serhiy Storchaka2025-09-132-5/+111
* [3.10] gh-130577: tarfile now validates archives to ensure member offsets are...Victor Stinner2025-09-022-0/+159
* [3.10] gh-135661: Fix parsing attributes with whitespaces around the "=" sepa...Miss Islington (bot)2025-07-222-14/+18
* [3.10] gh-135661: Fix parsing start and end tags in HTMLParser according to t...Miss Islington (bot)2025-07-123-120/+195
* [3.10] gh-102555: Fix comment parsing in HTMLParser according to the HTML5 st...Miss Islington (bot)2025-07-122-3/+47
* [3.10] gh-135462: Fix quadratic complexity in processing special input in HTM...Serhiy Storchaka2025-07-032-23/+113
* [3.10] gh-135374: Update the bundled copy of setuptools to 79.0.1 (#135398)Łukasz Langa2025-06-113-1/+1
* Python 3.10.18v3.10.18Pablo Galindo2025-06-031-1/+1
* [3.10] gh-135034: Normalize link targets in tarfile, add `os.path.realpath(st...T. Wouters2025-06-037-130/+855
* [3.10] gh-128840: Fix parsing long IPv6 addresses with embedded IPv4 address ...Miss Islington (bot)2025-06-032-6/+23
* [3.10] gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses...Miss Islington (bot)2025-06-032-12/+51
* [3.10] gh-128840: Limit the number of parts in IPv6 address parsing (GH-12884...Miss Islington (bot)2025-06-032-2/+20
* [3.10] gh-87799: Improve the textual representation of IPv4-mapped IPv6 addre...Miss Islington (bot)2025-06-032-1/+44
* Revert "Fix a glaring error in the logic backport of posixpath."Thomas Wouters2025-06-031-1/+3
* Fix a glaring error in the logic backport of posixpath.Thomas Wouters2025-06-031-3/+1
* [3.10] gh-134062: Fix hash collisions in IPv4Network and IPv6Network (GH-1340...Miss Islington (bot)2025-06-022-1/+29
* [3.10] gh-133767: Fix use-after-free in the unicode-escape decoder with an er...Serhiy Storchaka2025-06-022-9/+66
* [3.10] gh-126500: test_ssl: Don't stop ThreadedEchoServer on OSError in Conne...Miss Islington (bot)2025-06-011-5/+12
* Python 3.10.17v3.10.17Pablo Galindo2025-04-081-1/+1
* [3.10] gh-80222: Fix email address header folding with long quoted-string (GH...R. David Murray2025-04-032-1/+45
* [3.10] gh-121284: Fix email address header folding with parsed encoded-word (...Petr Viktorin2025-04-032-5/+30
* [3.10] gh-105704: Disallow square brackets (`[` and `]`) in domain names for ...Miss Islington (bot)2025-02-192-3/+54
* [3.10] gh-119511: Fix a potential denial of service in imaplib (GH-119514) (#...Miss Islington (bot)2025-02-192-1/+24
* [3.10] gh-107262: Update Tkinter tests for Tcl/Tk 8.6.14 (GH-119322) (#130274)Miss Islington (bot)2025-02-192-9/+22
* [3.10] gh-119461: Fix ThreadedVSOCKSocketStreamTest (GH-129171) (#129440)Miss Islington (bot)2025-02-131-5/+12
* Python 3.10.16v3.10.16Pablo Galindo2024-12-031-1/+1
* [3.10] gh-122792: Make IPv4-mapped IPv6 address properties consistent with IP...Miss Islington (bot)2024-12-032-5/+46
* [3.10] gh-103848: Adds checks to ensure that bracketed hosts found by urlspli...Victor Stinner2024-12-022-1/+41
* [3.10] gh-113027: Fix test_variable_tzname in test_email (GH-113821) (#126438)Petr Viktorin2024-11-051-0/+2
* [3.10] gh-124651: Quote template strings in `venv` activation scripts (GH-124...Victor Stinner2024-11-046-20/+133
* [3.10] gh-125041: gh-90781: test_zlib: For s390x HW acceleration, skip checki...Petr Viktorin2024-10-221-2/+19
* [3.10] gh-107902: gh-108948: Don't test setting suid/sgid/sticky on systems t...Petr Viktorin2024-10-221-15/+39
* [3.10] gh-100005: Skip test_script_as_dev_fd() on FreeBSD (GH-100006) (#125109)Miss Islington (bot)2024-10-222-1/+4
* [3.10] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (...Miss Islington (bot)2024-10-221-3/+7
* Python 3.10.15v3.10.15Pablo Galindo2024-09-071-1/+1
* [3.10] [CVE-2023-27043] gh-102988: Reject malformed addresses in email.parsea...Petr Viktorin2024-09-062-17/+338
* [3.10] gh-123693: Use platform-agnostic semantics when processing zipfile.Pat...Jason R. Coombs2024-09-052-4/+1
* [3.10] gh-123270: Replaced SanitizedNames with a more surgical fix. (GH-12335...Jason R. Coombs2024-09-042-67/+78
* [3.10] gh-123067: Fix quadratic complexity in parsing "-quoted cookie values ...Miss Islington (bot)2024-09-042-26/+46
* [3.10] gh-67693: Fix urlunparse() and urlunsplit() for URIs with path startin...Serhiy Storchaka2024-09-042-4/+68
* [3.10] gh-121650: Encode newlines in headers, and verify headers are sound (G...Łukasz Langa2024-09-046-4/+121
* [3.10] gh-121285: Remove backtracking when parsing tarfile headers (GH-121286...Seth Michael Larson2024-09-032-38/+109
* [3.10] gh-122905: Sanitize names in zipfile.Path. (GH-122906) (#123160)Jason R. Coombs2024-08-222-1/+77
* [3.10] gh-122133: Rework pure Python socketpair tests to avoid use of importl...Miss Islington (bot)2024-08-022-77/+64