summaryrefslogtreecommitdiffstats
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-17 00:36:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-17 00:36:29 (GMT)
commit88c97845c6c5f84bb503c95828055c12c562c623 (patch)
tree78db2020b2322a6cb2c2d610d5ab4871b4027156 /Modules/unicodedata.c
parent1a26920506a033c2abac751f376f4097aecca79e (diff)
downloadcpython-88c97845c6c5f84bb503c95828055c12c562c623.zip
cpython-88c97845c6c5f84bb503c95828055c12c562c623.tar.gz
cpython-88c97845c6c5f84bb503c95828055c12c562c623.tar.bz2
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 1e4908f..297611c 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) {