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

Method __repr__

python/ray/actor.py:2511–2516  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2509 return self._ray_method_signatures.keys()
2510
2511 def __repr__(self):
2512 return (
2513 "Actor("
2514 f"{self._ray_actor_creation_function_descriptor.class_name}, "
2515 f"{self._actor_id.hex()})"
2516 )
2517
2518 def __hash__(self):
2519 # Look up directly in __dict__ to avoid __getattr__, which for

Callers

nothing calls this directly

Calls 1

hexMethod · 0.45

Tested by

no test coverage detected