Skip to content

Commit

Permalink
White space after REPL prompt (#22549)
Browse files Browse the repository at this point in the history
There should be white space after new REPL prompt that I override for
purpose of shell integration.
Resolves: #22548
  • Loading branch information
anthonykim1 authored Nov 28, 2023
1 parent 261ae66 commit 3efb54f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pythonFiles/pythonrc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

original_ps1 = ">>>"
original_ps1 = ">>> "


class repl_hooks:
Expand Down
4 changes: 2 additions & 2 deletions pythonFiles/tests/test_shell_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_decoration_success():

ps1.hooks.failure_flag = False
result = str(ps1)
assert result == "\x1b]633;D;00\x07\x1b]633;A\x07>>>\x1b]633;B\x07\x1b]633;C\x07"
assert result == "\x1b]633;D;00\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07"


def test_decoration_failure():
Expand All @@ -20,7 +20,7 @@ def test_decoration_failure():
ps1.hooks.failure_flag = True
result = str(ps1)

assert result == "\x1b]633;D;10\x07\x1b]633;A\x07>>>\x1b]633;B\x07\x1b]633;C\x07"
assert result == "\x1b]633;D;10\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07"


def test_displayhook_call():
Expand Down

0 comments on commit 3efb54f

Please sign in to comment.