[Python-checkins] bpo-33456: site module documentation - fix wrong default for key in pyvenv.cfg (GH-6755)

Vinay Sajip webhook-mailer at python.org
Tue Apr 9 03:27:41 EDT 2019


https://github.com/python/cpython/commit/c324c748871804f31f56b3bd02a8650b3bf1bae7
commit: c324c748871804f31f56b3bd02a8650b3bf1bae7
branch: master
author: Lukas Waymann <meribold at gmail.com>
committer: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: 2019-04-09T08:27:36+01:00
summary:

bpo-33456: site module documentation - fix wrong default for key in pyvenv.cfg (GH-6755)

files:
M Doc/library/site.rst

diff --git a/Doc/library/site.rst b/Doc/library/site.rst
index 7974e20974f1..dfc40d179443 100644
--- a/Doc/library/site.rst
+++ b/Doc/library/site.rst
@@ -45,9 +45,9 @@ sys.prefix and sys.exec_prefix are set to that directory and
 it is also checked for site-packages (sys.base_prefix and
 sys.base_exec_prefix will always be the "real" prefixes of the Python
 installation). If "pyvenv.cfg" (a bootstrap configuration file) contains
-the key "include-system-site-packages" set to anything other than "false"
-(case-insensitive), the system-level prefixes will still also be
-searched for site-packages; otherwise they won't.
+the key "include-system-site-packages" set to anything other than "true"
+(case-insensitive), the system-level prefixes will not be
+searched for site-packages; otherwise they will.
 
 .. index::
    single: # (hash); comment



More information about the Python-checkins mailing list