commit | 41d5b94af44e34ac05d4cd57460ed104ccf96628 | [log] [tgz] |
---|---|---|
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | Sun Apr 12 21:21:00 2020 +0300 |
committer | GitHub <noreply@github.com> | Sun Apr 12 19:21:00 2020 +0100 |
tree | 564847a328b623cc02268a93fda371e0bea797b3 | |
parent | 402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527 [diff] [blame] |
bpo-40246: Report a better error message for invalid string prefixes (GH-19476)
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 95571a8..eb9159f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c
@@ -1574,6 +1574,9 @@ case E_BADSINGLE: msg = "multiple statements found while compiling a single statement"; break; + case E_BADPREFIX: + msg = "invalid string prefix"; + break; default: fprintf(stderr, "error=%d\n", err->error); msg = "unknown parsing error";