]> 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:34 +0000 (21:17 -0700)
committerGitHub <noreply@github.com>
Wed, 20 Apr 2022 04:17:34 +0000 (21:17 -0700)
(cherry picked from commit 692aea6f3823df48b7fc267ba0aa1ccc45ac606d)

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

index 203995c80fd327d0e9dc5e6eee9c542daa405b57..dbd3c968dd35ac5e2ea9d53fa5733c90575bdf42 100644 (file)
@@ -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.