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 05c4286 commit b6af9c1Copy full SHA for b6af9c1
testsuite/python3.py
@@ -46,3 +46,55 @@ def f(
46
x: str = ...
47
):
48
...
49
+#: E203
50
+def f(
51
+ x=4 / 2, y=(1, 4 / 2), *
52
+ , arg
53
+):
54
+ ...
55
+#: E203 W504:4:14
56
57
+ x=4 * 2,
58
+ y=(
59
+ 1, 4 *
60
+ 2
61
+ ),
62
+ *
63
64
65
66
+#: E203 W504:2:9
67
68
+ x=4 *
69
+ 2,
70
+ y=(1, 4 * 2),
71
72
73
74
75
76
77
+ x=4 * 2, y=(1, 4 * 2), *
78
79
80
81
+#: E203 W503:5:9
82
83
84
85
+ 1, 4
86
+ * 2
87
88
89
90
91
92
+#: E203 W503:3:5
93
94
+ x=4
95
+ * 2,
96
97
98
99
100
0 commit comments