MCPcopy Index your code
hub / github.com/apache/cassandra-python-driver / update

Method update

cassandra/util.py:326–333  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

324 self.data.discard(ref(item))
325
326 def update(self, other):
327 if self._pending_removals:
328 self._commit_removals()
329 if isinstance(other, self.__class__):
330 self.data.update(other.data)
331 else:
332 for element in other:
333 self.add(element)
334
335 def __ior__(self, other):
336 self.update(other)

Callers 15

__init__Method · 0.95
__ior__Method · 0.95
mainFunction · 0.45
use_clusterFunction · 0.45
update_datatypesFunction · 0.45
recv_results_rowsMethod · 0.45
fetch_jsonMethod · 0.45

Calls 2

_commit_removalsMethod · 0.95
addMethod · 0.95