Merge pull request #6540 from takluyver/comms-mgr-needs-no-shell

Make comm manager (mostly) independent of InteractiveShell
This commit is contained in:
Jonathan Frederic 2014-10-12 16:11:36 -07:00
commit 6a304fc63c

View File

@ -22,6 +22,9 @@ from IPython.utils.py3compat import annotate
class DummyComm(Comm):
comm_id = 'a-b-c-d'
def open(self, *args, **kwargs):
pass
def send(self, *args, **kwargs):
pass