MCPcopy
hub / github.com/cherrypy/cherrypy / items

Method items

cherrypy/lib/sessions.py:395–399  ·  view source on GitHub ↗

D.items() -> list of D's (key, value) pairs, as 2-tuples.

(self)

Source from the content-addressed store, hash-verified

393 return self._data.keys()
394
395 def items(self):
396 """D.items() -> list of D's (key, value) pairs, as 2-tuples."""
397 if not self.loaded:
398 self.load()
399 return self._data.items()
400
401 def values(self):
402 """D.values() -> list of D's values."""

Callers 15

handlerFunction · 0.80
downgrade_wsgi_ux_to_1xFunction · 0.80
accessMethod · 0.80
test_callable_specFunction · 0.80
mergeFunction · 0.80
_tree_namespace_handlerFunction · 0.80
popargsFunction · 0.80
respondMethod · 0.80
process_urlencodedFunction · 0.80
processMethod · 0.80
get_servingMethod · 0.80

Calls 1

loadMethod · 0.95

Tested by 15

test_callable_specFunction · 0.64
makemapMethod · 0.64
defaultMethod · 0.64
indexMethod · 0.64
wrapperFunction · 0.64
testConfigMethod · 0.64
__next__Method · 0.64
multipart_form_dataMethod · 0.64
reqparamsMethod · 0.64
extra_charsetMethod · 0.64
force_charsetMethod · 0.64