MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / __repr__

Method __repr__

couchbase/result.py:681–686  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

679 return res
680
681 def __repr__(self):
682 output_results = []
683 for k, v in self._results.items():
684 output_results.append(f'{k}:{v}')
685
686 return f'MultiMutationResult( {", ".join(output_results)} )'
687
688
689MultiResultType = Union[MultiGetResult, MultiMutationResult]

Callers

nothing calls this directly

Calls 2

itemsMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected