Skip to content
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7e633d7
gh-130698: Add safe methods to get prompts for new REPL
sergey-miryanov Mar 11, 2025
707bd38
Fix missing types
sergey-miryanov Mar 11, 2025
ab84ee6
Fix handling of arg prompt and add tests for it
sergey-miryanov Mar 12, 2025
5d91db7
Make mypy happy again
sergey-miryanov Mar 12, 2025
e0b474b
Add news entry
sergey-miryanov Mar 12, 2025
02e7e84
Update Misc/NEWS.d/next/Library/2025-03-13-00-39-54.gh-issue-130698.o…
sergey-miryanov Apr 19, 2025
c68a695
Merge branch 'main' into gh-130698-pyrepl-ps1-exception
sergey-miryanov Apr 19, 2025
5293313
Merge branch 'gh-130698-pyrepl-ps1-exception' of github.com:sergey-mi…
sergey-miryanov Apr 19, 2025
4fc6853
Simplify tests for reader with buggy prompt
sergey-miryanov Apr 19, 2025
ba8633b
Fix DEFAULT_PS2 string
sergey-miryanov Apr 19, 2025
cac161d
Make __get_prompt_str less stricter
sergey-miryanov Apr 19, 2025
60c189f
Update docstring for __get_prompt_str
sergey-miryanov Apr 20, 2025
fb66f37
Merge branch 'main' into gh-130698-pyrepl-ps1-exception
sergey-miryanov Jun 13, 2025
abd1737
Merge branch 'gh-130698-pyrepl-ps1-exception' of github.com:sergey-mi…
sergey-miryanov Jun 13, 2025
9baac77
Merge branch 'main' into gh-130698-pyrepl-ps1-exception
efimov-mikhail Nov 1, 2025
e99d76a
Merge branch 'main' into gh-130698-pyrepl-ps1-exception
sergey-miryanov Nov 2, 2025
575007b
Use DEFAULT_PS* in other places and add MULTILINE_PS*
sergey-miryanov Nov 2, 2025
a1ac233
Fix import
sergey-miryanov Nov 3, 2025
aac7470
Add comment for MULTILINE_PS*
sergey-miryanov Nov 3, 2025
8b23989
Update Lib/_pyrepl/reader.py
sergey-miryanov Nov 3, 2025
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
Prev Previous commit
Next Next commit
Merge branch 'main' into gh-130698-pyrepl-ps1-exception
# Conflicts:
#	Lib/_pyrepl/reader.py
  • Loading branch information
sergey-miryanov committed Apr 19, 2025
commit c68a695437b3e6dfc0d02300a88b87ed4bef9137
2 changes: 1 addition & 1 deletion Lib/_pyrepl/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@


from . import commands, console, input
from .utils import ANSI_ESCAPE_SEQUENCE, wlen, str_width
from .utils import DEFAULT_PS1, DEFAULT_PS2, DEFAULT_PS3, DEFAULT_PS4
from .utils import wlen, unbracket, disp_str
from .trace import trace


Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.