annotate jupyter_c_kernel/__main__.py @ 55:4a03cede4763

Merge pull request #27 from spoorcc/issue-14 Fix #14: Add args magic to provide cli-args to user program committer: GitHub <noreply@github.com>
author Brendan Rius <brendan.rius@gmail.com>
date Thu, 13 Apr 2017 11:29:48 +0200
parents ee3ac764f5f0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
1 from ipykernel.kernelapp import IPKernelApp
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
2 from .kernel import CKernel
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
3 IPKernelApp.launch_instance(kernel_class=CKernel)