diff options
author | Guido van Rossum <guido@python.org> | 1991-06-04 19:47:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-06-04 19:47:46 (GMT) |
commit | 6f7b9598b50ba6ca041eb6e7354de9dbe3e1e307 (patch) | |
tree | 77b6ffb5df2dcc9543b7a0f15b1c6e8db5bbef06 /Modules/config.c.in | |
parent | 4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f (diff) | |
download | cpython-6f7b9598b50ba6ca041eb6e7354de9dbe3e1e307.zip cpython-6f7b9598b50ba6ca041eb6e7354de9dbe3e1e307.tar.gz cpython-6f7b9598b50ba6ca041eb6e7354de9dbe3e1e307.tar.bz2 |
Expoer "marshal" module.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 5436723..4f0f2e6 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -128,6 +128,8 @@ extern void initregexp(); extern void initposix(); extern void initpwd(); extern void initgrp(); +extern void initmarshal(); + #ifdef USE_AUDIO extern void initaudio(); #endif @@ -160,6 +162,7 @@ struct { {"posix", initposix}, {"pwd", initpwd}, {"grp", initgrp}, + {"marshal", initmarshal}, /* Optional modules */ |