[Python-checkins] Add link to sys.path in os lib (#91679)

JelleZijlstra webhook-mailer at python.org
Tue Apr 19 23:59:59 EDT 2022


https://github.com/python/cpython/commit/692aea6f3823df48b7fc267ba0aa1ccc45ac606d
commit: 692aea6f3823df48b7fc267ba0aa1ccc45ac606d
branch: main
author: slateny <46876382+slateny at users.noreply.github.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-04-19T20:59:48-07:00
summary:

Add link to sys.path in os lib (#91679)

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 254d6e192cdf0..c22bf56a9f2cd 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3556,8 +3556,8 @@ to be ignored.
    Add a path to the DLL search path.
 
    This search path is used when resolving dependencies for imported
-   extension modules (the module itself is resolved through sys.path),
-   and also by :mod:`ctypes`.
+   extension modules (the module itself is resolved through
+   :data:`sys.path`), and also by :mod:`ctypes`.
 
    Remove the directory by calling **close()** on the returned object
    or using it in a :keyword:`with` statement.



More information about the Python-checkins mailing list