[Python-checkins] CVS: python/dist/src/Lib/distutils dist.py,1.50,1.51
A.M. Kuchling
akuchling@users.sourceforge.net
2001年12月06日 08:32:07 -0800
Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv8821
Modified Files:
dist.py
Log Message:
[Bug #459270] Fix incorrect docstring
Index: dist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/dist.py,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** dist.py 2001年09月03日 15:47:21 1.50
--- dist.py 2001年12月06日 16:32:05 1.51
***************
*** 263,274 ****
(modulo nasty race conditions).
! On Unix, there are three possible config files: pydistutils.cfg in
! the Distutils installation directory (ie. where the top-level
! Distutils __inst__.py file lives), .pydistutils.cfg in the user's
! home directory, and setup.cfg in the current directory.
!
! On Windows and Mac OS, there are two possible config files:
! pydistutils.cfg in the Python installation directory (sys.prefix)
! and setup.cfg in the current directory.
"""
files = []
--- 263,271 ----
(modulo nasty race conditions).
! There are three possible config files: distutils.cfg in the
! Distutils installation directory (ie. where the top-level
! Distutils __inst__.py file lives), a file in the user's home
! directory named .pydistutils.cfg on Unix and pydistutils.cfg
! on Windows/Mac, and setup.cfg in the current directory.
"""
files = []