..
_blake2
bpo-33164: blake2: Fix Coverity scan (GH-25060)
2021-03-29 21:36:39 -07:00
_ctypes
[3.9] gh-91118: Fix docstrings that do not honor --without-doc-strings (GH-31769) ( #91664 )
2022-04-19 12:58:34 -07:00
_decimal
bpo-44263: Fix _decimal and _testcapi GC protocol (GH-26464)
2021-05-31 04:33:31 -07:00
_io
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
2022-03-04 10:34:14 -08:00
_multiprocessing
_sha3
[3.9] gh-98517: Fix buffer overflows in _sha3 module (GH-98519) ( #98526 )
2022-10-28 12:08:06 +02:00
_sqlite
[3.9] gh-80254: Disallow recursive usage of cursors in sqlite3 converters ( #92278 )
2022-05-05 12:47:58 -07:00
_ssl
bpo-43577: Fix deadlock with SSLContext._msg_callback and sni_callback (GH-24957)
2021-03-21 08:39:15 -07:00
_xxtestfuzz
cjkcodecs
[3.9] gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out of bounds (gh-111695) (gh-111780)
2023-11-06 18:44:50 +01:00
clinic
[3.9] gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) (GH-115623) (GH-116272)
2024-03-07 00:03:30 +01:00
expat
[3.9] gh-131809: Upgrade vendored expat to 2.7.1 (GH-132192) ( #132242 )
2025-04-08 11:36:44 +02:00
_abc.c
_asynciomodule.c
[3.9] bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777) (GH-30785)
2022-01-22 04:52:24 -08:00
_bisectmodule.c
_bz2module.c
_codecsmodule.c
bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape" codec (GH-28944) (GH-28953)
2021-10-14 21:23:52 +03:00
_collectionsmodule.c
bpo-41621: Document defaultdict's default_factory parameter (GH-21945)
2021-06-22 07:42:41 -07:00
_contextvarsmodule.c
_cryptmodule.c
closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH-27394)
2021-09-29 13:47:58 -07:00
_csv.c
[3.9] bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (GH-28832) (GH-28835)
2021-10-10 01:13:44 +09:00
_curses_panel.c
[3.9] bpo-41604: Don't decrement the reference count of the previous user_ptr when set_panel_usertpr fails (GH-21933). (GH-24403)
2021-01-31 21:44:31 +02:00
_cursesmodule.c
bpo-46000: Improve NetBSD curses compatibility (GH-29947) (GH-30023)
2021-12-10 13:21:19 +02:00
_datetimemodule.c
Check result of utc_to_seconds and skip fold probe in pure Python (GH-91582) (GH-92748)
2022-05-16 17:33:01 +02:00
_dbmmodule.c
_elementtree.c
[3.9] gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) (GH-115623) (GH-116272)
2024-03-07 00:03:30 +01:00
_functoolsmodule.c
_gdbmmodule.c
[3.9] bpo-45060: Get rid of few uses of the equality operators with None (GH-28087). (GH-28093)
2021-09-01 09:51:01 +03:00
_hashopenssl.c
bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH-32076)
2022-03-23 13:58:02 -07:00
_heapqmodule.c
_json.c
_localemodule.c
_lsprof.c
_lzmamodule.c
_math.c
[3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)
2021-09-22 17:32:04 +02:00
_math.h
_opcode.c
_operator.c
[3.9] bpo-44558: Match countOf is/== treatment to c (GH-27007). (GH-27055)
2021-07-07 23:55:22 +09:00
_peg_parser.c
_pickle.c
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
_posixsubprocess.c
_queuemodule.c
_randommodule.c
_scproxy.c
_sre.c
bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)
2022-03-21 04:28:31 -07:00
_ssl.c
[3.9] gh-114572: Fix locking in cert_store_stats and get_ca_certs ( #118109 )
2024-05-10 13:46:12 +02:00
_ssl_data.h
_ssl_data_111.h
[3.9] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) (GH-105200) ( #105205 )
2023-06-05 17:41:51 +02:00
_ssl_data_300.h
[3.9] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) (GH-105200) ( #105205 )
2023-06-05 17:41:51 +02:00
_stat.c
_statisticsmodule.c
_struct.c
_testbuffer.c
_testcapimodule.c
[3.9] gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99613) (GH-107224) ( #107231 )
2023-08-22 20:25:15 +02:00
_testimportmultiple.c
_testinternalcapi.c
_testmultiphase.c
[3.9] bpo-44050: Extension modules can share state when they don't support sub-interpreters. (GH-27794) (GH-28741)
2021-10-05 22:30:25 +02:00
_threadmodule.c
[3.9] GH-100892: Fix race in clearing threading.local (GH-100922) ( #100939 )
2023-01-20 23:21:40 +01:00
_tkinter.c
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
_tracemalloc.c
bpo-46280: Fix tracemalloc_copy_domain() (GH-30591)
2022-01-13 20:35:21 -08:00
_uuidmodule.c
_weakref.c
_winapi.c
[3.9] gh-119690: Fixes buffer type confusion in _winapi.CreateFile and _winapi.CreateNamedPipe audit events (GH-119735) ( #123679 )
2024-09-04 18:22:50 +02:00
_xxsubinterpretersmodule.c
bpo-43472: Ensure PyInterpreterState_New audit events are raised when called through _xxsubinterpreters module (GH-25506) (GH-25508)
2021-04-28 18:20:40 +02:00
_zoneinfo.c
[3.9] bpo-46383: Fix signature of zoneinfo module_free function (GH-3… (GH-30611)
2022-01-22 03:05:55 -08:00
addrinfo.h
arraymodule.c
[3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)
2021-09-22 17:32:04 +02:00
atexitmodule.c
audioop.c
[3.9] bpo-46513: Remove AC_C_CHAR_UNSIGNED / __CHAR_UNSIGNED__ (GH-30851) (GH-30915)
2022-01-26 12:20:39 +01:00
binascii.c
bpo-38256: Fix binascii.crc32 large input. (GH-32000) (GH-32013) (GH-32015)
2022-03-20 23:34:45 -07:00
cmathmodule.c
config.c.in
errnomodule.c
faulthandler.c
[3.9] bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961). (GH-31975)
2022-03-18 13:33:03 +00:00
fcntlmodule.c
gc_weakref.txt
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
gcmodule.c
gh-92036: Fix gc_fini_untrack() (GH-92037)
2022-05-04 03:25:33 -07:00
getaddrinfo.c
getbuildinfo.c
bpo-45532: Replace 'default' with 'main' as default in sys.version (GH-29100)
2021-10-20 10:45:06 -07:00
getnameinfo.c
getpath.c
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
grpmodule.c
hashlib.h
[3.9] hashlib: Fix old message about unicode objects. (GH-28653) (GH-28679)
2021-10-01 06:28:19 -07:00
itertoolsmodule.c
[3.9] bpo-46728: fix docstring of combinations_with_replacement for consistency (GH-31293). (GH-31356)
2022-02-15 21:22:01 +09:00
ld_so_aix.in
main.c
[3.9] gh-121957: Emit audit events for python -i and python -m asyncio (GH-122120)
2024-07-22 13:49:47 +02:00
makesetup
bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)
2021-10-22 11:29:52 -07:00
makexp_aix
mathmodule.c
bpo-46018: Ensure that math.expm1 does not raise on underflow (GH-29997)
2021-12-09 10:55:53 -08:00
md5module.c
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)
2021-02-12 03:18:38 -08:00
mmapmodule.c
nismodule.c
ossaudiodev.c
gh-91734: Fix ossaudio support on Solaris (GH-91735)
2022-04-20 04:09:01 -07:00
overlapped.c
[3.9] gh-116773: Fix overlapped memory corruption crash (GH-116774) (GH-117080)
2024-03-27 16:24:46 +01:00
parsermodule.c
posixmodule.c
[3.9] gh-112275: Fix HEAD_LOCK deadlock in child process after fork (GH-112336) ( #123688 )
2024-09-04 22:41:03 +02:00
posixmodule.h
[3.9] bpo-41498: Fix build on platforms without sigset_t (GH-29770) (GH-29774)
2021-11-25 13:02:54 +01:00
pwdmodule.c
pyexpat.c
[3.9] gh-139400: Make sure that parent parsers outlive their subparsers in pyexpat (GH-139403) (GH-139614)
2025-10-07 13:52:10 +02:00
readline.c
bpo-42819, readline: Disable bracketed paste (GH-24108) (GH-24545)
2021-02-16 01:18:07 +01:00
README
resource.c
rotatingtree.c
rotatingtree.h
selectmodule.c
[3.9] bpo-41857: mention timeout argument units in select.poll() and select.depoll() doc-strings (GH-22406)
2022-01-21 11:37:39 +02:00
Setup
sha1module.c
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
sha256module.c
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)
2021-02-12 03:18:38 -08:00
sha512module.c
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-24507)
2021-02-12 03:18:38 -08:00
signalmodule.c
[3.9] bpo-41498: Fix build on platforms without sigset_t (GH-29770) (GH-29774)
2021-11-25 13:02:54 +01:00
socketmodule.c
[3.9] bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503) (GH-112600)
2024-01-17 14:47:26 +01:00
socketmodule.h
spwdmodule.c
sre.h
bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)
2022-03-21 04:28:31 -07:00
sre_constants.h
sre_lib.h
bpo-39943: Fix MSVC warnings in sre extension (GH-20508)
2021-03-14 05:17:26 -07:00
symtablemodule.c
syslogmodule.c
[3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)
2021-10-07 06:17:05 -07:00
termios.c
testcapi_long.h
timemodule.c
[3.9] Remove trailing spaces (GH-28710)
2021-10-03 20:04:38 +03:00
tkappinit.c
tkinter.h
unicodedata.c
unicodedata_db.h
unicodename_db.h
winreparse.h
xxlimited.c
xxmodule.c
xxsubtype.c
zlibmodule.c
[3.9] bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wrong (GH-29588)
2021-11-26 16:21:22 -08:00