diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-09-27 22:54:08 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-09-27 22:54:08 +0000 |
commit | e6896050a339124645b9c55885818b51be5c2ee0 (patch) | |
tree | 6dd09d0e9e42c5d0cb35ab24973ef806115ca7ce | |
parent | dee0b175f6e745940cb93686ee7e5ed79a741de5 (diff) | |
download | cpython-git-e6896050a339124645b9c55885818b51be5c2ee0.tar.gz |
#3510: future-proof text
-rw-r--r-- | Doc/library/site.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/site.rst b/Doc/library/site.rst index b244121ebc..37b786d08a 100644 --- a/Doc/library/site.rst +++ b/Doc/library/site.rst @@ -62,10 +62,11 @@ and :file:`bar.pth` contains:: bar -Then the following directories are added to ``sys.path``, in this order:: +Then the following version-specific directories are added to +``sys.path``, in this order:: - /usr/local/lib/python2.6/site-packages/bar - /usr/local/lib/python2.6/site-packages/foo + /usr/local/lib/pythonX.Y/site-packages/bar + /usr/local/lib/pythonX.Y/site-packages/foo Note that :file:`bletch` is omitted because it doesn't exist; the :file:`bar` directory precedes the :file:`foo` directory because :file:`bar.pth` comes |