Skip to content

Commit 8b99605

Browse files
prettier interactive repl test
--HG-- branch : scroll-frontend
1 parent 6f1713a commit 8b99605

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bpython/scrollfrontend/repl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -654,12 +654,12 @@ def my_print(msg):
654654
my_print(' use "$" to pastebin '.center(self.width+8, 'X'))
655655
my_print(' "~" is the cursor '.center(self.width+8, 'X'))
656656
my_print('X'*(self.width+8))
657-
my_print('Xxx'+('x'*(self.width+2))+'xxX')
657+
my_print('X``'+('`'*(self.width+2))+'``X')
658658
for line in arr:
659-
my_print('Xxxx'+(line if line else ' '*len(line))+'xxxX')
659+
my_print('X```'+(line if line else ' '*len(line))+'```X')
660660
logging.debug('line:')
661661
logging.debug(repr(line))
662-
my_print('Xxx'+('x'*(self.width+2))+'xxX')
662+
my_print('X``'+('`'*(self.width+2))+'``X')
663663
my_print('X'*(self.width+8))
664664
return max(len(arr) - self.height, 0)
665665

0 commit comments

Comments
 (0)