Lines Matching refs:PySyntaxErrorObject
1346 static int _report_missing_parentheses(PySyntaxErrorObject *self);
1349 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) in SyntaxError_init()
1404 SyntaxError_clear(PySyntaxErrorObject *self) in SyntaxError_clear()
1416 SyntaxError_dealloc(PySyntaxErrorObject *self) in SyntaxError_dealloc()
1424 SyntaxError_traverse(PySyntaxErrorObject *self, visitproc visit, void *arg) in SyntaxError_traverse()
1467 SyntaxError_str(PySyntaxErrorObject *self) in SyntaxError_str()
1510 {"msg", T_OBJECT, offsetof(PySyntaxErrorObject, msg), 0,
1512 {"filename", T_OBJECT, offsetof(PySyntaxErrorObject, filename), 0,
1514 {"lineno", T_OBJECT, offsetof(PySyntaxErrorObject, lineno), 0,
1516 {"offset", T_OBJECT, offsetof(PySyntaxErrorObject, offset), 0,
1518 {"text", T_OBJECT, offsetof(PySyntaxErrorObject, text), 0,
1521 offsetof(PySyntaxErrorObject, print_file_and_line), 0,
2917 _set_legacy_print_statement_msg(PySyntaxErrorObject *self, Py_ssize_t start) in _set_legacy_print_statement_msg()
2969 _check_for_legacy_statements(PySyntaxErrorObject *self, Py_ssize_t start) in _check_for_legacy_statements()
3035 _report_missing_parentheses(PySyntaxErrorObject *self) in _report_missing_parentheses()