call site 17 for execnet.Channel.receive
execnet/testing/test_gateway.py - line 140
138
139
140
141
142
   def test_channel_close_and_then_receive_error_multiple(self):
       channel = self.gw.remote_exec('channel.send(42) ; raise ValueError')
->     x = channel.receive()
       assert x == 42
       py.test.raises(channel.RemoteError, channel.receive)