]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add link to sys.path in os lib (GH-91679)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 20 Apr 2022 04:17:55 +0000 (21:17 -0700)
committerGitHub <noreply@github.com>
Wed, 20 Apr 2022 04:17:55 +0000 (21:17 -0700)
(cherry picked from commit 692aea6f3823df48b7fc267ba0aa1ccc45ac606d)

Co-authored-by: slateny <46876382+slateny@users.noreply.github.com>
Doc/library/os.rst

index 9dc49a2034144822f2b33497d74840a8985416c4..8e553d404100fc27e9fc95bf2db727cba2e676df 100644 (file)
@@ -3319,8 +3319,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.