From fa8c292bd42bbd7b2e52bec9d5030e3b56940c05 2010-11-22 05:04:48 From: David Date: 2010-11-22 05:04:48 Subject: [PATCH] Fixed two minor typos. --- diff --git a/IPython/zmq/blockingkernelmanager.py b/IPython/zmq/blockingkernelmanager.py index 5bbff3d..1015620 100644 --- a/IPython/zmq/blockingkernelmanager.py +++ b/IPython/zmq/blockingkernelmanager.py @@ -47,7 +47,7 @@ class BlockingSubSocketChannel(SubSocketChannel): def get_msg(self, block=True, timeout=None): """Get a message if there is one that is ready.""" - return self.in_queue.get(block, timeout) + return self._in_queue.get(block, timeout) def get_msgs(self): """Get all messages that are currently ready.""" @@ -79,7 +79,7 @@ class BlockingXReqSocketChannel(XReqSocketChannel): def get_msg(self, block=True, timeout=None): """Get a message if there is one that is ready.""" - return self.in_queue.get(block, timeout) + return self._in_queue.get(block, timeout) def get_msgs(self): """Get all messages that are currently ready."""