Lines Matching refs:PySyntaxErrorObject
1317 static int _report_missing_parentheses(PySyntaxErrorObject *self);
1320 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) in SyntaxError_init()
1375 SyntaxError_clear(PySyntaxErrorObject *self) in SyntaxError_clear()
1387 SyntaxError_dealloc(PySyntaxErrorObject *self) in SyntaxError_dealloc()
1395 SyntaxError_traverse(PySyntaxErrorObject *self, visitproc visit, void *arg) in SyntaxError_traverse()
1436 SyntaxError_str(PySyntaxErrorObject *self) in SyntaxError_str()
1479 {"msg", T_OBJECT, offsetof(PySyntaxErrorObject, msg), 0,
1481 {"filename", T_OBJECT, offsetof(PySyntaxErrorObject, filename), 0,
1483 {"lineno", T_OBJECT, offsetof(PySyntaxErrorObject, lineno), 0,
1485 {"offset", T_OBJECT, offsetof(PySyntaxErrorObject, offset), 0,
1487 {"text", T_OBJECT, offsetof(PySyntaxErrorObject, text), 0,
1490 offsetof(PySyntaxErrorObject, print_file_and_line), 0,
2845 _set_legacy_print_statement_msg(PySyntaxErrorObject *self, Py_ssize_t start) in _set_legacy_print_statement_msg()
2897 _check_for_legacy_statements(PySyntaxErrorObject *self, Py_ssize_t start) in _check_for_legacy_statements()
2953 _report_missing_parentheses(PySyntaxErrorObject *self) in _report_missing_parentheses()