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 vstinner
Recipients ned.deily, ronaldoussoren, vstinner
Date 2020-04-02.01:02:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585789350.77.0.305804261723.issue40144@roundup.psfhosted.org>
In-reply-to
Content
I upgraded my macbook to macOS 10.15.4:

$ ./python.exe -m test.pythoninfo|grep -E 'uname|platform'

os.uname: posix.uname_result(sysname='Darwin', nodename='macbook', release='19.4.0', version='Darwin Kernel Version 19.4.0: Wed Mar  4 22:28:40 PST 2020; root:xnu-6153.101.6~15/RELEASE_X86_64', machine='x86_64')

platform.platform: macOS-10.15.4-x86_64-i386-64bit


I get resource attributes:

$ ./python.exe
Python 3.9.0a5+ (heads/master:e27916b, Apr  2 2020, 02:58:34) 
[Clang 11.0.3 (clang-1103.0.32.29)] on darwin
>>> import resource
>>> resource.RLIMIT_CORE
4
>>> resource.RLIMIT_NOFILE
8
>>> resource.RUSAGE_SELF
0


I'm not sure what's wrong with the macOS job. It doesn't seem to use a "framework" build, but:

./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
make -j4
History
Date User Action Args
2020-04-02 01:02:30vstinnersetrecipients: + vstinner, ronaldoussoren, ned.deily
2020-04-02 01:02:30vstinnersetmessageid: <1585789350.77.0.305804261723.issue40144@roundup.psfhosted.org>
2020-04-02 01:02:30vstinnerlinkissue40144 messages
2020-04-02 01:02:30vstinnercreate