Lines Matching refs:line
674 /* Write caret line */
976 PyObject *line = PyUnicode_FromFormat(" File \"%S\", line %zd\n",
979 if (line == NULL) {
985 if (PyFile_WriteObject(line, f, Py_PRINT_RAW) < 0) {
988 Py_CLEAR(line);
995 // the end of that one since we don't support multi-line error
1001 // the size of the text in the source line.
1014 Py_XDECREF(line);
1019 /* Prints the message line: module.qualname[: str(exc)] */
1188 PyObject *line = PyList_GET_ITEM(lines, i);
1189 assert(PyUnicode_Check(line));
1193 if (PyFile_WriteObject(line, f, Py_PRINT_RAW) < 0) {
1386 PyObject *line = PyUnicode_FromFormat("... (max_group_depth is %d)\n",
1388 if (line == NULL) {
1391 int err = PyFile_WriteObject(line, f, Py_PRINT_RAW);
1392 Py_DECREF(line);
1425 PyObject *line;
1427 line = PyUnicode_FromFormat(
1432 line = PyUnicode_FromFormat(
1436 if (line == NULL) {
1439 int err = PyFile_WriteObject(line, f, Py_PRINT_RAW);
1440 Py_DECREF(line);
1465 PyObject *line = PyUnicode_FromFormat(
1469 if (line == NULL) {
1473 int err = PyFile_WriteObject(line, f, Py_PRINT_RAW);
1474 Py_DECREF(line);