diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-06-13 11:55:14 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-06-13 11:55:14 (GMT) |
commit | 74a3bec592c53078226818e0d732f9f81cfb5d7f (patch) | |
tree | 40d26ef9888e30dc634a5b7ade05e93465cf136c /Modules/unicodedata.c | |
parent | 7aec4a2e2cf6b6af71585894304216b2d3477200 (diff) | |
download | cpython-74a3bec592c53078226818e0d732f9f81cfb5d7f.zip cpython-74a3bec592c53078226818e0d732f9f81cfb5d7f.tar.gz cpython-74a3bec592c53078226818e0d732f9f81cfb5d7f.tar.bz2 |
_Py prefix is verboten for static entry points
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 6dcd31a..60cb412 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -277,7 +277,7 @@ _gethash(const char *s, int len, int scale) } static int -_Py_getname(Py_UCS4 code, char* buffer, int buflen) +_getucname(Py_UCS4 code, char* buffer, int buflen) { int offset; int i; @@ -334,7 +334,7 @@ _cmpname(int code, const char* name, int namelen) /* check if code corresponds to the given name */ int i; char buffer[NAME_MAXLEN]; - if (!_Py_getname(code, buffer, sizeof(buffer))) + if (!_getucname(code, buffer, sizeof(buffer))) return 0; for (i = 0; i < namelen; i++) { if (toupper(name[i]) != buffer[i]) @@ -384,7 +384,7 @@ _getcode(const char* name, int namelen, Py_UCS4* code) static const _PyUnicode_Name_CAPI hashAPI = { sizeof(_PyUnicode_Name_CAPI), - _Py_getname, + _getucname, _getcode }; @@ -407,7 +407,7 @@ unicodedata_name(PyObject* self, PyObject* args) return NULL; } - if (!_Py_getname((Py_UCS4) *PyUnicode_AS_UNICODE(v), + if (!_getucname((Py_UCS4) *PyUnicode_AS_UNICODE(v), name, sizeof(name))) { if (defobj == NULL) { PyErr_SetString(PyExc_ValueError, "no such name"); |