From 762d84e041ef9852a19708a081ea4502f3fddb8c 2013-04-24 04:47:49 From: MinRK Date: 2013-04-24 04:47:49 Subject: [PATCH] remove commented-out Client.init --- diff --git a/IPython/kernel/client.py b/IPython/kernel/client.py index 8ca6086..e1e24e7 100644 --- a/IPython/kernel/client.py +++ b/IPython/kernel/client.py @@ -69,15 +69,6 @@ class KernelClient(LoggingConfigurable, ConnectionFileMixin): _stdin_channel = Any _hb_channel = Any - # def __init__(self, *args, **kwargs): - # super(KernelClient, self).__init__(*args, **kwargs) - # # setup channel proxy methods, e.g. - # # Client.execute => shell_channel.execute - # for channel in ['shell', 'iopub', 'stdin', 'hb']: - # cls = getattr(self, '%s_channel_class' % channel) - # for method in cls.proxy_methods: - # setattr(self, method, self._proxy_method(channel, method)) - # #-------------------------------------------------------------------------- # Channel proxy methods #--------------------------------------------------------------------------