mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-12 23:55:21 +00:00
Remove duplicate declaration of "from" token
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
parent
a0dfa939ff
commit
e40e4b21f3
1 changed files with 1 additions and 2 deletions
|
@ -1428,10 +1428,9 @@ extern {
|
||||||
"from" => lexer::Tok::From,
|
"from" => lexer::Tok::From,
|
||||||
"global" => lexer::Tok::Global,
|
"global" => lexer::Tok::Global,
|
||||||
"if" => lexer::Tok::If,
|
"if" => lexer::Tok::If,
|
||||||
|
"import" => lexer::Tok::Import,
|
||||||
"in" => lexer::Tok::In,
|
"in" => lexer::Tok::In,
|
||||||
"is" => lexer::Tok::Is,
|
"is" => lexer::Tok::Is,
|
||||||
"import" => lexer::Tok::Import,
|
|
||||||
"from" => lexer::Tok::From,
|
|
||||||
"lambda" => lexer::Tok::Lambda,
|
"lambda" => lexer::Tok::Lambda,
|
||||||
"nonlocal" => lexer::Tok::Nonlocal,
|
"nonlocal" => lexer::Tok::Nonlocal,
|
||||||
"not" => lexer::Tok::Not,
|
"not" => lexer::Tok::Not,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue