commit | 2f37c355ab0e9ec9c1753985d27c41fa0bd719b9 | [log] [tgz] |
---|---|---|
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | Thu May 07 13:37:51 2020 +0300 |
committer | GitHub <noreply@github.com> | Thu May 07 11:37:51 2020 +0100 |
tree | 2295b4c14a0d54f6db7d9248e17924c267e31700 | |
parent | 3466922320d54a922cfe6d6d44e89e1cea4023ef [diff] |
bpo-40334: Fix error location upon parsing an invalid string literal (GH-19962) When parsing a string with an invalid escape, the old parser used to point to the beginning of the invalid string. This commit changes the new parser to match that behaviour, since it's currently pointing to the end of the string (or to be more precise, to the beginning of the next token).