summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl/debughelpers.c
Commit message (Expand)AuthorAgeFilesLines
* gh-142438: Added missing GIL release in _PySSL_keylog_callback when keylog_bi...AZero132025-12-111-1/+3
* gh-137583: Only lock the SSL context, not the SSL socket (GH-137588)Peter Bierma2025-08-101-1/+0
* gh-134698: Hold a lock when the thread state is detached in `ssl` (GH-134724)Peter Bierma2025-07-251-6/+9
* gh-131942: Use the Python-specific `Py_DEBUG` macro rather than `_DEBUG` in W...Xuehai Pan2025-05-081-1/+1
* gh-131423: Update to OpenSSL 3.0.16. (GH-131839)Steve Dower2025-03-281-0/+7
* gh-111178: fix UBSan failures in `Modules/_ssl.c` (GH-130719)Bénédikt Tran2025-03-171-4/+14
* gh-127350: Add Py_fopen() and Py_fclose() functions (#127821)Victor Stinner2025-01-061-2/+2
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-3/+3
* gh-105927: _ssl uses _PyWeakref_GET_REF() (#105965)Victor Stinner2023-06-211-5/+5
* GH-103092: isolate `_ssl` (#104725)Kumar Aditya2023-05-221-11/+3
* gh-102192: remove redundant exception fields from ssl module socket (#102466)Irit Katriel2023-03-161-4/+3
* gh-99300: Use Py_NewRef() in Modules/ directory (#99468)Victor Stinner2022-11-141-8/+4
* bpo-42333: Port _ssl extension to multiphase initialization (PEP 489) (GH-23253)Christian Heimes2021-04-171-3/+3
* bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)Christian Heimes2021-04-171-4/+0
* bpo-43577: Fix deadlock with SSLContext._msg_callback and sni_callback (GH-24...Christian Heimes2021-03-211-0/+1
* bpo-41056: Fix a NULL pointer dereference on MemoryError within the ssl modul...Gregory P. Smith2020-06-201-6/+6
* bpo-34271: Fix compatibility with 1.0.2 (GH-13728)Christian Heimes2019-06-031-1/+10
* bpo-34271: Add ssl debugging helpers (GH-10031)Christian Heimes2019-05-311-0/+213