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 belopolsky
Recipients belopolsky, gregory.p.smith, pitrou, ronaldoussoren, steven.daprano
Date 2013-08-03.03:21:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375500120.19.0.896650033196.issue18606@psf.upfronthosting.co.za>
In-reply-to
Content
The implementation of median and mode families of functions as classes is clever, but I am not sure it is a good idea to return something other than an instance of the class from __new__().  I would prefer to see a more traditional implementation along the lines:

class _mode:
    def __call__(self, data, ..):
        ..
    def collate(self, data, ..):
        ..
mode = _mode()
History
Date User Action Args
2013-08-03 03:22:00belopolskysetrecipients: + belopolsky, gregory.p.smith, ronaldoussoren, pitrou, steven.daprano
2013-08-03 03:22:00belopolskysetmessageid: <1375500120.19.0.896650033196.issue18606@psf.upfronthosting.co.za>
2013-08-03 03:22:00belopolskylinkissue18606 messages
2013-08-03 03:21:59belopolskycreate