Skip to content

Commit e04e0f2

Browse files
PeriGKthomasballinger
authored andcommitted
Resetting debugging-oriented changes
1 parent da6150b commit e04e0f2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -967,24 +967,19 @@ def toggle_file_watch(self):
967967

968968
# Handler Helpers
969969
def add_normal_character(self, char):
970-
print("Char is :" + str(char))
971970
if len(char) > 1 or is_nop(char):
972971
return
973972
if self.incr_search_mode:
974973
print("Incr search mode")
975974
self.add_to_incremental_search(char)
976975
else:
977-
print("In here current line: " + self.current_line)
978-
979976
self._set_current_line((self.current_line[:self.cursor_offset] +
980977
char +
981978
self.current_line[self.cursor_offset:]),
982979
update_completion=False,
983980
reset_rl_history=False,
984981
clear_special_mode=False)
985982
self.cursor_offset += 1
986-
987-
print("but here: " + self.current_line)
988983
if (self.config.cli_trim_prompts and
989984
self.current_line.startswith(self.ps1)):
990985
self.current_line = self.current_line[4:]
@@ -1036,7 +1031,6 @@ def push(self, line, insert_into_history=True):
10361031
10371032
If the interpreter successfully runs the code, clear the buffer
10381033
"""
1039-
10401034
if self.paste_mode:
10411035
self.saved_indent = 0
10421036
else:
@@ -1203,7 +1197,6 @@ def current_line_formatted(self):
12031197
self.old_fs = fs
12041198
return fs
12051199

1206-
12071200
@property
12081201
def lines_for_display(self):
12091202
"""All display lines (wrapped, colored, with prompts)"""

0 commit comments

Comments
 (0)