blob: 424b6c5f01a60bb949b785c115f51fef87b563d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* obsolete -- remove this file! */
#include "Python.h"
static
PyMethodDef ucnhash_methods[] =
{
{NULL, NULL},
};
static char *ucnhash_docstring = "ucnhash hash function module (obsolete)";
DL_EXPORT(void)
initucnhash(void)
{
Py_InitModule4(
"ucnhash", /* Module name */
ucnhash_methods, /* Method list */
ucnhash_docstring, /* Module doc-string */
(PyObject *)NULL, /* always pass this as *self */
PYTHON_API_VERSION); /* API Version */
}
|