Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4953ef commit 0338d4eCopy full SHA for 0338d4e
1 file changed
python/ql/test/experimental/dataflow/coverage-py2/classes.py
@@ -43,12 +43,12 @@ def OK():
43
class With_index:
44
def __index__(self):
45
SINK1(self)
46
- OK()
+ OK() # Call not found
47
return 0
48
49
50
def test_index():
51
import operator
52
53
- with_index = With_index() #$ arg1="SSA variable with_index" func=With_index.__index__
+ with_index = With_index() #$ MISSING: arg1="SSA variable with_index" func=With_index.__index__
54
operator.index(with_index)
0 commit comments