diff options
author | Yuvi Panda <yuvipanda@gmail.com> | 2022-10-29 20:44:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 20:44:06 (GMT) |
commit | bfecff5f73741f095bb9ec2329467bf16cbbdf5a (patch) | |
tree | 0c2871132142de0773752e989daf47972a2c05fe /Doc/library/sys.rst | |
parent | e063c23c65143a3afae3e201459dc0d52cb6fc96 (diff) | |
download | cpython-bfecff5f73741f095bb9ec2329467bf16cbbdf5a.zip cpython-bfecff5f73741f095bb9ec2329467bf16cbbdf5a.tar.gz cpython-bfecff5f73741f095bb9ec2329467bf16cbbdf5a.tar.bz2 |
Fix typo in docs (GH-98863)
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 17bbfa5..f3fd16c 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1178,7 +1178,7 @@ always available. string, which means the current working directory. To not prepend this potentially unsafe path, use the :option:`-P` command - line option or the :envvar:`PYTHONSAFEPATH` environment variable? + line option or the :envvar:`PYTHONSAFEPATH` environment variable. A program is free to modify this list for its own purposes. Only strings should be added to :data:`sys.path`; all other data types are |