summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorslateny <46876382+slateny@users.noreply.github.com>2022-04-20 03:59:48 (GMT)
committerGitHub <noreply@github.com>2022-04-20 03:59:48 (GMT)
commit692aea6f3823df48b7fc267ba0aa1ccc45ac606d (patch)
treebcfec09eeee1c1aa6b03f061f6b6a943c06e4cd8 /Doc
parent1ba63e3a9bb176e5ad8e8dd744b9d2b9d588e275 (diff)
downloadcpython-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.rst4
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.