Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
71
class
LazyList(list):
Callers
3
process_assign
Function · 0.80
test_json
Function · 0.80
test_weird_encoding
Function · 0.80
Calls
1
_fill
Method · 0.45
Tested by
2
test_json
Function · 0.64
test_weird_encoding
Function · 0.64