Alexander Belopolsky added the comment:

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()

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18606>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to