kernel.py 297 B

12345678910111213
  1. """[DEPRECATED] Utilities for connecting to kernels
  2. Moved to IPython.kernel.connect
  3. """
  4. import warnings
  5. warnings.warn("IPython.lib.kernel moved to IPython.kernel.connect in IPython 1.0,"
  6. " and will be removed in IPython 6.0.",
  7. DeprecationWarning
  8. )
  9. from ipykernel.connect import *