summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-11-22 08:45:41 (GMT)
committerGitHub <noreply@github.com>2021-11-22 08:45:41 (GMT)
commit718cee08cc082ece590f5a012253a405422da03d (patch)
treed46157e4d25fd4699fbc4f959bf30d319d4aea25 /Modules
parent133c65a870e8bdcce7cd6a2bc6bd0cefbb2fa9f3 (diff)
downloadcpython-718cee08cc082ece590f5a012253a405422da03d.zip
cpython-718cee08cc082ece590f5a012253a405422da03d.tar.gz
cpython-718cee08cc082ece590f5a012253a405422da03d.tar.bz2
bpo-45847: Port _bisect, _heapq, _json, _pickle, _random, and _zoneinfo to PY_STDLIB_MOD_SIMPLE (GH-29689)
Automerge-Triggered-By: GH:tiran
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.stdlib.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in
index b22a956..bf41441 100644
--- a/Modules/Setup.stdlib.in
+++ b/Modules/Setup.stdlib.in
@@ -29,7 +29,13 @@
############################################################################
# Modules that should always be present (POSIX and Windows):
@MODULE_ARRAY_TRUE@array arraymodule.c
+@MODULE__BISECT_TRUE@_bisect _bisectmodule.c
@MODULE__CONTEXTVARS_TRUE@_contextvars _contextvarsmodule.c
+@MODULE__HEAPQ_TRUE@_heapq _heapqmodule.c
+@MODULE__JSON_TRUE@_json _json.c
+@MODULE__PICKLE_TRUE@_pickle _pickle.c
+@MODULE__RANDOM_TRUE@_random _randommodule.c
+@MODULE__ZONEINFO_TRUE@_zoneinfo _zoneinfo.c
# needs libm
@MODULE_MATH_TRUE@math mathmodule.c