Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d303b61

Browse files
committed
[Bug #459270] Fix incorrect docstring
1 parent e7ffbb2 commit d303b61

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

Lib/distutils/dist.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,11 @@ def find_config_files (self):
262262
should be parsed. The filenames returned are guaranteed to exist
263263
(modulo nasty race conditions).
264264
265-
On Unix, there are three possible config files: pydistutils.cfg in
266-
the Distutils installation directory (ie. where the top-level
267-
Distutils __inst__.py file lives), .pydistutils.cfg in the user's
268-
home directory, and setup.cfg in the current directory.
269-
270-
On Windows and Mac OS, there are two possible config files:
271-
pydistutils.cfg in the Python installation directory (sys.prefix)
272-
and setup.cfg in the current directory.
265+
There are three possible config files: distutils.cfg in the
266+
Distutils installation directory (ie. where the top-level
267+
Distutils __inst__.py file lives), a file in the user's home
268+
directory named .pydistutils.cfg on Unix and pydistutils.cfg
269+
on Windows/Mac, and setup.cfg in the current directory.
273270
"""
274271
files = []
275272
check_environ()

0 commit comments

Comments
 (0)