summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 14:57:46 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 14:57:46 (GMT)
commit0eb13041d27a605c9d9ea631dfa8d223e469fe8c (patch)
tree7f694e1b58ed353f9efaee67c214b077e6347f66 /Lib/distutils/command
parent222de0f713ef31bf5c877b9051bcdfc39c510dd4 (diff)
downloadcpython-0eb13041d27a605c9d9ea631dfa8d223e469fe8c.zip
cpython-0eb13041d27a605c9d9ea631dfa8d223e469fe8c.tar.gz
cpython-0eb13041d27a605c9d9ea631dfa8d223e469fe8c.tar.bz2
Merged revisions 71509 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71509 | tarek.ziade | 2009-04-12 16:53:51 +0200 (Sun, 12 Apr 2009) | 1 line removed the print statements and added a test ........
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/config.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index 34f9188..144c513 100644
--- a/Lib/distutils/command/config.py
+++ b/Lib/distutils/command/config.py
@@ -336,11 +336,16 @@ class config(Command):
def dump_file(filename, head=None):
+ """Dumps a file content into log.info.
+
+ If head is not None, will be dumped before the file content.
+ """
if head is None:
- print(filename + ":")
+ log.info('%s' % filename)
else:
- print(head)
-
+ log.info(head)
file = open(filename)
- sys.stdout.write(file.read())
- file.close()
+ try:
+ log.info(file.read())
+ finally:
+ file.close()