-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathkeywords.py
More file actions
54 lines (50 loc) · 2.22 KB
/
keywords.py
File metadata and controls
54 lines (50 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
as async await continue del assert break finally for
from elif else if import except pass raise
return try while with
nonlocal global class def
as : keyword.control.flow.python, source.python
: source.python
async : keyword.control.flow.python, source.python
: source.python
await : keyword.control.flow.python, source.python
: source.python
continue : keyword.control.flow.python, source.python
: source.python
del : keyword.control.flow.python, source.python
: source.python
assert : keyword.control.flow.python, source.python
: source.python
break : keyword.control.flow.python, source.python
: source.python
finally : keyword.control.flow.python, source.python
: source.python
for : keyword.control.flow.python, source.python
from : keyword.control.flow.python, source.python
: source.python
elif : keyword.control.flow.python, source.python
: source.python
else : keyword.control.flow.python, source.python
: source.python
if : keyword.control.flow.python, source.python
: source.python
import : keyword.control.import.python, source.python
: source.python
except : keyword.control.flow.python, source.python
: source.python
pass : keyword.control.flow.python, source.python
: source.python
raise : keyword.control.flow.python, source.python
return : keyword.control.flow.python, source.python
: source.python
try : keyword.control.flow.python, source.python
: source.python
while : keyword.control.flow.python, source.python
: source.python
with : keyword.control.flow.python, source.python
: source.python
nonlocal : source.python, storage.modifier.declaration.python
: source.python
global : source.python, storage.modifier.declaration.python
: source.python
class : source.python, storage.type.class.python
def : source.python, storage.type.function.python