summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-44050: Extension modules can share state when they don't support su...Łukasz Langa2021-10-051-0/+24
* [3.9] Remove trailing spaces (GH-28710)Serhiy Storchaka2021-10-033-8/+8
* bpo-44687: Ensure BufferedReader objects with unread buffers can peek even wh...Miss Islington (bot)2021-10-011-3/+5
* [3.9] hashlib: Fix old message about unicode objects. (GH-28653) (GH-28679)Miss Islington (bot)2021-10-011-1/+1
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Miss Islington (bot)2021-09-291-0/+3
* bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595) ...Miss Islington (bot)2021-09-281-8/+3
* [3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)Łukasz Langa2021-09-225-7/+7
* bpo-45228: Fix stack buffer overflow in parsing J1939 address (GH-28404)Miss Islington (bot)2021-09-171-8/+8
* [3.10] bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231). ...Miss Islington (bot)2021-09-131-0/+1
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Miss Islington (bot)2021-09-091-0/+2
* Remove documentation for non-existing socket class attributes (GH-28029) (GH-...Miss Islington (bot)2021-09-071-3/+0
* [3.9] bpo-45060: Get rid of few uses of the equality operators with None (GH-...Serhiy Storchaka2021-09-012-4/+4
* bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries wh...Miss Islington (bot)2021-08-301-3/+26
* bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28032)Miss Islington (bot)2021-08-2920-177/+1368
* Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-...Miss Islington (bot)2021-08-271-1/+1
* [3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to co...Erlend Egeberg Aasland2021-08-251-10/+24
* [3.9] bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904) (GH-27910)Łukasz Langa2021-08-231-8/+16
* [3.9] bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `...Erlend Egeberg Aasland2021-08-061-3/+10
* [3.9] bpo-43853: Handle sqlite3_value_text() errors (GH-25422). (GH-27627)Erlend Egeberg Aasland2021-08-061-11/+16
* [3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)Łukasz Langa2021-07-304-4/+4
* [3.9] bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (...Erlend Egeberg Aasland2021-07-291-7/+22
* bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (...Miss Islington (bot)2021-07-281-1/+1
* bpo-44608: Fix memory leak in _tkinter._flatten() (GH-27107)Miss Islington (bot)2021-07-141-1/+3
* bpo-44630: Fix assertion errors in csv module (GH-27127)Miss Islington (bot)2021-07-131-4/+8
* [3.9] bpo-44558: Match countOf `is`/`==` treatment to c (GH-27007). (GH-27055)Dong-hee Na2021-07-072-4/+4
* bpo-44563: Fix error handling in tee.fromiterable() (GH-27020) (GH-27042)Miss Islington (bot)2021-07-051-9/+10
* bpo-41621: Document defaultdict's default_factory parameter (GH-21945)Miss Islington (bot)2021-06-221-1/+1
* bpo-44434: Don't call PyThread_exit_thread() explicitly (GH-26758) (GH-26825)Victor Stinner2021-06-211-1/+4
* bpo-44363: Get test_capi passing with address sanitizer (GH-26639)Miss Islington (bot)2021-06-101-0/+5
* bpo-44285: getpath.c: Assert that env_file is NULL during an error check (GH-...Miss Islington (bot)2021-06-021-0/+1
* bpo-44263: Fix _decimal and _testcapi GC protocol (GH-26464)Miss Islington (bot)2021-05-312-2/+9
* Fix compiler warning for misleading guarding in the tkinter (GH-26244) (GH-26...Miss Islington (bot)2021-05-191-6/+11
* Fix compiler warning in the xml module (GH-26245) (GH-26248)Miss Islington (bot)2021-05-191-1/+1
* [3.9] bpo-44145: Release the GIL around HMAC_Update. (GH-26157) (GH-26188)Miss Islington (bot)2021-05-171-2/+4
* [3.9] bpo-36515: Disable unaligned memory access in _sha3 on ARM (GH-25927) (...Miss Islington (bot)2021-05-061-0/+5
* [3.9] bpo-42083: Allow NULL doc in PyStructSequence_NewType (#25896)Petr Viktorin2021-05-041-0/+21
* bpo-43434: Move sqlite3.connect audit event to sqlite3.Connection.__init__ (G...Erlend Egeberg Aasland2021-05-022-9/+5
* bpo-32745: Fix a regression in the handling of ctypes' c_wchar_p type (GH-872...Miss Islington (bot)2021-05-021-1/+2
* bpo-43472: Ensure PyInterpreterState_New audit events are raised when called ...Miss Islington (bot)2021-04-281-1/+1
* Fix thread locks in zlib module may go wrong in rare case (#22130)Ma Lin2021-04-261-4/+4
* [3.9] bpo-43920: Make load_verify_locations(cadata) error message consistent ...Christian Heimes2021-04-231-7/+16
* bpo-38822: Check specifically for a drive, not just a colon (GH-25540)Miss Islington (bot)2021-04-221-2/+2
* bpo-38822: Fixed os.stat failing on inaccessible directories. (GH-25527)Miss Islington (bot)2021-04-221-2/+21
* bpo-26227: Fixes decoding of host names on Windows from ANSI instead of UTF-8...Miss Islington (bot)2021-04-211-1/+1
* [3.9] bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899) (GH-25...Christian Heimes2021-04-171-0/+5
* [3.9] bpo-43799: OpenSSL 3.0.0: declare OPENSSL_API_COMPAT 1.1.1 (GH-25329) (...Miss Islington (bot)2021-04-132-24/+24
* [3.9] bpo-43788: Generate version specific _ssl_data.h (GH-25300) (GH-25310)Christian Heimes2021-04-093-0/+14966
* bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)Miss Islington (bot)2021-04-091-0/+8
* bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-2...Miss Islington (bot)2021-04-091-0/+7
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-072-1/+95