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 higery
Recipients alexis, eric.araujo, higery, tarek
Date 2011-06-16.02:08:24
SpamBayes Score 5.416538e-07
Marked as misclassified No
Message-id <1308190105.67.0.431736719114.issue12344@psf.upfronthosting.co.za>
In-reply-to
Content
There is a 'reinitialize_command' function in setuptools' command class which can initialize a command with a key-value pair, but it seems that distutils2/packaging does not yet have this function. I think it's useful in the condition that we want to run some commands with some options initialized. 

For instance,  if we want to run 'build_ext' command with its 'inplace' option initialized, we can use : self.reinitialize_command('build_ext', inplace=1), and then self.run_command('build_ext') .
History
Date User Action Args
2011-06-16 02:08:25higerysetrecipients: + higery, tarek, eric.araujo, alexis
2011-06-16 02:08:25higerysetmessageid: <1308190105.67.0.431736719114.issue12344@psf.upfronthosting.co.za>
2011-06-16 02:08:25higerylinkissue12344 messages
2011-06-16 02:08:24higerycreate