summaryrefslogtreecommitdiff
path: root/Doc/install
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-08-21 14:25:49 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-08-21 14:25:49 +0000
commitb08c3a818eb6f2fef3ce86c8ba8ae99bbe0be6c3 (patch)
tree2596ad14ced6ba6d9188abf942e06347a01453fb /Doc/install
parent105d82d01f4cf3024f4cf2265138d901a248424d (diff)
downloadcpython-git-b08c3a818eb6f2fef3ce86c8ba8ae99bbe0be6c3.tar.gz
Merged revisions 74535 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r74535 | tarek.ziade | 2009-08-21 16:22:45 +0200 (Fri, 21 Aug 2009) | 9 lines Merged revisions 74533 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74533 | tarek.ziade | 2009-08-21 16:11:26 +0200 (Fri, 21 Aug 2009) | 1 line Fixed #6556: Corrected doc on how Distutils looks for its user configuration file under Windows ........ ................
Diffstat (limited to 'Doc/install')
-rw-r--r--Doc/install/index.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/Doc/install/index.rst b/Doc/install/index.rst
index 42f41a7e83..36460610f6 100644
--- a/Doc/install/index.rst
+++ b/Doc/install/index.rst
@@ -703,7 +703,8 @@ Notes:
(2)
On Unix, if the :envvar:`HOME` environment variable is not defined, the user's
home directory will be determined with the :func:`getpwuid` function from the
- standard :mod:`pwd` module.
+ standard :mod:`pwd` module. This is done by the :func:`os.path.expanduser`
+ function used by Distutils.
(3)
I.e., in the current directory (usually the location of the setup script).
@@ -718,9 +719,10 @@ Notes:
1.5.2 installation under Windows.
(5)
- On Windows, if the :envvar:`HOME` environment variable is not defined, no
- personal configuration file will be found or used. (In other words, the
- Distutils make no attempt to guess your home directory on Windows.)
+ On Windows, if the :envvar:`HOME` environment variable is not defined,
+ :envvar:`USERPROFILE` then :envvar:`HOMEDRIVE` and :envvar:`HOMEPATH` will
+ be tried. This is done by the :func:`os.path.expanduser` function used
+ by Distutils.
.. _inst-config-syntax: