diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-11 05:26:20 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-11 05:26:20 (GMT) |
commit | 1a21451b1d73b65af949193208372e86bf308411 (patch) | |
tree | 8e98d7be9e249b011ae9380479656e5284ec0234 /Modules/cryptmodule.c | |
parent | cdf94635d7e364f9ce1905bafa5b540f4d16147c (diff) | |
download | cpython-1a21451b1d73b65af949193208372e86bf308411.zip cpython-1a21451b1d73b65af949193208372e86bf308411.tar.gz cpython-1a21451b1d73b65af949193208372e86bf308411.tar.bz2 |
Implement PEP 3121: new module initialization and finalization API.
Diffstat (limited to 'Modules/cryptmodule.c')
-rw-r--r-- | Modules/cryptmodule.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c index 6377f84..d3d9271 100644 --- a/Modules/cryptmodule.c +++ b/Modules/cryptmodule.c @@ -42,8 +42,21 @@ static PyMethodDef crypt_methods[] = { {NULL, NULL} /* sentinel */ }; + +static struct PyModuleDef cryptmodule = { + PyModuleDef_HEAD_INIT, + "crypt", + NULL, + -1, + crypt_methods, + NULL, + NULL, + NULL, + NULL +}; + PyMODINIT_FUNC -initcrypt(void) +PyInit_crypt(void) { - Py_InitModule("crypt", crypt_methods); + return PyModule_Create(&cryptmodule); } |