summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-04-20 04:17:34 (GMT)
committerGitHub <noreply@github.com>2022-04-20 04:17:34 (GMT)
commit8299e24d4caa392664648fc5c65f4e56a40d6d46 (patch)
tree0f7343c1d9f20d4df0d2c48d628f01fff1f724f8 /Doc
parentf92aa4fde1728ed47dd6dc64206dcdcabd81d1fc (diff)
downloadcpython-8299e24d4caa392664648fc5c65f4e56a40d6d46.zip
cpython-8299e24d4caa392664648fc5c65f4e56a40d6d46.tar.gz
cpython-8299e24d4caa392664648fc5c65f4e56a40d6d46.tar.bz2
Add link to sys.path in os lib (GH-91679)
(cherry picked from commit 692aea6f3823df48b7fc267ba0aa1ccc45ac606d) Co-authored-by: slateny <46876382+slateny@users.noreply.github.com>
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 203995c..dbd3c96 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.