diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-03 21:30:27 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-03 21:30:27 (GMT) |
commit | cfeb3b6ab8e213cb3551b101d0566d77f5b47409 (patch) | |
tree | 657521ff13e38d11dd10535827b4272af965b856 /Python/exceptions.c | |
parent | 290d31e2fc02a0d887da2c76fbe4e72377442a0a (diff) | |
download | cpython-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/exceptions.c')
-rw-r--r-- | Python/exceptions.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/exceptions.c b/Python/exceptions.c index 99002bf..adfd699 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -670,7 +670,8 @@ SyntaxError__classinit__(PyObject *klass) PyObject_SetAttrString(klass, "filename", Py_None) || PyObject_SetAttrString(klass, "lineno", Py_None) || PyObject_SetAttrString(klass, "offset", Py_None) || - PyObject_SetAttrString(klass, "text", Py_None)) + PyObject_SetAttrString(klass, "text", Py_None) || + PyObject_SetAttrString(klass, "print_file_and_line", Py_None)) { retval = -1; } |