call site 5 for execnet.Channel.receive
execnet/testing/test_gateway.py - line 133
131
132
133
134
135
136
137
   def test_channel_finish_and_then_EOFError(self):
       channel = self.gw.remote_exec('channel.send(42)') 
->     x = channel.receive()
       assert x == 42
       py.test.raises(EOFError, channel.receive) 
       py.test.raises(EOFError, channel.receive) 
       py.test.raises(EOFError, channel.receive)