MCPcopy
hub / github.com/pallets/werkzeug / items

Method items

tests/test_datastructures.py:29–32  ·  view source on GitHub ↗
(self, multi=1)

Source from the content-addressed store, hash-verified

27 return iter([1, 2, 3] * multi)
28
29 def items(self, multi=1):
30 return iter(
31 zip(iter(self.keys(multi=multi)), iter(self.values(multi=multi)))
32 )
33
34 d = StupidDict()
35 expected_keys = ["a", "b", "c"]

Callers 9

test_basicMethod · 0.95
test_create_environFunction · 0.45
test_appFunction · 0.45
test_form_data_orderingFunction · 0.45
test_basic_interfaceMethod · 0.45
test_basic_interfaceMethod · 0.45
test_dispatcherFunction · 0.45
appFunction · 0.45

Calls 2

keysMethod · 0.95
valuesMethod · 0.95

Tested by

no test coverage detected