MCPcopy
hub / github.com/ray-project/ray / _base_str

Method _base_str

python/ray/exceptions.py:646–657  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

644 )
645
646 def _base_str(self):
647 msg = f"Failed to retrieve object {self.object_ref_hex}. "
648 if self.call_site:
649 msg += f"The ObjectRef was created at: {self.call_site}"
650 else:
651 msg += (
652 "To see information about where this ObjectRef was created "
653 "in Python, set the environment variable "
654 "RAY_record_ref_creation_sites=1 during `ray start` and "
655 "`ray.init()`."
656 )
657 return msg
658
659 def __str__(self):
660 return (

Callers 6

__str__Method · 0.95
__str__Method · 0.80
__str__Method · 0.80
__str__Method · 0.80
__str__Method · 0.80
__str__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected