Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility with IPython 7 #23

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions rlipython/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from IPython.core.error import TryNext, UsageError
from IPython.core.usage import interactive_usage
from IPython.core.inputsplitter import ESC_MAGIC
from IPython.core.inputtransformer2 import ESC_MAGIC
from IPython.core.interactiveshell import InteractiveShell, InteractiveShellABC
from IPython.terminal.magics import TerminalMagics
from IPython.utils.contexts import NoOpContext
Expand Down Expand Up @@ -152,6 +152,10 @@ class TerminalInteractiveShell(InteractiveShell):
default.""",
)

# Store the number of spaces to use to indent the next line
# Can be either an integer or None
_indent_spaces = None

_term_reset = "\033[0m"
# This is ugly because not only do we have a bunch of ansi escape
# sequences, but we also have to wrap each escape code in \001 and \002
Expand Down Expand Up @@ -365,6 +369,11 @@ def pre_readline(self):
self.readline.insert_text(self.rl_next_input)
self.rl_next_input = None

def _indent_current_str(self):
"""Return the current level of indentation as a string"""
n = 0 if self._indent_spaces is None else self._indent_spaces
return n * " "

def refill_readline_hist(self):
# Load the last 1000 lines from history
self.readline.clear_history()
Expand Down Expand Up @@ -513,6 +522,7 @@ def interact(self, display_banner=None):
# exit_now is set by a call to %Exit or %Quit, through the
# ask_exit callback.

self.lines_waiting = []
while not self.exit_now:
self.hooks.pre_prompt_hook()
if more:
Expand Down Expand Up @@ -544,7 +554,9 @@ def interact(self, display_banner=None):
#double-guard against keyboardinterrupts during kbdint handling
try:
self.write('\n' + self.get_exception_only())
source_raw = self.input_splitter.raw_reset()
source_raw = '\n'.join(self.lines_waiting)
self.lines_waiting = []
self._indent_spaces = None
hlen_b4_cell = \
self._replace_rlhist_multiline(source_raw, hlen_b4_cell)
more = False
Expand All @@ -568,8 +580,10 @@ def interact(self, display_banner=None):
self.showtraceback()
else:
try:
self.input_splitter.push(line)
more = self.input_splitter.push_accepts_more()
self.lines_waiting.append(line)
status, next_indent = self.input_splitter.check_complete('\n'.join(self.lines_waiting))
self._indent_spaces = next_indent
more = status == 'incomplete'
except SyntaxError:
# Run the code directly - run_cell takes care of displaying
# the exception.
Expand All @@ -578,7 +592,8 @@ def interact(self, display_banner=None):
self.autoedit_syntax):
self.edit_syntax_error()
if not more:
source_raw = self.input_splitter.raw_reset()
source_raw = '\n'.join(self.lines_waiting)
self.lines_waiting = []
self.run_cell(source_raw, store_history=True)
hlen_b4_cell = \
self._replace_rlhist_multiline(source_raw, hlen_b4_cell)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
name='rlipython',
version='0.1.2',
packages=['rlipython',],
install_requires=["ipython>5.3"],
install_requires=["ipython>=7.0.0"],
extras_requires=extras_requires,
license='BSD',
author='The IPython Development Team',
author_email='[email protected]',
url='https://github.com/ipython/rlipython',
description="readline integration for IPython 5.4+ and 6.0+",
description="readline integration for IPython 7.0+",
long_description=description
)