1
2#? ['raise']
3raise
4
5#? ['Exception']
6except
7
8#? []
9b + continu
10
11#? []
12b + continue
13
14#? ['continue']
15b; continue
16
17#? ['continue']
18b; continu
19
20#? []
21c + pass
22
23#? []
24a + pass
25
26#? ['pass']
27b; pass
28
29# -----------------
30# Keywords should not appear everywhere.
31# -----------------
32
33#? []
34with open() as f
35#? []
36def i
37#? []
38class i
39
40#? []
41continue i
42
43# More syntax details, e.g. while only after newline, but not after semicolon,
44# continue also after semicolon
45#? ['while']
46while
47#? []
48x while
49#? []
50x; while
51#? ['continue']
52x; continue
53
54#? []
55and
56#? ['and']
57x and
58#? []
59x * and
60