MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / iteritems

Method iteritems

pydevd_attach_to_process/winappdbg/registry.py:198–206  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

196 index += 1
197
198 def iteritems(self):
199 handle = self.handle
200 index = 0
201 while 1:
202 resp = win32.RegEnumValue(handle, index)
203 if resp is None:
204 break
205 yield resp[0], resp[2]
206 index += 1
207
208 def keys(self):
209 # return list(self.iterkeys()) # that can't be optimized by psyco

Calls

no outgoing calls

Tested by

no test coverage detected