Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment:

The third parameter to mkpath() is 'verbose', not 'dry_run'!
Correction is trivial:

Index: Lib/distutils/ccompiler.py
===================================================================
--- Lib/distutils/ccompiler.py  (revision 67068)
+++ Lib/distutils/ccompiler.py  (working copy)
@@ -1041,7 +1041,7 @@
         return move_file (src, dst, dry_run=self.dry_run)

     def mkpath (self, name, mode=0777):
-        mkpath (name, mode, self.dry_run)
+        mkpath (name, mode, dry_run=self.dry_run)


 # class CCompiler

----------
assignee:  -> amaury.forgeotdarc
keywords: +patch
nosy: +amaury.forgeotdarc
stage:  -> patch review
versions: +Python 2.6, Python 3.0 -Python 2.3

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1030250>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to