diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-03 21:30:27 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-03 21:30:27 +0000 |
commit | a33c1e69bcc2312323114e06b2fcd5d4ba900f8d (patch) | |
tree | ead518f9ffd9a0d6058358eee42399b870d98ab7 /Python/pythonrun.c | |
parent | 5393a9d4fbfeacc988f09e03411c052bc0768253 (diff) | |
download | cpython-a33c1e69bcc2312323114e06b2fcd5d4ba900f8d.tar.gz |
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/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 6b70739d0a..ad92004f9a 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -920,7 +920,7 @@ void PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb) if (tb && tb != Py_None) err = PyTraceBack_Print(tb, f); if (err == 0 && - PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError)) + PyObject_HasAttrString(v, "print_file_and_line")) { PyObject *message; char *filename, *text; |