From bf9239bb61fda25efe89d53a60675528b2f3ce6f Mon Sep 17 00:00:00 2001 From: numbermaniac <5206120+numbermaniac@users.noreply.github.com> Date: Sun, 24 Jan 2021 09:56:57 +1100 Subject: Remove full stop from a bytes-related SyntaxError message (GH-24300) --- Parser/string_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- cgit v0.12