From: Fredrik Lundh Date: Wed, 24 Jan 2001 08:20:40 +0000 (+0000) Subject: ucnhash is no longer used X-Git-Tag: v2.1a2~232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f30b753b22d370bc66d555cd648a964357d70d7;p=python ucnhash is no longer used --- diff --git a/Modules/ucnhash.c b/Modules/ucnhash.c deleted file mode 100644 index 424b6c5f01..0000000000 --- a/Modules/ucnhash.c +++ /dev/null @@ -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 */ -}