From 08b95f8c387147b55c772e70b76cccdfdf4e043c 2012-05-13 22:09:35 From: MinRK Date: 2012-05-13 22:09:35 Subject: [PATCH] scrub: ident on iopub --- diff --git a/IPython/zmq/ipkernel.py b/IPython/zmq/ipkernel.py index 8ee9f96..990604f 100755 --- a/IPython/zmq/ipkernel.py +++ b/IPython/zmq/ipkernel.py @@ -284,15 +284,19 @@ class Kernel(Configurable): def _publish_pyin(self, code, parent, execution_count): """Publish the code request on the pyin stream.""" - self.session.send(self.iopub_stream, u'pyin', {u'code':code, - u'execution_count': execution_count}, parent=parent) + self.session.send(self.iopub_stream, u'pyin', + {u'code':code, u'execution_count': execution_count}, + parent=parent, + ) def execute_request(self, stream, ident, parent): self.session.send(self.iopub_stream, u'status', {u'execution_state':u'busy'}, - parent=parent ) + parent=parent, + ident='status', + ) try: content = parent[u'content']