Lines Matching refs:creator
1901 def __new__(cls, end, interp, other, extra, creator): argument
1914 if not creator:
1915 creator = 'same'
1916 self = super().__new__(cls, end, interp, other, extra, creator)
1931 creator = self._get_interpreter(self.creator)
1932 self._cid = self._new_channel(creator)
1959 def _new_channel(self, creator): argument
1960 if creator.name == 'main':
1964 run_interp(creator.id, f"""
2217 for creator in ('same', 'other', 'creator'):
2219 yield ChannelCloseFixture(end, interp, other, extra, creator)