[issue9853] Wrong signature for SSLSocket.recvfrom and SSLSocket.sendto

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed in r84807 (3.x) and r84809 (3.1). -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue9853] Wrong signature for SSLSocket.recvfrom and SSLSocket.sendto

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Similar problem for sendto() (again, see issue9729). socket.sendto() has an interesting signature (the middle `flags` argument is optional, not the following `addr`...). -- title: Wrong signature for SSLSocket.recvfrom -> Wrong signature for SSLSocket

[issue9853] Wrong signature for SSLSocket.recvfrom

2010-09-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : SSLSocket.recvfrom includes an `addr` argument in its signature, but socket.recvfrom doesn't take such an argument. It should be removed. (obviously, this method is neither tested nor used in the real-world...) In 2.7, this is taken care of by the patch in i