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 b22b672 commit 05c4286Copy full SHA for 05c4286
testsuite/python38.py
@@ -59,3 +59,49 @@ def f3(
59
#: E741
60
if (l := 1):
61
pass
62
+#: Okay
63
+def f(
64
+ x=4 / 2, y=(1, 4 / 2), /
65
+):
66
+ ...
67
+#: W504:4:14
68
69
+ x=4 / 2,
70
+ y=(
71
+ 1, 4 /
72
+ 2
73
+ ),
74
+ /
75
76
77
+#: W504:2:9
78
79
+ x=4 /
80
+ 2,
81
+ y=(1, 4 / 2),
82
83
84
85
86
87
88
89
90
+#: W503:5:9
91
92
93
94
+ 1, 4
95
+ / 2
96
97
98
99
100
+#: W503:3:5
101
102
+ x=4
103
+ / 2,
104
105
106
107
0 commit comments