MCPcopy Index your code
hub / github.com/bslatkin/effectivepython / get

Method get

example_code/item_073.py:307–309  ·  view source on GitHub ↗
(self, y, x)

Source from the content-addressed store, hash-verified

305 return super().__str__()
306
307 def get(self, y, x):
308 with self.lock:
309 return super().get(y, x)
310
311 def set(self, y, x, state):
312 with self.lock:

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected