*** empty log message ***

This commit is contained in:
Guido van Rossum 1993-12-17 14:39:12 +00:00
parent 9e80d6f125
commit d55f4d1a76
5 changed files with 12 additions and 13 deletions

View file

@ -9,5 +9,6 @@ s = socket(AF_INET, SOCK_DGRAM)
s.bind('', MYPORT)
while 1:
data = s.recv(1500)
data, wherefrom = s.recvfrom(1500, 0)
sys.stderr.write(`wherefrom` + '\n')
sys.stdout.write(data)