diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-12-06 16:32:05 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-12-06 16:32:05 (GMT) |
commit | d303b61eb4f8e893ea558bd3b829561ffc28514e (patch) | |
tree | 323eb8d7ace9c65d42cee3e9ba09380b4aa60fdb /Lib/distutils/dist.py | |
parent | e7ffbb24e80800de3667a88af96d03f8c9717039 (diff) | |
download | cpython-d303b61eb4f8e893ea558bd3b829561ffc28514e.zip cpython-d303b61eb4f8e893ea558bd3b829561ffc28514e.tar.gz cpython-d303b61eb4f8e893ea558bd3b829561ffc28514e.tar.bz2 |
[Bug #459270] Fix incorrect docstring
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r-- | Lib/distutils/dist.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 40dcc96..3e1bc64 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -262,14 +262,11 @@ class Distribution: should be parsed. The filenames returned are guaranteed to exist (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. + 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 = [] check_environ() |