Message636

Author nobody
Recipients
Date 2002-03-22.11:26:33
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
There is a bug in the implementation of send on a
'connected' udp socket. Only the address and not the
data is passed to the underlying sendto() method.

send() in _udpsocket should become:

def send(self, data):
    assert self.addr
    return self.sendto(data, self.addr)

instead of

def send(self, data):
    assert self.addr
    return self.sendto(self.addr)
History
Date User Action Args
2008-02-20 17:17:04adminlinkissue533541 messages
2008-02-20 17:17:04admincreate