MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / iteritems

Method iteritems

thirdparty/bottle/bottle.py:2538–2539  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2536 return (v[-1] for v in self.dict.itervalues())
2537
2538 def iteritems(self):
2539 return ((k, v[-1]) for k, v in self.dict.iteritems())
2540
2541 def iterallitems(self):
2542 return ((k, v) for k, vl in self.dict.iteritems() for v in vl)

Callers 3

iterallitemsMethod · 0.80
allitemsMethod · 0.80
iteritemsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected