changeset: 95388:a064abfd436c parent: 95385:e28221e52d24 parent: 95387:436bb7ad6349 user: Victor Stinner date: Thu Apr 02 17:20:48 2015 +0200 files: Misc/NEWS Modules/socketmodule.c description: (Merge 3.4) Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the result of sendto() instead of the C int type. (The bug was already fixed in the default branch, but differently.) diff -r e28221e52d24 -r a064abfd436c Misc/NEWS --- a/Misc/NEWS Thu Apr 02 16:25:01 2015 +0200 +++ b/Misc/NEWS Thu Apr 02 17:20:48 2015 +0200 @@ -16,6 +16,9 @@ Library ------- +- Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the + result of sendto() instead of the C int type. + - Issue #23618: :meth:`socket.socket.connect` now waits until the connection completes instead of raising :exc:`InterruptedError` if the connection is interrupted by signals, signal handlers don't raise an exception and the