diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-10 11:20:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-10 11:20:04 (GMT) |
commit | 5bd7c0229826bc8b71879a3600a34d21045bc031 (patch) | |
tree | 46f723cc0687cd9e8c6dff7ba11f98eec616dece /Include | |
parent | f669436189dd44a841caa9ab1ad97a3f7662bf58 (diff) | |
download | cpython-5bd7c0229826bc8b71879a3600a34d21045bc031.zip cpython-5bd7c0229826bc8b71879a3600a34d21045bc031.tar.gz cpython-5bd7c0229826bc8b71879a3600a34d21045bc031.tar.bz2 |
Avoid forward-declaring the methods array.
Rename unicodedata.db* to unicodedata.ucd*
Diffstat (limited to 'Include')
-rw-r--r-- | Include/ucnhash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ucnhash.h b/Include/ucnhash.h index b7d3f08..6231c98 100644 --- a/Include/ucnhash.h +++ b/Include/ucnhash.h @@ -16,7 +16,7 @@ typedef struct { /* Get name for a given character code. Returns non-zero if success, zero if not. Does not set Python exceptions. If self is NULL, data come from the default version of the database. - If it is not NULL, it should be a unicodedata.db_X_Y_Z object */ + If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */ int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen); /* Get character code for a given name. Same error handling |