(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.)
This commit is contained in:
Victor Stinner 2015-04-02 17:20:48 +02:00
commit ea534f79a5
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@ Core and Builtins
Library 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 - Issue #23618: :meth:`socket.socket.connect` now waits until the connection
completes instead of raising :exc:`InterruptedError` if the connection is completes instead of raising :exc:`InterruptedError` if the connection is
interrupted by signals, signal handlers don't raise an exception and the interrupted by signals, signal handlers don't raise an exception and the