summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-07-23 23:41:11 +0300
committerGitHub <noreply@github.com>2018-07-23 23:41:11 +0300
commitaba24ff3601ddc86b85e01880a8be596fb799287 (patch)
treeb9fd7a65221252fda283bfe5ddd3cbdc53a6d888 /Parser
parentdb8e3a1e4476620b2b5aaf57acfc3ef58a08213b (diff)
downloadcpython-git-aba24ff3601ddc86b85e01880a8be596fb799287.tar.gz
bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262)
Diffstat (limited to 'Parser')
-rw-r--r--Parser/parsetok.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Parser/parsetok.c b/Parser/parsetok.c
index 1f467d63c4..00d741d221 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;
}