diff options
author | slateny <46876382+slateny@users.noreply.github.com> | 2022-04-20 03:59:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 03:59:48 (GMT) |
commit | 692aea6f3823df48b7fc267ba0aa1ccc45ac606d (patch) | |
tree | bcfec09eeee1c1aa6b03f061f6b6a943c06e4cd8 /Doc | |
parent | 1ba63e3a9bb176e5ad8e8dd744b9d2b9d588e275 (diff) | |
download | cpython-692aea6f3823df48b7fc267ba0aa1ccc45ac606d.zip cpython-692aea6f3823df48b7fc267ba0aa1ccc45ac606d.tar.gz cpython-692aea6f3823df48b7fc267ba0aa1ccc45ac606d.tar.bz2 |
Add link to sys.path in os lib (#91679)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 254d6e1..c22bf56 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. |