summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-03 21:30:27 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-03-03 21:30:27 (GMT)
commitcfeb3b6ab8e213cb3551b101d0566d77f5b47409 (patch)
tree657521ff13e38d11dd10535827b4272af965b856 /Python/errors.c
parent290d31e2fc02a0d887da2c76fbe4e72377442a0a (diff)
downloadcpython-cfeb3b6ab8e213cb3551b101d0566d77f5b47409.zip
cpython-cfeb3b6ab8e213cb3551b101d0566d77f5b47409.tar.gz
cpython-cfeb3b6ab8e213cb3551b101d0566d77f5b47409.tar.bz2
Patch #50002: Display line information for bad \x escapes:
- recognize "SyntaxError"s by the print_file_and_line attribute. - add the syntaxerror attributes to all exceptions in compile.c. Fixes #221791
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 2799cff..13b3d11 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -561,7 +561,9 @@ PyErr_WarnExplicit(PyObject *category, char *message,
}
-/* XXX There's a comment missing here */
+/* Set file and line information for the current exception.
+ If the exception is not a SyntaxError, also sets additional attributes
+ to make printing of exceptions believe it is a syntax error. */
void
PyErr_SyntaxLocation(char *filename, int lineno)
@@ -596,6 +598,26 @@ PyErr_SyntaxLocation(char *filename, int lineno)
Py_DECREF(tmp);
}
}
+ if (PyObject_SetAttrString(v, "offset", Py_None)) {
+ PyErr_Clear();
+ }
+ if (exc != PyExc_SyntaxError) {
+ if (!PyObject_HasAttrString(v, "msg")) {
+ tmp = PyObject_Str(v);
+ if (tmp) {
+ if (PyObject_SetAttrString(v, "msg", tmp))
+ PyErr_Clear();
+ Py_DECREF(tmp);
+ } else {
+ PyErr_Clear();
+ }
+ }
+ if (!PyObject_HasAttrString(v, "print_file_and_line")) {
+ if (PyObject_SetAttrString(v, "print_file_and_line",
+ Py_None))
+ PyErr_Clear();
+ }
+ }
PyErr_Restore(exc, v, tb);
}