diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-17 00:36:29 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-17 00:36:29 (GMT) |
commit | 88c97845c6c5f84bb503c95828055c12c562c623 (patch) | |
tree | 78db2020b2322a6cb2c2d610d5ab4871b4027156 /Modules | |
parent | 1a26920506a033c2abac751f376f4097aecca79e (diff) | |
download | cpython-88c97845c6c5f84bb503c95828055c12c562c623.zip cpython-88c97845c6c5f84bb503c95828055c12c562c623.tar.gz cpython-88c97845c6c5f84bb503c95828055c12c562c623.tar.bz2 |
No reason to export get_decomp_record, make static
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/unicodedata.c | 2 |
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) { |