Message1075

Author amak
Recipients
Date 2007-05-18.19:10:56
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This was indeed a bug; the send function could never have worked as it was.

This is already fixed in 2.2b2.

As for jython 2.1, the simple fix suggested above will work, i.e. change the send function to be defined as

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