This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/yap_kernel/yap_ipython/lib/kernel.py

14 lines
309 B
Python
Raw Normal View History

2018-01-05 16:57:38 +00:00
"""[DEPRECATED] Utilities for connecting to kernels
Moved to yap_ipython.kernel.connect
"""
import warnings
2018-10-16 14:33:16 +01:00
warnings.warn("yap_ipython.lib.kernel moved to yap_ipython.kernel.connect in IPython 1.0,"
" and will be removed in IPython 6.0.",
2018-01-05 16:57:38 +00:00
DeprecationWarning
)
2018-10-16 14:33:16 +01:00
from ipykernel.connect import *
2018-01-05 16:57:38 +00:00