Kaydet (Commit) ea534f79 authored tarafından Victor Stinner's avatar Victor Stinner

(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.)
......@@ -16,6 +16,9 @@ Core and Builtins
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment