kernel.py
13 lines
| 297 B
| text/x-python
|
PythonLexer
MinRK
|
r9351 | """[DEPRECATED] Utilities for connecting to kernels | ||
MinRK
|
r4970 | |||
MinRK
|
r9355 | Moved to IPython.kernel.connect | ||
MinRK
|
r4970 | """ | ||
MinRK
|
r9351 | import warnings | ||
Matthias Bussonnier
|
r21889 | warnings.warn("IPython.lib.kernel moved to IPython.kernel.connect in IPython 1.0," | ||
Matthias Bussonnier
|
r21892 | " and will be removed in IPython 6.0.", | ||
MinRK
|
r9351 | DeprecationWarning | ||
) | ||||
MinRK
|
r4970 | |||
Min RK
|
r21337 | from ipykernel.connect import * | ||
MinRK
|
r5620 | |||