This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients baikie, jramnani, ned.deily, python-dev, ronaldoussoren, vstinner
Date 2020-10-19.20:27:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603139276.31.0.83731856509.issue24725@roundup.psfhosted.org>
In-reply-to
Content
The issue is still present with python 3.9 and macOS 10.15 as well as current macOS 11 betas.

The following python scriptlet reproduces the issue:

# ---
import socket
  
sd1, sd2 = socket.socketpair()

sd1.sendmsg([b"hello"], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, b"")])
sd2.recvmsg(1)
# ---

I think the attached file "repro.c" does the same in C, it also fails with "recvmsg: Cannot allocate memory".


I've filed an issue for this with Apple: FB8813140.  I filed it from an Arm Mac system, with some luck this will help to get attention :-)
History
Date User Action Args
2020-10-19 20:27:56ronaldoussorensetrecipients: + ronaldoussoren, vstinner, baikie, ned.deily, python-dev, jramnani
2020-10-19 20:27:56ronaldoussorensetmessageid: <1603139276.31.0.83731856509.issue24725@roundup.psfhosted.org>
2020-10-19 20:27:56ronaldoussorenlinkissue24725 messages
2020-10-19 20:27:56ronaldoussorencreate