diff options
author | Russel Webber <24542073+RusselWebber@users.noreply.github.com> | 2022-03-23 17:29:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 17:29:40 (GMT) |
commit | c62b944dfc98911a5050389fa6ac753e283fee1f (patch) | |
tree | f6cf2c9b44bb5cc598b9f979da0994b8a4d59894 /Doc/tutorial | |
parent | fe010605f87f988ef1053e372d1c3898d2633d96 (diff) | |
download | cpython-c62b944dfc98911a5050389fa6ac753e283fee1f.zip cpython-c62b944dfc98911a5050389fa6ac753e283fee1f.tar.gz cpython-c62b944dfc98911a5050389fa6ac753e283fee1f.tar.bz2 |
bpo-31582: Created a new documentation section describing sys.path initialization (GH-31082)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index f1d4957..a4e1cef 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -194,6 +194,8 @@ named :file:`spam.py` in a list of directories given by the variable * The installation-dependent default (by convention including a ``site-packages`` directory, handled by the :mod:`site` module). +More details are at :ref:`sys-path-init`. + .. note:: On file systems which support symlinks, the directory containing the input script is calculated after the symlink is followed. In other words the |