MCPcopy Index your code
hub / github.com/RustPython/RustPython / count

Method count

Lib/collections/__init__.py:1338–1339  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

1336 return self.__class__(self)
1337
1338 def count(self, item):
1339 return self.data.count(item)
1340
1341 def index(self, item, *args):
1342 return self.data.index(item, *args)

Callers 2

countMethod · 0.45
ThreadPoolExecutorClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected