Exemplo n.º 1
0
 def is_complete(self, code, _header=None):
     """Ask the kernel whether some code is complete and ready to execute."""
     msg = is_complete_request(code)
     if _header:
         msg.header = _header
     self.messaging.send('shell', msg)
     return msg.header['msg_id']
Exemplo n.º 2
0
 def is_complete(self, code, _header=None):
     msg = is_complete_request(code)
     self._send('shell', msg)
     return msg.header['msg_id']