From 7171452e0ad1dd989e5ec79d180c5753e49e21d3 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 17 Apr 2006 00:36:29 +0000 Subject: No reason to export get_decomp_record, make static --- Modules/unicodedata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/unicodedata.c') 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) { -- cgit v1.2.1