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

Class ColNoIter

Lib/test/test_collections.py:1104–1106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1102 '__contains__')
1103 # Check sized container non-iterable (which is not Collection) etc.
1104 class ColNoIter:
1105 def __len__(self): return 0
1106 def __contains__(self, item): return False
1107 class ColNoSize:
1108 def __iter__(self): return iter([])
1109 def __contains__(self, item): return False

Callers 1

test_CollectionMethod · 0.85

Calls

no outgoing calls

Tested by 1

test_CollectionMethod · 0.68