[Python-checkins] r45469 - python/trunk/Modules/unicodedata.c (original) (raw)

neal.norwitz python-checkins at python.org
Mon Apr 17 02:36:29 CEST 2006


Author: neal.norwitz Date: Mon Apr 17 02:36:29 2006 New Revision: 45469

Modified: python/trunk/Modules/unicodedata.c Log: No reason to export get_decomp_record, make static

Modified: python/trunk/Modules/unicodedata.c

--- python/trunk/Modules/unicodedata.c (original) +++ python/trunk/Modules/unicodedata.c Mon Apr 17 02:36:29 2006 @@ -446,7 +446,7 @@ return PyString_FromString(decomp); }

-void +static void get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count) { if (code >= 0x110000) {



More information about the Python-checkins mailing list