Skip to content

WIP - width aware output take 2 #731

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

Closed
wants to merge 2 commits into from
Closed
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
10 changes: 4 additions & 6 deletions bpython/curtsiesfrontend/replpainter.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ def display_linize(msg, columns, blank_line=False):
"""Returns lines obtained by splitting msg over multiple lines.

Warning: if msg is empty, returns an empty list of lines"""
display_lines = ([msg[start:end]
for start, end in zip(
range(0, len(msg), columns),
range(columns, len(msg) + columns, columns))]
if msg else ([''] if blank_line else []))
return display_lines
if not msg:
return [''] if blank_line else []
msg = fmtstr(msg)
return list(msg.width_aware_splitlines(columns))


def paint_history(rows, columns, display_lines):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def initialize_options(self):
install_requires = [
'pygments',
'requests',
'curtsies >=0.1.18',
'curtsies >=0.3.0',
'greenlet',
'six >=1.5'
]
Expand Down