diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-07-23 22:41:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-23 22:41:26 (GMT) |
commit | 220afffb683af1ba9e04c37535cfaa41348e9ebb (patch) | |
tree | c81c0b44425334c7fdb503aca10c62fa1d6ba1e6 /Parser | |
parent | 519fc551d7778ac698033846bb052a12b7d491e2 (diff) | |
download | cpython-220afffb683af1ba9e04c37535cfaa41348e9ebb.zip cpython-220afffb683af1ba9e04c37535cfaa41348e9ebb.tar.gz cpython-220afffb683af1ba9e04c37535cfaa41348e9ebb.tar.bz2 |
bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) (GH-8423)
(cherry picked from commit aba24ff3601ddc86b85e01880a8be596fb799287)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Parser')
-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; } |