MCPcopy Create free account
hub / github.com/alibaba/GraphScope / __del__

Method __del__

python/graphscope/framework/context.py:699–704  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

697 df.to_csv(fd, header=True, index=False)
698
699 def __del__(self):
700 # cleanly ignore all exceptions, cause session may already closed / destroyed.
701 try:
702 self._session.run(self._unload())
703 except Exception: # pylint: disable=broad-except
704 pass
705
706 def _unload(self):
707 return self._session._wrapper(self._context_node._unload())

Callers

nothing calls this directly

Calls 2

_unloadMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected