]> granicus.if.org Git - python/commitdiff
ucnhash is no longer used
authorFredrik Lundh <fredrik@pythonware.com>
Wed, 24 Jan 2001 08:20:40 +0000 (08:20 +0000)
committerFredrik Lundh <fredrik@pythonware.com>
Wed, 24 Jan 2001 08:20:40 +0000 (08:20 +0000)
Modules/ucnhash.c [deleted file]

diff --git a/Modules/ucnhash.c b/Modules/ucnhash.c
deleted file mode 100644 (file)
index 424b6c5..0000000
+++ /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 */
-}