Skip to content

Commit

Permalink
magickernel: add ability to use self.raw_input... now need to inject …
Browse files Browse the repository at this point in the history
…into kernel language, or magic
  • Loading branch information
dsblank committed Sep 24, 2014
1 parent cab2bd8 commit 9262569
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jupyter_kernel/magickernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ def restart_kernel(self):

def do_execute(self, code, silent, store_history=True, user_expressions=None,
allow_stdin=False):
# Set the ability for the kernel to get standard-in:
self._allow_stdin = allow_stdin
# Create a default response:
kernel_resp = {
'status': 'ok',
# The base class increments the execution count
Expand Down

0 comments on commit 9262569

Please sign in to comment.