mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-03 10:23:22 +00:00
fix ImportDots
This commit is contained in:
parent
cbc4cb286b
commit
aa101e4f26
2 changed files with 3 additions and 3 deletions
|
@ -266,7 +266,7 @@ ImportFromLocation: (Option<ast::Int>, Option<ast::Identifier>) = {
|
|||
|
||||
ImportDots: ast::Int = {
|
||||
"..." => ast::Int::new(3),
|
||||
"." => ast::Int::new(3),
|
||||
"." => ast::Int::new(1),
|
||||
};
|
||||
|
||||
ImportAsNames: Vec<ast::Alias> = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue