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

Method __repr__

pymongo/operations.py:802–807  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

800 return self.__document
801
802 def __repr__(self) -> str:
803 return "{}({}{})".format(
804 self.__class__.__name__,
805 self.document["key"],
806 "".join([f", {key}={value!r}" for key, value in self.document.items() if key != "key"]),
807 )
808
809
810class SearchIndexModel:

Callers

nothing calls this directly

Calls 2

itemsMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected