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.
SINK3_F(kwargs["c"])
1 parent c099dbd commit cef933fCopy full SHA for cef933f
python/ql/test/experimental/dataflow/coverage/argumentPassing.py
@@ -174,6 +174,7 @@ def with_doublestar(**kwargs):
174
def only_kwargs(**kwargs):
175
SINK1(kwargs["a"])
176
SINK2(kwargs["b"])
177
+ # testing precise content tracking, that content from `a` or `b` does not end up here.
178
179
180
@expects(3)
@@ -189,6 +190,7 @@ def mixed(a, **kwargs):
189
190
except KeyError:
191
print("OK")
192
193
194
195
196
@expects(4*3)
0 commit comments