Searched refs:docobj (Results 1 – 2 of 2) sorted by relevance
634 PyObject *docobj; in PyErr_NewExceptionWithDoc() local644 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()
917 PyObject *docobj; in PyErr_NewExceptionWithDoc() local927 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()