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

miss-islington webhook-mailer at python.org
Wed Apr 20 00:17:41 EDT 2022


https://github.com/python/cpython/commit/8299e24d4caa392664648fc5c65f4e56a40d6d46
commit: 8299e24d4caa392664648fc5c65f4e56a40d6d46
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-04-19T21:17:34-07:00
summary:

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

(cherry picked from commit 692aea6f3823df48b7fc267ba0aa1ccc45ac606d)

Co-authored-by: slateny <46876382+slateny at users.noreply.github.com>

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 203995c80fd32..dbd3c968dd35a 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3546,8 +3546,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