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 02f2031 commit 2c10160Copy full SHA for 2c10160
python/ql/consistency-queries/DataFlowConsistency.ql
@@ -15,8 +15,10 @@ private module Input implements InputSig<PythonDataFlow> {
15
private import Public
16
17
predicate argHasPostUpdateExclude(ArgumentNode n) {
18
+ // TODO: Implement post-updates for *args, see tests added in https://github.com/github/codeql/pull/14936
19
exists(ArgumentPosition apos | n.argumentOf(_, apos) and apos.isStarArgs(_))
20
or
21
+ // TODO: Implement post-updates for **kwargs, see tests added in https://github.com/github/codeql/pull/14936
22
exists(ArgumentPosition apos | n.argumentOf(_, apos) and apos.isDictSplat())
23
}
24
0 commit comments