]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850)
authorPablo Galindo <Pablogsal@gmail.com>
Sun, 14 Oct 2018 16:41:11 +0000 (17:41 +0100)
committerGitHub <noreply@github.com>
Sun, 14 Oct 2018 16:41:11 +0000 (17:41 +0100)
* Add News entry for the change in multiprocessing.reduction.recvfds
made in GH-9613.

Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst [new file with mode: 0644]

diff --git a/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst b/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst
new file mode 100644 (file)
index 0000000..4f4a7f7
--- /dev/null
@@ -0,0 +1,3 @@
+Use :func:`socket.CMSG_SPACE` to calculate ancillary data size instead of
+:func:`socket.CMSG_LEN` in :func:`multiprocessing.reduction.recvfds` as
+:rfc:`3542` requires the use of the former for portable applications.