Home | History | Annotate | Download | only in simplejson

Lines Matching refs:JSONDecodeError

422     static PyObject *JSONDecodeError = NULL;
424 if (JSONDecodeError == NULL) {
428 JSONDecodeError = PyObject_GetAttrString(decoder, "JSONDecodeError");
430 if (JSONDecodeError == NULL)
433 exc = PyObject_CallFunction(JSONDecodeError, "(zOO&)", msg, s, _convertPyInt_FromSsize_t, &end);
435 PyErr_SetObject(JSONDecodeError, exc);