Skip to content

Commit 7bbbc08

Browse files
author
Yury Selivanov
committed
Add tests for import statements
1 parent 31c4945 commit 7bbbc08

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

test/statements/import1.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from ...foo import bar as spam, baz
2+
import time as ham, datetime
3+
4+
5+
6+
from : keyword.control.flow.python, source.python
7+
.. : source.python
8+
. : source.python
9+
foo : source.python
10+
: source.python
11+
import : keyword.control.flow.python, source.python
12+
bar : source.python
13+
as : keyword.control.flow.python, source.python
14+
spam, baz : source.python
15+
import : keyword.control.flow.python, source.python
16+
time : source.python
17+
as : keyword.control.flow.python, source.python
18+
ham, datetime : source.python

0 commit comments

Comments
 (0)