MCPcopy
hub / github.com/celery/celery / as_tuple

Method as_tuple

celery/result.py:965–969  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

963 return hash(self.id)
964
965 def as_tuple(self):
966 return (
967 (self.id, self.parent and self.parent.as_tuple()),
968 [r.as_tuple() for r in self.results]
969 )
970
971 @property
972 def children(self):

Callers 3

test_GroupResultMethod · 0.95

Calls 1

as_tupleMethod · 0.45

Tested by 3

test_GroupResultMethod · 0.76