From ca15b737d5a137c12c4d968d21a4455159cfc563 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Sat, 13 Oct 2018 19:15:30 +0100 Subject: [PATCH 1/2] Add News entry --- .../next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst 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 index 00000000000000..9e41bed96992ca --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst @@ -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. From 5000d8a5a4593acabc1bc8a3674701c57e4c42df Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Sat, 13 Oct 2018 20:01:34 +0100 Subject: [PATCH 2/2] fixup! Add News entry --- .../next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 index 9e41bed96992ca..4f4a7f74864f84 100644 --- 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 @@ -1,3 +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. +:func:`socket.CMSG_LEN` in :func:`multiprocessing.reduction.recvfds` as +:rfc:`3542` requires the use of the former for portable applications.