[issue1030250] distutils' dry-run wants to create some real build dirs

2008-12-10 Thread Amaury Forgeot d'Arc

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

Committed r67692 (trunk).

I don't feel the need to backport: this issue was opened 4 years ago, it 
is not urgent anymore ;-)

___
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



[issue1030250] distutils' dry-run wants to create some real build dirs

2008-12-10 Thread Amaury Forgeot d'Arc

Changes by Amaury Forgeot d'Arc [EMAIL PROTECTED]:


--
resolution:  - fixed
status: open - closed

___
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



[issue1030250] distutils' dry-run wants to create some real build dirs

2008-12-05 Thread Amaury Forgeot d'Arc

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



[issue1030250] distutils' dry-run wants to create some real build dirs

2008-12-05 Thread Marc-Andre Lemburg

Marc-Andre Lemburg [EMAIL PROTECTED] added the comment:

Looks good.

--
nosy: +lemburg
stage: patch review - commit review

___
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