We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cddabc commit 7a762adCopy full SHA for 7a762ad
testsuite/python38.py
@@ -53,3 +53,49 @@ def f3(
53
#: E221:1:6 E221:1:19
54
if (x := 1) == (y := 2):
55
pass
56
+#: Okay
57
+def f(
58
+ x=4 / 2, y=(1, 4 / 2), /
59
+):
60
+ ...
61
+#: W504:4:14
62
63
+ x=4 / 2,
64
+ y=(
65
+ 1, 4 /
66
+ 2
67
+ ),
68
+ /
69
70
71
+#: W504:2:9
72
73
+ x=4 /
74
+ 2,
75
+ y=(1, 4 / 2),
76
77
78
79
80
81
82
83
84
+#: W503:5:9
85
86
87
88
+ 1, 4
89
+ / 2
90
91
92
93
94
+#: W503:3:5
95
96
+ x=4
97
+ / 2,
98
99
100
101
0 commit comments