Add better error reporting for MemoryErrors caused by str->float conversions.
[python.git] / Include / ucnhash.h
blob6231c98b30001b5df3827de4df65e9321dcbe0e5
1 /* Unicode name database interface */
3 #ifndef Py_UCNHASH_H
4 #define Py_UCNHASH_H
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
9 /* revised ucnhash CAPI interface (exported through a PyCObject) */
11 typedef struct {
13 /* Size of this struct */
14 int size;
16 /* Get name for a given character code. Returns non-zero if
17 success, zero if not. Does not set Python exceptions.
18 If self is NULL, data come from the default version of the database.
19 If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */
20 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
22 /* Get character code for a given name. Same error handling
23 as for getname. */
24 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
26 } _PyUnicode_Name_CAPI;
28 #ifdef __cplusplus
30 #endif
31 #endif /* !Py_UCNHASH_H */