diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-23 20:41:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 20:41:11 (GMT) |
commit | aba24ff3601ddc86b85e01880a8be596fb799287 (patch) | |
tree | b9fd7a65221252fda283bfe5ddd3cbdc53a6d888 /Parser/parsetok.c | |
parent | db8e3a1e4476620b2b5aaf57acfc3ef58a08213b (diff) | |
download | cpython-aba24ff3601ddc86b85e01880a8be596fb799287.zip cpython-aba24ff3601ddc86b85e01880a8be596fb799287.tar.gz cpython-aba24ff3601ddc86b85e01880a8be596fb799287.tar.bz2 |
bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262)
Diffstat (limited to 'Parser/parsetok.c')
-rw-r--r-- | Parser/parsetok.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Parser/parsetok.c b/Parser/parsetok.c index 1f467d6..00d741d 100644 --- a/Parser/parsetok.c +++ b/Parser/parsetok.c @@ -246,8 +246,7 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret, else if ((ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) && strcmp(str, "<>")) { PyObject_FREE(str); - err_ret->text = "with Barry as BDFL, use '<>' " - "instead of '!='"; + err_ret->expected = NOTEQUAL; err_ret->error = E_SYNTAX; break; } |