summaryrefslogtreecommitdiffstats
path: root/Modules/md5module.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-02-04 20:33:49 (GMT)
committerFred Drake <fdrake@acm.org>2000-02-04 20:33:49 (GMT)
commit0d40ba4cdf6899b126297848f27f07a9cc76acb9 (patch)
tree4bc282696edbf934303c7db230540a2c4638a5c0 /Modules/md5module.c
parent0fdffcf9163c7d5dd18f74f7fad50d42fec60c3d (diff)
downloadcpython-0d40ba4cdf6899b126297848f27f07a9cc76acb9.zip
cpython-0d40ba4cdf6899b126297848f27f07a9cc76acb9.tar.gz
cpython-0d40ba4cdf6899b126297848f27f07a9cc76acb9.tar.bz2
Patch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>:
Attached is patch (against 1.5.2 release) to allow some modules to be buildable as pyd's (usual &PyType_Type stuff).
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r--Modules/md5module.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c
index 2508f52..ee11ee1 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -200,7 +200,7 @@ copy() -- return a copy of the current md5 object\n\
";
statichere PyTypeObject MD5type = {
- PyObject_HEAD_INIT(&PyType_Type)
+ PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"md5", /*tp_name*/
sizeof(md5object), /*tp_size*/
@@ -271,6 +271,8 @@ DL_EXPORT(void)
initmd5()
{
PyObject *m, *d;
+
+ MD5type.ob_type = &PyType_Type;
m = Py_InitModule3("md5", md5_functions, module_doc);
d = PyModule_GetDict(m);
PyDict_SetItemString(d, "MD5Type", (PyObject *)&MD5type);