MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / iterallitems

Method iterallitems

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

Source from the content-addressed store, hash-verified

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)
2543
2544 def allitems(self):
2545 return [(k, v) for k, vl in self.dict.iteritems() for v in vl]

Callers

nothing calls this directly

Calls 1

iteritemsMethod · 0.80

Tested by

no test coverage detected