forked from MagicStack/MagicPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwith1.py
More file actions
22 lines (19 loc) · 733 Bytes
/
with1.py
File metadata and controls
22 lines (19 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
with a as b, c as d:
pass
with : keyword.control.flow.python, source.python
: source.python
a : source.python
: source.python
as : keyword.control.flow.python, source.python
: source.python
b : source.python
, : punctuation.separator.element.python, source.python
: source.python
c : source.python
: source.python
as : keyword.control.flow.python, source.python
: source.python
d : source.python
: : punctuation.separator.colon.python, source.python
: source.python
pass : keyword.control.flow.python, source.python