MCPcopy Index your code
hub / github.com/python/cpython / index

Method index

Lib/collections/__init__.py:1381–1382  ·  view source on GitHub ↗
(self, item, *args)

Source from the content-addressed store, hash-verified

1379 return self.data.count(item)
1380
1381 def index(self, item, *args):
1382 return self.data.index(item, *args)
1383
1384 def reverse(self):
1385 self.data.reverse()

Callers 3

test_implementationMethod · 0.95
indexMethod · 0.45
get_sharedFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_implementationMethod · 0.76