MCPcopy Index your code
hub / github.com/python/cpython / cid

Method cid

Lib/test/test__interpchannels.py:1442–1448  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1440
1441 @property
1442 def cid(self):
1443 try:
1444 return self._cid
1445 except AttributeError:
1446 creator = self._get_interpreter(self.creator)
1447 self._cid = self._new_channel(creator)
1448 return self._cid
1449
1450 def get_interpreter(self, interp):
1451 interp = self._get_interpreter(interp)

Callers

nothing calls this directly

Calls 2

_get_interpreterMethod · 0.95
_new_channelMethod · 0.95

Tested by

no test coverage detected