MCPcopy Index your code
hub / github.com/python/cpython / iterkeys

Method iterkeys

Lib/dbm/dumb.py:260–264  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

258 raise
259
260 def iterkeys(self):
261 try:
262 return iter(self._index)
263 except TypeError:
264 raise error('DBM object has already been closed') from None
265 __iter__ = iterkeys
266
267 def __len__(self):

Callers

nothing calls this directly

Calls 1

errorClass · 0.70

Tested by

no test coverage detected