summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44434: Don't call PyThread_exit_thread() explicitly (GH-26758) (GH-26824)Miss Islington (bot)2021-06-211-1/+3
* [3.10] bpo-44087: Disallow instantiation of sqlite3.Statement (GH-26567) (GH...Erlend Egeberg Aasland2021-06-201-1/+1
* bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992)Miss Islington (bot)2021-06-201-0/+3
* bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351) (...Miss Islington (bot)2021-06-1722-38/+61
* bpo-44389: Fix typo in ssl deprecation warning message (GH-26754)Miss Islington (bot)2021-06-171-1/+1
* bpo-42972: _thread.RLock implements the GH protocol (GH-26734)Miss Islington (bot)2021-06-151-1/+10
* [3.10] bpo-44389: Fix deprecation of OP_NO_TLSv1_3 (GH-26700) (GH-26705)Miss Islington (bot)2021-06-131-1/+1
* bpo-44389: Remove duplicate SSL_OP_NO_TLSv1_2 flag (GH-26680)Miss Islington (bot)2021-06-131-1/+1
* [3.10] Add more const modifiers. (GH-26691). (GH-26692)Serhiy Storchaka2021-06-121-2/+2
* bpo-44362: ssl: improve deprecation warnings and docs (GH-26646)Miss Islington (bot)2021-06-111-14/+28
* bpo-44363: Get test_capi passing with address sanitizer (GH-26639)Miss Islington (bot)2021-06-101-0/+5
* bpo-44227: Update bisect docstrings (GH-26548) (GH-26563)Miss Islington (bot)2021-06-062-11/+11
* bpo-44304: Ensure the sqlite3 destructor callback is always called with the G...Miss Islington (bot)2021-06-052-0/+7
* bpo-44304: Fix crash in the sqlite3 module when the GC clears Statement objec...Miss Islington (bot)2021-06-051-7/+4
* bpo-43853: Handle sqlite3_value_text() errors (GH-25422)Miss Islington (bot)2021-06-041-8/+11
* [3.10] bpo-42972: Track sqlite3 statement objects (GH-26475) (GH-26515)Erlend Egeberg Aasland2021-06-034-48/+40
* 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) (GH-26465)Miss Islington (bot)2021-05-312-2/+9
* bpo-42972: Fully implement GC protocol for xxlimited (GH-26451) (GH-26460)Miss Islington (bot)2021-05-312-0/+16
* bpo-42972: Fix sqlite3 traverse/clear functions (GH-26452) (GH-26461)Miss Islington (bot)2021-05-316-41/+44
* bpo-44252: Correctly implement gc support for SSLError objects (GH-26439) (GH...Miss Islington (bot)2021-05-281-2/+1
* [3.10] bpo-42972: Fully support GC for _winapi.Overlapped (GH-26381) (#26430)Ken Jin2021-05-281-2/+46
* bpo-42972: Fully implement GC protocol for functools LRU cache (GH-26423)Miss Islington (bot)2021-05-281-2/+4
* bpo-42972: Fully implement GC protocol for functools keywrapper and partial t...Miss Islington (bot)2021-05-281-22/+37
* bpo-44256: Do not expose _functools._list_elem_type (GH-26416)Miss Islington (bot)2021-05-281-3/+2
* bpo-42972: Fully implement GC protocol for re types (GH-26368) (GH-26414)Miss Islington (bot)2021-05-281-19/+81
* bpo-42972: Fully support GC protocol for _operator heap types (GH-26371) (GH-...Miss Islington (bot)2021-05-271-5/+33
* bpo-42972: Fully support GC for mmap heap types (GH-26373)Miss Islington (bot)2021-05-271-3/+10
* bpo-42972: Fully support GC protocol for _queue.SimpleQueue (GH-26372) (GH-26...Miss Islington (bot)2021-05-271-1/+10
* bpo-42972: Fully implement GC protocol for ssl heap types (GH-26370) (GH-26399)Miss Islington (bot)2021-05-271-28/+45
* bpo-42972: Fully support GC for pyexpat, unicodedata, and dbm/gdbm heap types...Miss Islington (bot)2021-05-275-35/+69
* [3.10] bpo-42972: Fully support GC for hashlib heap types (GH-26374) (GH-26398)Miss Islington (bot)2021-05-274-16/+69
* bpo-42161: mathmodule.c: move _PyLong_GetOne() loop invariant (GH-26391) (GH-...Miss Islington (bot)2021-05-261-8/+12
* bpo-42972: Fully implement GC protocol for arraymodule types (GH-26114)Miss Islington (bot)2021-05-251-2/+11
* bpo-42972: Fully implement GC protocol for sqlite3 heap types (GH-26104)Miss Islington (bot)2021-05-256-72/+190
* 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-26249)Miss Islington (bot)2021-05-191-1/+1
* bpo-44145: Release the GIL around HMAC_Update. (GH-26157)Miss Islington (bot)2021-05-171-2/+4
* bpo-44116: Add GC support to _csv heap types (GH-26074) (GH-26081)Miss Islington (bot)2021-05-121-30/+32
* bpo-40645: Fix ref leaks in _hashopenssl (GH-26079)Miss Islington (bot)2021-05-121-4/+9
* bpo-44089: Allow subclassing of ``csv.Error`` (GH-26008) (GH-26066)Miss Islington (bot)2021-05-121-1/+1
* bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937)Miss Islington (bot)2021-05-071-3/+20
* bpo-36515: Disable unaligned memory access in _sha3 on ARM (GH-25927)Miss Islington (bot)2021-05-051-0/+5
* Eliminate duplicated assignment in _randommodule.c (GH-25904) (GH-25909)Miss Islington (bot)2021-05-051-1/+1
* Add C-API tests (GH-25886) (#25887)Miss Islington (bot)2021-05-041-0/+21
* bpo-38530: Refactor and improve AttributeError suggestions (GH-25776)Dennis Sweeney2021-05-031-0/+87
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-1/+1
* bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)Batuhan Taskaya2021-05-031-1/+0
* bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...Mark Shannon2021-05-021-2/+9
* bpo-43434: Clean up sqlite3.connect() after GH-25818 (GH-25823)Erlend Egeberg Aasland2021-05-021-8/+1