diff options
author | Guido van Rossum <guido@python.org> | 1992-12-08 16:10:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-12-08 16:10:18 (GMT) |
commit | 8ed294150e62df914b023eefe2095359d76ec9ea (patch) | |
tree | ac0ac276bb9152396f0bc11a13d5328dca07a614 | |
parent | 95cd2ef1623d8f3ac574d617964e5b4e097bc54d (diff) | |
download | cpython-8ed294150e62df914b023eefe2095359d76ec9ea.zip cpython-8ed294150e62df914b023eefe2095359d76ec9ea.tar.gz cpython-8ed294150e62df914b023eefe2095359d76ec9ea.tar.bz2 |
Added new modules mpz, md5 (by JH, requiring GNU MP).
-rw-r--r-- | Modules/config.c.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 7e67961..6189c33 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -226,6 +226,12 @@ extern void inittime(); #ifdef USE_IMAGEOP extern void initimageop(); #endif +#ifdef USE_MPZ +extern void initmpz(); +#endif +#ifdef USE_MD5 +extern void initmd5(); +#endif /* -- ADDMODULE MARKER 1 -- */ struct { @@ -365,6 +371,14 @@ struct { {"imageop", initimageop}, #endif +#ifdef USE_MPZ + {"mpz", initmpz}, +#endif + +#ifdef USE_MD5 + {"md5", initmd5}, +#endif + /* -- ADDMODULE MARKER 2 -- */ {0, 0} /* Sentinel */ |