summaryrefslogtreecommitdiffstats
path: root/Parser/string_parser.c
diff options
context:
space:
mode:
authornumbermaniac <5206120+numbermaniac@users.noreply.github.com>2021-01-23 22:56:57 (GMT)
committerGitHub <noreply@github.com>2021-01-23 22:56:57 (GMT)
commitbf9239bb61fda25efe89d53a60675528b2f3ce6f (patch)
treecbe9598be9b0aea70ae0487a2b54ac6f246eaa85 /Parser/string_parser.c
parentf7fa64f0e87edc61d990ed51b4da722906a10928 (diff)
downloadcpython-bf9239bb61fda25efe89d53a60675528b2f3ce6f.zip
cpython-bf9239bb61fda25efe89d53a60675528b2f3ce6f.tar.gz
cpython-bf9239bb61fda25efe89d53a60675528b2f3ce6f.tar.bz2
Remove full stop from a bytes-related SyntaxError message (GH-24300)
Diffstat (limited to 'Parser/string_parser.c')
-rw-r--r--Parser/string_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/string_parser.c b/Parser/string_parser.c
index a41f41c..0f3665c 100644
--- a/Parser/string_parser.c
+++ b/Parser/string_parser.c
@@ -250,7 +250,7 @@ _PyPegen_parsestr(Parser *p, int *bytesmode, int *rawmode, PyObject **result,
if (Py_CHARMASK(*ch) >= 0x80) {
RAISE_SYNTAX_ERROR(
"bytes can only contain ASCII "
- "literal characters.");
+ "literal characters");
return -1;
}
}