call site 5 for execnet.Channel.receive
execnet/testing/test_gateway.py - line 97
92
93
94
95
96
97
98
99
   def test_correct_setup_no_py(self):
       channel = self.gw.remote_exec("""
               import sys
               channel.send(sys.modules.keys())
           """) 
->     remotemodules = channel.receive() 
       assert 'py' not in remotemodules, (
               "py should not be imported on remote side")