Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Derrors.c634 PyObject *docobj; in PyErr_NewExceptionWithDoc() local
644 docobj = PyString_FromString(doc); in PyErr_NewExceptionWithDoc()
645 if (docobj == NULL) in PyErr_NewExceptionWithDoc()
647 result = PyDict_SetItemString(dict, "__doc__", docobj); in PyErr_NewExceptionWithDoc()
648 Py_DECREF(docobj); in PyErr_NewExceptionWithDoc()
/external/python/cpython3/Python/
Derrors.c917 PyObject *docobj; in PyErr_NewExceptionWithDoc() local
927 docobj = PyUnicode_FromString(doc); in PyErr_NewExceptionWithDoc()
928 if (docobj == NULL) in PyErr_NewExceptionWithDoc()
930 result = PyDict_SetItemString(dict, "__doc__", docobj); in PyErr_NewExceptionWithDoc()
931 Py_DECREF(docobj); in PyErr_NewExceptionWithDoc()