Message101305
| Author |
tarek |
| Recipients |
Daniel26, benjamin.peterson, cmcqueen1975, ebrehault, hagen, janssen, jwp, keldonin, kermode, tarek |
| Date |
2010年03月19日.04:32:01 |
| SpamBayes Score |
1.3259757e-06 |
| Marked as misclassified |
No |
| Message-id |
<1268973124.83.0.560095661888.issue2698@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Benjamin, can I fix this bug before you tag 3.1.2 ?
Basically, I'll apply on 3.1 what was applied on 2.6 :
MacZiade:release31-maint tarek$ svn di
Index: Lib/distutils/command/build_ext.py
===================================================================
--- Lib/distutils/command/build_ext.py (révision 79090)
+++ Lib/distutils/command/build_ext.py (copie de travail)
@@ -310,7 +310,7 @@
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
- self.compiler = new_compiler(compiler=None,
+ self.compiler = new_compiler(compiler=self.compiler,
verbose=self.verbose,
dry_run=self.dry_run,
force=self.force)
Then, after you have tagged 3.1, I will revert distutils in py3 branch so it's back to 3.1 state then frozen, like what I am doing for 2.7. |
|