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 39dc697 commit b0d5366Copy full SHA for b0d5366
python/ql/lib/semmle/python/essa/SsaDefinitions.qll
@@ -25,7 +25,9 @@ module SsaSource {
25
// since parameter will be considered a DefinitionNode, if it has a default value,
26
// we need to exclude it here since it is already covered by parameter_definition
27
// (and points-to was unhappy that it was included in both)
28
- not parameter_definition(v, defn)
+ not parameter_definition(v, defn) and
29
+ // similarly for with-definitions
30
+ not with_definition(v, defn)
31
}
32
33
/** Holds if `v` is defined by assignment of the captured exception. */
0 commit comments