-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathmatch1.py
227 lines (163 loc) · 4.54 KB
/
match1.py
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# This sample tests basic parsing of match statements as
# described in PEP 634.
from typing import Any
value_obj: Any = 4
class Foo:
x: int
match (1, ):
case a1, b1 if True:
pass
case (a2, b2):
pass
case [a3, b3]:
pass
case () | []:
pass
# This should generate an error because of a missing pattern.
case :
pass
# This should generate an error because it is an irrefutable pattern
# and is not at the end.
case (a4):
pass
case (a5,):
pass
case [a6,]:
pass
case a7 as b7, c7 as d7 if True:
pass
case (a8, b8, ) as c8 if 1 == 3:
pass
case a9, *b8:
pass
# This should generate an error because multiple star
# patterns in a sequence are not allowed.
case *a10, *b10:
pass
# This should generate an error because star
# patterns cannot be used with "as".
case *a11 as b11, b12:
pass
case value_obj.a, value_obj.b:
pass
# This should generate an error because star
# patterns can't be used with |.
case (3 as b13) | (4 as b13) | *b13:
pass
case *a14, b14:
pass
case (a20, (b20,), [c20, *d20]) as e20:
pass
case 3 | -3:
pass
case 3.2 - 2.1j | -3.2 + 2.1j | 3j:
pass
# This should generate an error because the grammar
# indicates that imaginary number must come second.
case 2j + 4:
pass
# This should generate an error because the grammar
# indicates that imaginary number must come second.
case - 2j + 4:
pass
case "hi" """hi""" | r"hi" r"""hi""":
pass
# This should generate an error because f-strings are
# not allowed.
case "hi" f"""hi""":
pass
# This should generate an error.
case {}:
pass
case {"a": 3, -3 + 4j: a30, value_obj.a: b30, **c30}:
pass
# This should generate an error because only one ** expression
# can be used.
case {"a": 3, **a31, "b": -3j, **b31}:
pass
# This should generate an error because ** cannot be used with
# wildcard "_".
case {"a": 3, **_, "b": -3}:
pass
case (3 as x) as y:
pass
case int():
pass
case Foo(1, a40, value_obj.b as b40, c40=3|-2 + 5j|"hi" as d40, y=[e40, f40] as g40,):
pass
# This should generate an error because positional arguments
# cannot appear after keyword arguments.
case Foo(1, a41, x=3, value_obj.b as b41, c41=3, y=[d41, e41] as f41):
pass
# This should generate three errors because irrefutable patterns
# must appear only as the last entry in an or pattern.
case (_ as x) | x:
pass
# This should generate an error because it's an irrefutable pattern
# but is not the last case statement.
case _:
pass
# This should generate an error because it's an irrefutable pattern
# but is not the last case statement.
case (x):
pass
case _ if value_obj:
pass
# This should generate an error because or patterns must target the
# same names.
case 3 | x:
pass
case _:
pass
def func1():
match = Foo()
# This should be treated as an expression statement, not a match statement.
match.x
def func2():
match = [3]
# This should be treated as an expression statement, not a match statement.
match[0]
match [0]:
case _:
pass
def func3():
def match(a: int): ...
# This should be treated as a call statement.
match(0)
match (0):
case _:
pass
def func4():
match 1, 2, "3":
case _:
pass
def func5(match: Any):
# This should be treated as a list, not a match statement.
match[2:8, 2:8] = 0
class Point:
def __init__(self, x: int, y: int) -> None:
self.x = x
self.y = y
def func6(subj: Any):
match subj:
# This should generate an error because a is used twice in the same pattern.
case [a, *a]:
pass
case ([c, d] as f) | ([d, c] as f):
pass
# This should generate an error because h is used twice in the same pattern.
case (g, 1 as h) as h:
pass
# This should generate an error because j is used twice in the same pattern.
case Point(x=j, y=j):
pass
def func7():
match +1:
case _:
pass
match -1:
case _:
pass
match ~1:
case _:
pass