call site 9 for execnet.Channel.receive
execnet/testing/test_gateway.py - line 171
167
168
169
170
171
172
173
174
   def test_channel_syntax_error(self):
       # missing colon
       channel = self.gw.remote_exec('def foo()\n return 1\nfoo()\n')
       try:
->         channel.receive()
       except channel.RemoteError, e:
           assert str(e).startswith('Traceback (most recent call last):')
           assert str(e).find('SyntaxError') > -1