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 tarek
Recipients herzbube, tarek
Date 2009-09-17.11:07:21
SpamBayes Score 3.867691e-07
Marked as misclassified No
Message-id <1253185643.75.0.630534241994.issue6860@psf.upfronthosting.co.za>
In-reply-to
Content
To be able to do this fix, I also need to change the way commands are
registered in Distutils.

Right now, Distutils scans packages that were provided as "command
packages" and just adds all commands from the namespace, using the class
name. Which means there's no way to provide a command this way that is
not using something else than the class name.

To make it better I will introduce an explicit registration mecanism,
where a specific mapping will have to be provided in the package,
instead of looking directly for "pkgname.command", which is not very
handy from a developer point of view. (this behavior will be deprecated
but will still be used as the last way to register a command)
History
Date User Action Args
2009-09-17 11:07:23tareksetrecipients: + tarek, herzbube
2009-09-17 11:07:23tareksetmessageid: <1253185643.75.0.630534241994.issue6860@psf.upfronthosting.co.za>
2009-09-17 11:07:22tareklinkissue6860 messages
2009-09-17 11:07:21tarekcreate