diff options
author | Aiden Fox Ivey <aiden@fox-ivey.com> | 2024-01-26 20:36:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 20:36:50 (GMT) |
commit | b5c7c84673b96bfdd7c877521a970f7a4beafece (patch) | |
tree | 828c466dfdbb7701b525247ab415b86c5cb9cd83 /Misc | |
parent | 07236f5b39a2e534cf190cd4f7c73300d209520b (diff) | |
download | cpython-b5c7c84673b96bfdd7c877521a970f7a4beafece.zip cpython-b5c7c84673b96bfdd7c877521a970f7a4beafece.tar.gz cpython-b5c7c84673b96bfdd7c877521a970f7a4beafece.tar.bz2 |
gh-114490: Add check for Mach-O linkage in Lib/platform.py (#114491)
``platform.architecture()`` now returns the format of binaries (e.g. Mach-O) instead of the default empty string.
Co-authored-by: AN Long <aisk@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2024-01-23-11-35-26.gh-issue-114490.FrQOQ0.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2024-01-23-11-35-26.gh-issue-114490.FrQOQ0.rst b/Misc/NEWS.d/next/macOS/2024-01-23-11-35-26.gh-issue-114490.FrQOQ0.rst new file mode 100644 index 0000000..abd296f --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2024-01-23-11-35-26.gh-issue-114490.FrQOQ0.rst @@ -0,0 +1 @@ +Add Mach-O linkage support for :func:`platform.architecture()`. |