ucnhash is no longer used

This commit is contained in:
Fredrik Lundh 2001-01-24 08:20:40 +00:00
parent 0110d3b2ad
commit 9f30b753b2
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
/* 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 */
}