This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, doko
Date 2008-12-05.18:45:35
SpamBayes Score 7.804072e-05
Marked as misclassified No
Message-id <1228502738.12.0.56048312939.issue1030250@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-12-05 18:45:38amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, doko
2008-12-05 18:45:38amaury.forgeotdarcsetmessageid: <1228502738.12.0.56048312939.issue1030250@psf.upfronthosting.co.za>
2008-12-05 18:45:36amaury.forgeotdarclinkissue1030250 messages
2008-12-05 18:45:35amaury.forgeotdarccreate