diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-01-11 22:07:25 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-01-11 22:07:25 (GMT) |
commit | a177c40daf7195b03caf84345f08149d7a09b04b (patch) | |
tree | 7723282d94789a3dbe1b65e3e37cf0b0188fae9f | |
parent | 49c9ac30a418787998b118e21e571cf35dbdffe7 (diff) | |
download | cpython-a177c40daf7195b03caf84345f08149d7a09b04b.zip cpython-a177c40daf7195b03caf84345f08149d7a09b04b.tar.gz cpython-a177c40daf7195b03caf84345f08149d7a09b04b.tar.bz2 |
Document \code{import} in pth files.
-rw-r--r-- | Doc/lib/libsite.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsite.tex b/Doc/lib/libsite.tex index b370db6..f81841e 100644 --- a/Doc/lib/libsite.tex +++ b/Doc/lib/libsite.tex @@ -33,7 +33,7 @@ per line) to be added to \code{sys.path}. Non-existing items are never added to \code{sys.path}, but no check is made that the item refers to a directory (rather than a file). No item is added to \code{sys.path} more than once. Blank lines and lines beginning with -\code{\#} are skipped. +\code{\#} are skipped. Lines starting with \code{import} are executed. \index{package} \indexiii{path}{configuration}{file} |