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 3d6b255 commit ea62fadCopy full SHA for ea62fad
1 file changed
bpython/urwid.py
@@ -90,7 +90,10 @@ def __init__(self, myrepl):
90
self.repl = myrepl
91
92
def lineReceived(self, line):
93
- self.repl.push(line)
+ # HACK!
94
+ # TODO: deal with encoding issues here...
95
+ self.repl.main_loop.process_input(line)
96
+ self.repl.main_loop.process_input(['enter'])
97
98
99
class EvalFactory(protocol.ServerFactory):
0 commit comments