summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/core.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-10-27 23:06:10 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-10-27 23:06:10 (GMT)
commit40b998b05dc2fe6cfd96793793f9087eb075d475 (patch)
tree21b16d15ba4bec66ff70680ed7481db3f51c705d /Lib/distutils/core.py
parent4e1be94bc6c7ec21daf1de030cc59c9c61b498f8 (diff)
downloadcpython-40b998b05dc2fe6cfd96793793f9087eb075d475.zip
cpython-40b998b05dc2fe6cfd96793793f9087eb075d475.tar.gz
cpython-40b998b05dc2fe6cfd96793793f9087eb075d475.tar.bz2
Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r--Lib/distutils/core.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 0fb6f81..8073a6b 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -129,8 +129,9 @@ def setup (**attrs):
if _setup_stop_after == "config":
return dist
- # Parse the command line; any command-line errors are the end user's
- # fault, so turn them into SystemExit to suppress tracebacks.
+ # Parse the command line and override config files; any
+ # command-line errors are the end user's fault, so turn them into
+ # SystemExit to suppress tracebacks.
try:
ok = dist.parse_command_line()
except DistutilsArgError, msg: