Lines Matching defs:form
390 "is_normalized($self, form, unistr, /)\n"
393 "Return whether the Unicode string unistr is in the normal form \'form\'.\n"
395 "Valid values for form are \'NFC\', \'NFKC\', \'NFD\', and \'NFKD\'.");
401 unicodedata_UCD_is_normalized_impl(PyObject *self, PyObject *form,
408 PyObject *form;
421 form = args[0];
430 return_value = unicodedata_UCD_is_normalized_impl(self, form, input);
437 "normalize($self, form, unistr, /)\n"
440 "Return the normal form \'form\' for the Unicode string unistr.\n"
442 "Valid values for form are \'NFC\', \'NFKC\', \'NFD\', and \'NFKD\'.");
448 unicodedata_UCD_normalize_impl(PyObject *self, PyObject *form,
455 PyObject *form;
468 form = args[0];
477 return_value = unicodedata_UCD_normalize_impl(self, form, input);