-
Notifications
You must be signed in to change notification settings - Fork 752
/
Copy pathpython38.py
107 lines (96 loc) · 1.15 KB
/
python38.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
#: Okay
def f1(a, /, b):
pass
def f2(a, b, /):
pass
def f3(
a,
/,
b,
):
pass
lambda a, /: None
#: Okay
if x := 1:
print(x)
if m and (token := m.group(1)):
pass
stuff = [[y := f(x), x / y] for x in range(5)]
#: E225:1:5
if x:= 1:
pass
#: E225:1:18
if False or (x :=1):
pass
#: Okay
import typing as t
__all__: t.List[str] = []
import logging
logging.getLogger(__name__)
#: E402
import typing as t
all_the_things: t.List[str] = []
import logging
#: E221:1:5 E222:1:9 E221:3:6
if x := 1:
pass
if (x := 2):
pass
#: E223:1:5 E224:1:8
if x := 2:
pass
#: E221:1:6 E221:1:19
if (x := 1) == (y := 2):
pass
#: E741
while l := 1:
pass
#: E741
if (l := 1):
pass
#: Okay
def f(
x=4 / 2, y=(1, 4 / 2), /
):
...
#: W504:4:14
def f(
x=4 / 2,
y=(
1, 4 /
2
),
/
):
...
#: W504:2:9
def f(
x=4 /
2,
y=(1, 4 / 2),
/
):
...
#: Okay
def f(
x=4 / 2, y=(1, 4 / 2), /
):
...
#: W503:5:9
def f(
x=4 / 2,
y=(
1, 4
/ 2
),
/
):
...
#: W503:3:5
def f(
x=4
/ 2,
y=(1, 4 / 2),
/
):
...