Files
codeql/python/ql/test/library-tests/PointsTo/indexing/fake_collections.py
2018-11-19 15:15:54 +00:00

17 lines
326 B
Python

# Use a fake collection module, otherwise we need to set the import depth to 3
# which makes the test run very slowly.
class deque(object):
def __getitem__(self, index):
pass
def append(self, item):
pass
def index(self, key):
pass
def __reversed__(self):
pass