-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c81bd4
commit 1d324af
Showing
48 changed files
with
2,552 additions
and
2,529 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"""Client-side implementations of the Jupyter protocol""" | ||
|
||
from ._version import version_info, __version__, protocol_version_info, protocol_version | ||
from ._version import __version__, protocol_version, protocol_version_info, version_info | ||
from .asynchronous import AsyncKernelClient | ||
from .blocking import BlockingKernelClient | ||
from .client import KernelClient | ||
from .connect import * | ||
from .launcher import * | ||
from .client import KernelClient | ||
from .manager import KernelManager, AsyncKernelManager, run_kernel | ||
from .blocking import BlockingKernelClient | ||
from .asynchronous import AsyncKernelClient | ||
from .multikernelmanager import MultiKernelManager, AsyncMultiKernelManager | ||
from .manager import AsyncKernelManager, KernelManager, run_kernel | ||
from .multikernelmanager import AsyncMultiKernelManager, MultiKernelManager |
Oops, something went wrong.