-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-41203: Replace OS X with macOS #21316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1ecbddf
732f353
3c955c2
447925a
98dca78
04af2d3
c119eb6
721a670
a3b7b9b
b8fb110
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ It starts by constructing up to four directories from a head and a tail part. | |
For the head part, it uses ``sys.prefix`` and ``sys.exec_prefix``; empty heads | ||
are skipped. For the tail part, it uses the empty string and then | ||
:file:`lib/site-packages` (on Windows) or | ||
:file:`lib/python{X.Y}/site-packages` (on Unix and Macintosh). For each | ||
:file:`lib/python{X.Y}/site-packages` (on Unix and Mac). For each | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. macOS |
||
of the distinct head-tail combinations, it sees if it refers to an existing | ||
directory, and if so, adds it to ``sys.path`` and also inspects the newly | ||
added path for configuration files. | ||
|
@@ -176,8 +176,8 @@ Module contents | |
|
||
Path to the user site-packages for the running Python. Can be ``None`` if | ||
:func:`getusersitepackages` hasn't been called yet. Default value is | ||
:file:`~/.local/lib/python{X.Y}/site-packages` for UNIX and non-framework Mac | ||
OS X builds, :file:`~/Library/Python/{X.Y}/lib/python/site-packages` for Mac | ||
:file:`~/.local/lib/python{X.Y}/site-packages` for UNIX and non-framework | ||
macOS builds, :file:`~/Library/Python/{X.Y}/lib/python/site-packages` for Mac | ||
framework builds, and :file:`{%APPDATA%}\\Python\\Python{XY}\\site-packages` | ||
on Windows. This directory is a site directory, which means that | ||
:file:`.pth` files in it will be processed. | ||
|
@@ -187,7 +187,7 @@ Module contents | |
|
||
Path to the base directory for the user site-packages. Can be ``None`` if | ||
:func:`getuserbase` hasn't been called yet. Default value is | ||
:file:`~/.local` for UNIX and Mac OS X non-framework builds, | ||
:file:`~/.local` for UNIX and macOS non-framework builds, | ||
:file:`~/Library/Python/{X.Y}` for Mac framework builds, and | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the correct name? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this still applies to current macOS There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. macOS? |
||
:file:`{%APPDATA%}\\Python` for Windows. This value is used by Distutils to | ||
compute the installation directories for scripts, data files, Python modules, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The length of the underlying line should be corrected.