aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* gh-110190: Fix ctypes structs with array on SPARC (GH-118233)gentoo-3.9.20_p1Jakub Kulík2024-09-191-1/+1
* gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)Miss Islington (bot)2024-09-191-1/+1
* [3.11] gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959) (#113167)Diego Russo2024-09-193-207/+208
* [3.11] gh-110190: Temporarily skip new test introduced in gh-112604 on PPC64L...Łukasz Langa2024-09-191-45/+52
* [3.11] gh-62260: Fix ctypes.Structure subclassing with multiple layers (GH-13...Serhiy Storchaka2024-09-193-6/+69
* [3.11] gh-110190: Fix ctypes structs with array on Arm (#112604) (#112766)Diego Russo2024-09-193-20/+196
* Disable system site-packages via GENTOO_CPYTHON_BUILD varMichał Górny2024-09-191-0/+1
* gh-124213: Skip tests failing with ``--suppress-sync=true`` when inside syste...Michał Górny2024-09-193-4/+19
* bpo-41369: Finish updating the vendored libmpdec to version 2.5.1 (GH-24962)gentoo-3.9.20Antoine Pitrou2024-09-072-3/+3
* [3.11] gh-115243: Fix crash in deque.index() when the deque is concurrently m...Miss Islington (bot)2024-09-072-1/+7
* test_lzma: Skip tests requiring extra-filtersMichał Górny2024-09-071-0/+19
* gh-99418: Make urllib.parse.urlparse enforce that a scheme must begin with an...Miss Islington (bot)2024-09-073-1/+21
* gh-101857: Allow xattr detection on musl libc (#101858)Sam James2024-09-072-1/+3
* [3.10] GH-99086: Fix -Wstrict-prototypes, -Wimplicit-function-declara… (#99...Sam James2024-09-073-52/+63
* Skip sched/priority testsSam James2024-09-071-0/+2
* Skip tests which interact with invalid UTF-8 filesSam James2024-09-079-0/+13
* gh-99086: Build: Fix -Wimplicit-int in PTHREAD_SCOPE_SYSTEM check (#99085)Sam James2024-09-073-2/+3
* gh-79096: Protect cookie file created by {LWP,Mozilla}CookieJar.save() (GH-93...Pascal Wittmann2024-09-073-2/+34
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2024-09-076-32/+199
* bpo-45433: Do not link libpython against libcryptMike Gilbert2024-09-071-0/+3
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)Christian Heimes2024-09-076-17/+76
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2024-09-071-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2024-09-071-0/+1
* Blacklist test_pickletools from __all__ test as it imports numpyMichał Górny2024-09-071-0/+2
* test.support.unlink: ignore PermissionErrorMike Gilbert2024-09-071-1/+1
* Install shared libs in LIBDESTMike Gilbert2024-09-071-3/+2
* distutils: make -OO enable both opt-1 and opt-2 optimizationMichał Górny2024-09-072-10/+10
* Disable nisMike Gilbert2024-09-071-1/+0
* Improve distutils C++ supportMike Gilbert2024-09-076-52/+80
* setup.py: exit with non-zero status on failureMike Gilbert2024-09-071-0/+5
* Override libdirMike Gilbert2024-09-071-14/+10
* Disable modules and SSLMike Gilbert2024-09-071-2/+13
* Install libpythonX.Y.a in /usr/lib instead of /usr/lib/pythonX.Y/configMike Gilbert2024-09-074-14/+4
* Python 3.9.20v3.9.20Łukasz Langa2024-09-0621-61/+206
* [3.9] [CVE-2023-27043] gh-102988: Reject malformed addresses in email.parsead...Petr Viktorin2024-09-065-21/+371
* [3.9] gh-123678: Upgrade libexpat 2.6.3 (#123711)Seth Michael Larson2024-09-054-15/+36
* [3.9] gh-67693: Fix urlunparse() and urlunsplit() for URIs with path starting...Serhiy Storchaka2024-09-053-4/+70
* [3.9] gh-112275: Fix HEAD_LOCK deadlock in child process after fork (GH-11233...Łukasz Langa2024-09-042-1/+4
* [3.9] gh-119690: Fixes buffer type confusion in _winapi.CreateFile and _winap...Miss Islington (bot)2024-09-042-2/+4
* [3.9] gh-123067: Fix quadratic complexity in parsing "-quoted cookie values w...Miss Islington (bot)2024-09-043-26/+47
* [3.9] gh-123270: Replaced SanitizedNames with a more surgical fix. (GH-123354...Jason R. Coombs2024-09-043-2/+87
* [3.9] gh-121285: Remove backtracking when parsing tarfile headers (GH-121286)...Seth Michael Larson2024-09-043-38/+111
* [3.9] gh-121650: Encode newlines in headers, and verify headers are sound (GH...Łukasz Langa2024-09-0410-4/+162
* [3.9] gh-122133: Rework pure Python socketpair tests to avoid use of importli...Miss Islington (bot)2024-08-022-77/+64
* [3.9] gh-122133: Authenticate socket connection for `socket.socketpair()` fal...Miss Islington (bot)2024-07-303-3/+147
* [3.9] gh-121957: Emit audit events for python -i and python -m asyncio (GH-12...Łukasz Langa2024-07-225-0/+34
* [3.9] gh-112769: test_zlib: test_zlib: Fix comparison of ZLIB_RUNTIME_VERSION...Ned Deily2024-05-302-12/+18
* [3.9] gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488) (GH-118741)Steve Dower2024-05-246-3/+107
* [3.9] gh-114572: Fix locking in cert_store_stats and get_ca_certs (#118109)Seth Michael Larson2024-05-102-3/+92
* [3.9] gh-113171: gh-65056: Fix "private" (non-global) IP address ranges (GH-1...Petr Viktorin2024-05-076-21/+195