From 584e9d75c49c848f6e0d18dbf5029296bd8ed47a 2011-04-06 19:58:04 From: Brian Granger Date: 2011-04-06 19:58:04 Subject: [PATCH] Fixed docstring of IPython.kernel.__init__. --- diff --git a/IPython/kernel/__init__.py b/IPython/kernel/__init__.py index 7ee9fa4..a126c0b 100644 --- a/IPython/kernel/__init__.py +++ b/IPython/kernel/__init__.py @@ -1,6 +1,10 @@ -msg = """IPython.kernel has been replaced by IPython.parallel. +"""IPython.kernel has been replaced by IPython.parallel. + +The previous version of IPython's parallel library was located at this +location (IPython.kernel). It has been moved to the IPython.parallel +subpackage and has been refactored to use zeromq/pyzmq instead of twisted. Please see INSERT URL for further details. """ -raise ImportError(msg) \ No newline at end of file +raise ImportError(__doc__)