diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-09-22 17:33:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 17:33:36 (GMT) |
commit | 36122e18148c5b6c78ebce1d36d514fd7cf250f5 (patch) | |
tree | 2da76a2182b026faf0ef209c120cb6ca69491a11 /Doc/distutils | |
parent | ecb6922ff2d56476a6cfb0941ae55aca5e7fae3d (diff) | |
download | cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.zip cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.tar.gz cpython-36122e18148c5b6c78ebce1d36d514fd7cf250f5.tar.bz2 |
bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)
Replace old names when they refer to actual versions of macOS.
Keep historical names in references to older versions.
Co-authored-by: Patrick Reader <_@pxeger.com>
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index b65492f..18a4aac 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -373,7 +373,7 @@ This module provides the following functions. compiler object under Unix---if you supply a value for *compiler*, *plat* is ignored. - .. % Is the posix/nt only thing still true? Mac OS X seems to work, and + .. % Is the posix/nt only thing still true? macOS seems to work, and .. % returns a UnixCCompiler instance. How to document this... hmm. @@ -1119,11 +1119,11 @@ other utility module. For non-POSIX platforms, currently just returns ``sys.platform``. - For Mac OS X systems the OS version reflects the minimal version on which + For macOS systems the OS version reflects the minimal version on which binaries will run (that is, the value of ``MACOSX_DEPLOYMENT_TARGET`` during the build of Python), not the OS version of the current system. - For universal binary builds on Mac OS X the architecture value reflects + For universal binary builds on macOS the architecture value reflects the universal binary status instead of the architecture of the current processor. For 32-bit universal binaries the architecture is ``fat``, for 64-bit universal binaries the architecture is ``fat64``, and @@ -1132,7 +1132,7 @@ other utility module. a 3-way universal build (ppc, i386, x86_64) and ``intel`` is used for a universal build with the i386 and x86_64 architectures - Examples of returned values on Mac OS X: + Examples of returned values on macOS: * ``macosx-10.3-ppc`` |