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
........
This commit is contained in:
Tarek Ziadé 2009-08-21 14:22:45 +00:00
parent 3ee22ece59
commit f3b3322104
2 changed files with 12 additions and 4 deletions

View file

@ -703,7 +703,8 @@ Notes:
(2) (2)
On Unix, if the :envvar:`HOME` environment variable is not defined, the user's 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 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) (3)
I.e., in the current directory (usually the location of the setup script). I.e., in the current directory (usually the location of the setup script).
@ -718,9 +719,10 @@ Notes:
1.5.2 installation under Windows. 1.5.2 installation under Windows.
(5) (5)
On Windows, if the :envvar:`HOME` environment variable is not defined, no On Windows, if the :envvar:`HOME` environment variable is not defined,
personal configuration file will be found or used. (In other words, the :envvar:`USERPROFILE` then :envvar:`HOMEDRIVE` and :envvar:`HOMEPATH` will
Distutils make no attempt to guess your home directory on Windows.) be tried. This is done by the :func:`os.path.expanduser` function used
by Distutils.
.. _inst-config-syntax: .. _inst-config-syntax:

View file

@ -161,6 +161,12 @@ Build
- Issue 5390: Add uninstall icon independent of whether file - Issue 5390: Add uninstall icon independent of whether file
extensions are installed. extensions are installed.
Documenation
------------
- Issue #6556: Fixed the Distutils configuration files location explanation
for Windows.
Tests Tests
----- -----