cpython/Modules
Alper 1eddef8193
gh-116738: Make zlib module thread-safe (gh-142432)
Makes the zlib module thread-safe free-threading build. Even though operations
are protected by locks, attributes exposed via PyMemberDef (eof, needs_input,
unused_data, unconsumed_tail) should still be stored atomically within locked
sections, since they can be read without acquiring the lock.
2025-12-12 13:14:42 -05:00
..
_ctypes gh-123241: Don't modify ref count during visitation (GH-142232) 2025-12-11 09:54:29 +01:00
_decimal gh-142595: add type check for namedtuple call during decimal initialization (GH-142608) 2025-12-12 11:47:45 +01:00
_hacl
_io
_multiprocessing
_remote_debugging gh-138122: Add exception profiling mode to the sampling profiler (#142561) 2025-12-11 20:46:34 +00:00
_sqlite
_sre
_ssl gh-142438: Added missing GIL release in _PySSL_keylog_callback when keylog_bio is unset (gh-142439) 2025-12-11 23:30:39 +09:00
_testcapi gh-142589: Fix PyUnstable_Object_IsUniqueReferencedTemporary (gh-142593) 2025-12-11 14:41:03 -05:00
_testinternalcapi
_testlimitedcapi
_xxtestfuzz
_zstd
cjkcodecs
clinic
expat
_abc.c
_asynciomodule.c gh-142556: fix crash when a task gets re-registered during finalization in asyncio (#142565) 2025-12-11 15:04:49 +05:30
_bisectmodule.c
_bz2module.c
_codecsmodule.c
_collectionsmodule.c
_csv.c
_curses_panel.c
_cursesmodule.c
_datetimemodule.c
_dbmmodule.c
_elementtree.c
_functoolsmodule.c
_gdbmmodule.c
_hashopenssl.c
_heapqmodule.c
_interpchannelsmodule.c
_interpqueuesmodule.c
_interpreters_common.h
_interpretersmodule.c
_json.c
_localemodule.c
_lsprof.c
_lzmamodule.c
_math.h
_opcode.c
_operator.c
_pickle.c
_posixsubprocess.c
_queuemodule.c
_randommodule.c
_scproxy.c
_ssl.c
_ssl.h
_ssl_data_35.h
_ssl_data_111.h
_ssl_data_300.h
_ssl_data_340.h
_stat.c
_statisticsmodule.c
_struct.c
_suggestions.c
_sysconfig.c
_testbuffer.c
_testcapi_feature_macros.inc
_testcapimodule.c
_testclinic.c
_testclinic_limited.c
_testimportmultiple.c
_testinternalcapi.c gh-142531: Fix free-threaded GC performance regression (gh-142562) 2025-12-11 12:30:56 -08:00
_testlimitedcapi.c
_testmultiphase.c
_testsinglephase.c
_threadmodule.c
_tkinter.c
_tracemalloc.c
_typesmodule.c
_typingmodule.c
_uuidmodule.c
_weakref.c
_winapi.c
_zoneinfo.c
addrinfo.h
arraymodule.c
atexitmodule.c
binascii.c
blake2module.c
cmathmodule.c
config.c.in
errnomodule.c
faulthandler.c
fcntlmodule.c
gc_weakref.txt
gcmodule.c
getaddrinfo.c
getbuildinfo.c
getnameinfo.c
getpath.c
getpath.py
getpath_noop.c
grpmodule.c
hashlib.h
hmacmodule.c
itertoolsmodule.c
ld_so_aix.in
main.c
makesetup
makexp_aix
mathintegermodule.c
mathmodule.c
md5module.c
mmapmodule.c
overlapped.c
posixmodule.c Fix os.posix_spawn() error handling (#142532) 2025-12-11 18:02:26 +01:00
posixmodule.h
pwdmodule.c
pyexpat.c
readline.c
README
resource.c
rotatingtree.c
rotatingtree.h
selectmodule.c
Setup
Setup.bootstrap.in
Setup.stdlib.in
sha1module.c
sha2module.c
sha3module.c
signalmodule.c
socketmodule.c
socketmodule.h
symtablemodule.c
syslogmodule.c
termios.c
timemodule.c
tkappinit.c
tkinter.h
unicodedata.c
unicodedata_db.h
unicodename_db.h
winreparse.h
xxlimited.c
xxlimited_35.c
xxmodule.c
xxsubtype.c
zlibmodule.c gh-116738: Make zlib module thread-safe (gh-142432) 2025-12-12 13:14:42 -05:00

Source files for standard library extension modules,
and former extension modules that are now builtin modules.