No reason to export get_decomp_record, make static
This commit is contained in:
parent
1a26920506
commit
88c97845c6
|
@ -446,7 +446,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args)
|
||||||
return PyString_FromString(decomp);
|
return PyString_FromString(decomp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count)
|
get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count)
|
||||||
{
|
{
|
||||||
if (code >= 0x110000) {
|
if (code >= 0x110000) {
|
||||||
|
|
Loading…
Reference in New Issue