call site 0 for execnet.Channel.__init__
execnet/testing/test_gateway.py - line 62
61
62
63
64
65
   def test_factory_create(self):
->     chan1 = self.fac.new()
       assert chan1.id == 1
       chan2 = self.fac.new()
       assert chan2.id == 3
execnet/channel.py - line 215
206
207
208
209
210
211
212
213
214
215
216
217
218
219
   def new(self, id=None):
       """ create a new Channel with 'id' (or create new id if None). """
       self._writelock.acquire()
       try:
           if self.finished:
               raise IOError("connexion already closed: %s" % (self.gateway,))
           if id is None:
               id = self.count
               self.count += 2
->         channel = Channel(self.gateway, id)
           self._channels[id] = channel
           return channel
       finally:
           self._writelock.release()