Home
last modified time | relevance | path

Searched refs:defobj (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
Dunicodedata.c122 PyObject *defobj = NULL; in unicodedata_decimal() local
127 if (!PyArg_ParseTuple(args, "O!|O:decimal", &PyUnicode_Type, &v, &defobj)) in unicodedata_decimal()
149 if (defobj == NULL) { in unicodedata_decimal()
155 Py_INCREF(defobj); in unicodedata_decimal()
156 return defobj; in unicodedata_decimal()
173 PyObject *defobj = NULL; in unicodedata_digit() local
177 if (!PyArg_ParseTuple(args, "O!|O:digit", &PyUnicode_Type, &v, &defobj)) in unicodedata_digit()
184 if (defobj == NULL) { in unicodedata_digit()
189 Py_INCREF(defobj); in unicodedata_digit()
190 return defobj; in unicodedata_digit()
[all …]