Fix lag when using cursor keys in an interactive 'fig run'

This commit is contained in:
Aanand Prasad 2014-01-20 19:22:05 +00:00
parent 4646ac85b0
commit 40d04a076c

View File

@ -91,9 +91,6 @@ class SocketClient:
def send(self, socket, stream):
while True:
r, w, e = select([stream.fileno()], [], [])
if r:
chunk = stream.read(1)
if chunk == '':