MCPcopy Create free account
hub / github.com/apple/foundationdb / KeyValue

Class KeyValue

bindings/python/fdb/impl.py:1290–1299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1288
1289
1290class KeyValue(object):
1291 def __init__(self, key, value):
1292 self.key = key
1293 self.value = value
1294
1295 def __repr__(self):
1296 return '%s: %s' % (repr(self.key), repr(self.value))
1297
1298 def __iter__(self):
1299 return KVIter(self)
1300
1301
1302def check_error_code(code, func, arguments):

Callers 1

waitMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected