diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-15 04:59:30 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-15 04:59:30 (GMT) |
commit | 6e482569c8cba727d803e2283ae1481c5c308d54 (patch) | |
tree | 2f90c89e7d30d497213be6f499effff3d59d897b | |
parent | b476fdf7c3dba7054f2349b1e4df581ca521591b (diff) | |
download | cpython-6e482569c8cba727d803e2283ae1481c5c308d54.zip cpython-6e482569c8cba727d803e2283ae1481c5c308d54.tar.gz cpython-6e482569c8cba727d803e2283ae1481c5c308d54.tar.bz2 |
Update the docstring to use a version a little newer than 1999. This was
taken from a Debian patch. Should we update the version for each release?
-rw-r--r-- | Lib/site.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/site.py b/Lib/site.py index de8fc48..e2ad3b92c 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -27,7 +27,7 @@ sys.path more than once. Blank lines and lines beginning with '#' are skipped. Lines starting with 'import' are executed. For example, suppose sys.prefix and sys.exec_prefix are set to -/usr/local and there is a directory /usr/local/lib/python1.5/site-packages +/usr/local and there is a directory /usr/local/lib/python2.5/site-packages with three subdirectories, foo, bar and spam, and two path configuration files, foo.pth and bar.pth. Assume foo.pth contains the following: @@ -44,8 +44,8 @@ and bar.pth contains: Then the following directories are added to sys.path, in this order: - /usr/local/lib/python1.5/site-packages/bar - /usr/local/lib/python1.5/site-packages/foo + /usr/local/lib/python2.5/site-packages/bar + /usr/local/lib/python2.5/site-packages/foo Note that bletch is omitted because it doesn't exist; bar precedes foo because bar.pth comes alphabetically before foo.pth; and spam is |