Skip to content

Commit f9f005a

Browse files
authored
Update name to macOS (#995)
1 parent 1cffabf commit f9f005a

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

advanced-tools/clang.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ After ``make install`` executes, the compilers will be installed in
110110
libclang_rt.lsan-x86_64.a libclang_rt.ubsan_cxx-x86_64.a
111111
libclang_rt.msan-x86_64.a libclang_rt.ubsan-x86_64.a
112112
113-
On Mac OS X, the libraries are installed in
113+
On macOS, the libraries are installed in
114114
``/usr/local/lib/clang/3.3/lib/darwin/``:
115115

116116
.. code-block:: console

core-developers/experts.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ Cygwin jlt63^, stutzbach^
299299
FreeBSD
300300
HP-UX
301301
Linux
302-
Mac OS X ronaldoussoren, ned-deily
302+
macOS ronaldoussoren, ned-deily
303303
NetBSD1
304304
OS2/EMX aimacintyre^
305305
Solaris/OpenIndiana jcea

getting-started/pull-request-lifecycle.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ should do to help ensure that your pull request is accepted.
241241
``patchcheck`` is a simple automated patch checklist that guides a developer
242242
through the common patch generation checks. To run ``patchcheck``:
243243

244-
On *UNIX* (including Mac OS X)::
244+
On *UNIX* (including macOS)::
245245

246246
make patchcheck
247247

getting-started/setup-building.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ If you decide to :ref:`build-dependencies`, you will need to re-run both
209209
Once CPython is done building you will then have a working build
210210
that can be run in-place; ``./python`` on most machines (and what is used in
211211
all examples), ``./python.exe`` wherever a case-insensitive filesystem is used
212-
(e.g. on OS X by default), in order to avoid conflicts with the ``Python``
212+
(e.g. on macOS by default), in order to avoid conflicts with the ``Python``
213213
directory. There is normally no need to install your built copy
214214
of Python! The interpreter will realize where it is being run from
215215
and thus use the files found in the working copy. If you are worried
@@ -326,7 +326,7 @@ Install dependencies
326326
====================
327327

328328
This section explains how to install additional extensions (e.g. ``zlib``)
329-
on :ref:`Linux <deps-on-linux>` and :ref:`macOs/OS X <macOS>`. On Windows,
329+
on :ref:`Linux <deps-on-linux>` and :ref:`macOS`. On Windows,
330330
extensions are already included and built automatically.
331331

332332
.. _deps-on-linux:
@@ -385,7 +385,7 @@ their dependencies::
385385
lzma lzma-dev tk-dev uuid-dev zlib1g-dev
386386

387387

388-
.. _MacOS:
388+
.. _macOS:
389389

390390
macOS and OS X
391391
--------------
@@ -610,7 +610,7 @@ every rule.
610610
The part of the standard library implemented in pure Python.
611611

612612
``Mac``
613-
Mac-specific code (e.g., using IDLE as an OS X application).
613+
Mac-specific code (e.g., using IDLE as a macOS application).
614614

615615
``Misc``
616616
Things that do not belong elsewhere. Typically this is varying kinds of

index.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ instructions please see the :ref:`setup guide <setup>`.
2727
git clone https://github.com/<your_username>/cpython
2828
cd cpython
2929

30-
3. Build Python, on UNIX and Mac OS use::
30+
3. Build Python, on UNIX and macOS use::
3131

3232
./configure --with-pydebug && make -j
3333

@@ -40,13 +40,13 @@ instructions please see the :ref:`setup guide <setup>`.
4040
See also :ref:`more detailed instructions <compiling>`,
4141
:ref:`how to install and build dependencies <build-dependencies>`,
4242
and the platform-specific pages for :ref:`UNIX <unix-compiling>`,
43-
:ref:`Mac OS <MacOS>`, and :ref:`Windows <windows-compiling>`.
43+
:ref:`macOS`, and :ref:`Windows <windows-compiling>`.
4444

4545
4. :ref:`Run the tests <runtests>`::
4646

4747
./python -m test -j3
4848

49-
On :ref:`most <mac-python.exe>` Mac OS X systems, replace :file:`./python`
49+
On :ref:`most <mac-python.exe>` macOS systems, replace :file:`./python`
5050
with :file:`./python.exe`. On Windows, use :file:`python.bat`.
5151

5252
5. Create a new branch where your work for the issue will go, e.g.::
@@ -188,7 +188,6 @@ Key Resources
188188
* Source code
189189
* `Browse online <https://github.com/python/cpython/>`_
190190
* `Snapshot of the *main* branch <https://github.com/python/cpython/archive/main.zip>`_
191-
* `Daily OS X installer <https://buildbot.python.org/daily-dmg/>`_
192191
* PEPs_ (Python Enhancement Proposals)
193192
* :ref:`help`
194193
* :ref:`developers`

testing/coverage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ On Unix run::
9393
source ../cpython-venv/bin/activate
9494
pip install coverage
9595

96-
On :ref:`most <mac-python.exe>` Mac OS X systems run::
96+
On :ref:`most <mac-python.exe>` macOS systems run::
9797

9898
./python.exe -m venv ../cpython-venv
9999
source ../cpython-venv/bin/activate

testing/run-write-tests.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ from the root directory of your checkout (after you have
2222
./python -m test
2323

2424
You may need to change this command as follows throughout this section.
25-
On :ref:`most <mac-python.exe>` Mac OS X systems, replace :file:`./python`
25+
On :ref:`most <mac-python.exe>` macOS systems, replace :file:`./python`
2626
with :file:`./python.exe`. On Windows, use :file:`python.bat`. If using
2727
Python 2.7, replace ``test`` with ``test.regrtest``.
2828

0 commit comments

Comments
 (0)