MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / keys

Method keys

tests/test_code/py/pytz/lazy.py:60–68  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

58 return len(self.data)
59
60 def keys(self):
61 if self.data is None:
62 _fill_lock.acquire()
63 try:
64 if self.data is None:
65 self._fill()
66 finally:
67 _fill_lock.release()
68 return self.data.keys()
69
70
71class LazyList(list):

Callers 3

process_assignFunction · 0.80
test_jsonFunction · 0.80
test_weird_encodingFunction · 0.80

Calls 1

_fillMethod · 0.45

Tested by 2

test_jsonFunction · 0.64
test_weird_encodingFunction · 0.64