Python: Ignore SynthDictSplatArgumentNode failures

This commit is contained in:
Rasmus Wriedt Larsen
2024-03-01 13:59:00 +01:00
parent bff95c4c1b
commit 1658a1cb80
2 changed files with 3 additions and 7 deletions

View File

@@ -8,6 +8,9 @@ private module ConsistencyChecksInput implements ConsistencyChecksInputSig {
n instanceof DataFlowPrivate::SyntheticPostUpdateNode
or
n instanceof DataFlowPrivate::SyntheticPreUpdateNode
or
// TODO: when adding support for proper content, handle **kwargs passing better!
n instanceof DataFlowPrivate::SynthDictSplatArgumentNode
}
}