MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / __repr__

Method __repr__

pymongo/collation.py:204–206  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

202 return self.__document.copy()
203
204 def __repr__(self) -> str:
205 document = self.document
206 return "Collation({})".format(", ".join(f"{key}={document[key]!r}" for key in document))
207
208 def __eq__(self, other: Any) -> bool:
209 if isinstance(other, Collation):

Callers

nothing calls this directly

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected