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 2f090fc commit b96ada1Copy full SHA for b96ada1
bpython/curtsiesfrontend/repl.py
@@ -907,7 +907,7 @@ def unhighlight_paren(self):
907
def clear_current_block(self, remove_from_history=True):
908
self.display_buffer = []
909
if remove_from_history:
910
- for _ in self.buffer:
+ for unused in self.buffer:
911
self.history.pop()
912
self.buffer = []
913
self.cursor_offset = 0
@@ -1489,7 +1489,8 @@ def request_refresh():
1489
r.width = 50
1490
r.height = 10
1491
while True:
1492
- [_ for _ in importcompletion.find_iterator]
+ while not importcompletion.find_coroutine():
1493
+ pass
1494
r.dumb_print_output()
1495
r.dumb_input(refreshes)
1496
0 commit comments