Removed the .recv() in the test, is not necessary, and was

causing problems that didn't have anything to do with was
actually being tested...
This commit is contained in:
Facundo Batista 2007-05-24 20:01:59 +00:00
parent 711a54ebde
commit 965fa24e8d

View file

@ -557,7 +557,6 @@ def server(evt):
pass
else:
conn.send("1 Hola mundo\n")
conn.recv(200)
conn.send("2 No more lines\n")
conn.close()
finally: