diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2001-01-24 08:20:40 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2001-01-24 08:20:40 (GMT) |
commit | 9f30b753b22d370bc66d555cd648a964357d70d7 (patch) | |
tree | 8aacb6303faa180b22f4c10e1dd57876f6504aaa /Modules | |
parent | 0110d3b2ad8cb0e53b61cb85a0d2e886833097d5 (diff) | |
download | cpython-9f30b753b22d370bc66d555cd648a964357d70d7.zip cpython-9f30b753b22d370bc66d555cd648a964357d70d7.tar.gz cpython-9f30b753b22d370bc66d555cd648a964357d70d7.tar.bz2 |
ucnhash is no longer used
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ucnhash.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Modules/ucnhash.c b/Modules/ucnhash.c deleted file mode 100644 index 424b6c5..0000000 --- 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 */ -} |