We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f1713a commit 8b99605Copy full SHA for 8b99605
bpython/scrollfrontend/repl.py
@@ -654,12 +654,12 @@ def my_print(msg):
654
my_print(' use "$" to pastebin '.center(self.width+8, 'X'))
655
my_print(' "~" is the cursor '.center(self.width+8, 'X'))
656
my_print('X'*(self.width+8))
657
- my_print('Xxx'+('x'*(self.width+2))+'xxX')
+ my_print('X``'+('`'*(self.width+2))+'``X')
658
for line in arr:
659
- my_print('Xxxx'+(line if line else ' '*len(line))+'xxxX')
+ my_print('X```'+(line if line else ' '*len(line))+'```X')
660
logging.debug('line:')
661
logging.debug(repr(line))
662
663
664
return max(len(arr) - self.height, 0)
665
0 commit comments