diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-04-20 04:17:55 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-20 04:17:55 (GMT) |
| commit | 6fd77aab4cb702be3bdd60c87f7bf0ee034f1062 (patch) | |
| tree | a1dfe0e9fc32967fa1c36b40f7be76c981dc72ae | |
| parent | 3fa9191cfc3e778192862ab6bea341b398d6a83f (diff) | |
| download | cpython-6fd77aab4cb702be3bdd60c87f7bf0ee034f1062.zip cpython-6fd77aab4cb702be3bdd60c87f7bf0ee034f1062.tar.gz cpython-6fd77aab4cb702be3bdd60c87f7bf0ee034f1062.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>
| -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 9dc49a2..8e553d4 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -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. |
