mirror of
https://github.com/python/cpython.git
synced 2025-07-08 20:05:28 +00:00
bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262)
This commit is contained in:
parent
db8e3a1e44
commit
aba24ff360
3 changed files with 22 additions and 8 deletions
|
@ -1348,6 +1348,10 @@ err_input(perrdetail *err)
|
|||
msg = "unexpected indent";
|
||||
else if (err->token == DEDENT)
|
||||
msg = "unexpected unindent";
|
||||
else if (err->expected == NOTEQUAL) {
|
||||
errtype = PyExc_SyntaxError;
|
||||
msg = "with Barry as BDFL, use '<>' instead of '!='";
|
||||
}
|
||||
else {
|
||||
errtype = PyExc_SyntaxError;
|
||||
msg = "invalid syntax";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue