Skip to content

Commit 7be0abe

Browse files
update #TODOs
--HG-- branch : scroll-frontend
1 parent 0912432 commit 7be0abe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bpython/scrollfrontend/repl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def process_event(self, e):
252252
elif e in key_dispatch[self.config.yank_from_buffer_key]: #TODO
253253
raise NotImplementedError()
254254

255-
elif e in key_dispatch[self.config.clear_screen_key]: #TODO
255+
elif e in key_dispatch[self.config.clear_screen_key]:
256256
self.request_paint_to_clear_screen = True
257257
elif e in key_dispatch[self.config.last_output_key]: #TODO
258258
raise NotImplementedError()
@@ -613,7 +613,6 @@ def paint(self, about_to_exit=False):
613613

614614
## Debugging shims
615615
def dumb_print_output(self):
616-
#TODO this currently doesn't work due to thread control passing issues
617616
arr, cpos = self.paint()
618617
arr[cpos[0], cpos[1]] = '~'
619618
def my_print(msg):

0 commit comments

Comments
 (0)