summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-17 00:36:29 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-17 00:36:29 +0000
commit7171452e0ad1dd989e5ec79d180c5753e49e21d3 (patch)
tree227842179a6b6f8431dfe6c8d57d7bcfda97ae48 /Modules/unicodedata.c
parentd51548d3f9bcb7a2ce38b11179aa411763d4d6f4 (diff)
downloadcpython-7171452e0ad1dd989e5ec79d180c5753e49e21d3.tar.gz
No reason to export get_decomp_record, make static
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r--Modules/unicodedata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 1e4908fd9f..297611cec4 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -446,7 +446,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args)
return PyString_FromString(decomp);
}
-void
+static void
get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count)
{
if (code >= 0x110000) {