Skip to content
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

[doc] Fix misspellings in sysconfig doc #108156

Merged
merged 1 commit into from
Aug 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Doc/library/sysconfig.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ Python currently supports nine schemes:
through Distutils and the *user* option is used. This scheme defines paths
located under the user home directory.
- *posix_venv*: scheme for :mod:`Python virtual environments <venv>` on POSIX
platforms; by default it is the same as *posix_prefix* .
platforms; by default it is the same as *posix_prefix*.
- *nt*: scheme for NT platforms like Windows.
- *nt_user*: scheme for NT platforms, when the *user* option is used.
- *nt_venv*: scheme for :mod:`Python virtual environments <venv>` on NT
platforms; by default it is the same as *nt* .
- *venv*: a scheme with values from ether *posix_venv* or *nt_venv* depending
on the platform Python runs on
platforms; by default it is the same as *nt*.
- *venv*: a scheme with values from either *posix_venv* or *nt_venv* depending
on the platform Python runs on.
- *osx_framework_user*: scheme for macOS, when the *user* option is used.

Each scheme is itself composed of a series of paths and each path has a unique
Expand Down Expand Up @@ -187,7 +187,7 @@ identifier. Python currently uses eight paths:
platform is used.

If *vars* is provided, it must be a dictionary of variables that will update
the dictionary return by :func:`get_config_vars`.
the dictionary returned by :func:`get_config_vars`.

If *expand* is set to ``False``, the path will not be expanded using the
variables.
Expand Down