uasyncio.udp: Remove optional flags value in a call to usocket.sendto().

pull/261/merge
Paul Sokolovsky 2018-02-22 10:37:22 +02:00 zatwierdzone przez Damien George
rodzic 4238bc9653
commit 8d75a36431
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -45,7 +45,7 @@ def recvfrom(s, n):
def sendto(s, buf, addr=None):
while 1:
res = s.sendto(buf, 0, addr)
res = s.sendto(buf, addr)
#print("send res:", res)
if res == len(buf):
return