This was the case locally, but not in CI.. 🤷

Revert "python: no longer missing"

This reverts commit f796177b69.
This commit is contained in:
Rasmus Lerchedahl Petersen
2023-04-25 21:34:27 +02:00
parent d4953ef26a
commit 0338d4ef9c

View File

@@ -43,12 +43,12 @@ def OK():
class With_index:
def __index__(self):
SINK1(self)
OK()
OK() # Call not found
return 0
def test_index():
import operator
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__
operator.index(with_index)