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 ned.deily
Recipients John Belmonte, ned.deily
Date 2021-03-04.02:33:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614825183.1.0.336681370177.issue43370@roundup.psfhosted.org>
In-reply-to
Content
The reason time.thread_time() and several other functions in other modules that all depend on features in newer versions of macOS were not available in python.org macOS binaries because the installers are meant to support a range of operating system releases (rather than just one operating system version as with most other distributors) and, up until recently, the only supported way to do that was to build the binaries on the oldest supported system. Thus most python.org installers in recent years were built on macOS 10.9 where time.thread_time() does not exist. As of Python 3.9.1, with the addition of support for macOS 11 and Apple Silicon Macs, support for "weak-linking" was also added meaning that it is now possible to build Python 3.9.1+ on, say, macOS 11 and have it work without crashing on older systems. Currently, we only test back as far as 10.9. This feature is in the 10.9+ "universal2" variants available for 3.9.1+ releases and for 3.10 pre-releases.

https://docs.python.org/3/whatsnew/3.9.html#notable-changes-in-python-3-9-1
History
Date User Action Args
2021-03-04 02:33:03ned.deilysetrecipients: + ned.deily, John Belmonte
2021-03-04 02:33:03ned.deilysetmessageid: <1614825183.1.0.336681370177.issue43370@roundup.psfhosted.org>
2021-03-04 02:33:03ned.deilylinkissue43370 messages
2021-03-04 02:33:02ned.deilycreate