Lines Matching defs:module
28 module unicodedata
1420 // List of functions used to define module functions *AND* unicodedata.UCD
1421 // methods. For module functions, self is the module. For UCD methods, self
1475 "This module provides access to the Unicode Character Database which\n\
1480 The module uses the same names and symbols as defined by the\n\
1484 unicodedata_exec(PyObject *module)
1486 if (PyModule_AddStringConstant(module, "unidata_version", UNIDATA_VERSION) < 0) {
1495 if (PyModule_AddType(module, ucd_type) < 0) {
1508 if (PyModule_AddObject(module, "ucd_3_2_0", v) < 0) {
1518 int rc = PyModule_AddObjectRef(module, "_ucnhash_CAPI", capsule);