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 ncoghlan
Recipients gregory.p.smith, larry, ncoghlan, oscarbenjamin, steven.daprano, wolma
Date 2014-02-02.01:16:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391303789.61.0.448801013488.issue20478@psf.upfronthosting.co.za>
In-reply-to
Content
As per the python-ideas thread at https://mail.python.org/pipermail/python-ideas/2014-February/025226.html the statistics.mode() function currently passes its argument directly to the collections.Counter() constructor. This results in Counter() objects being special-cased rather than treated as ordinary iterables.

For the main API, it seems more appropriate to force treatment as an iterable by calling iter() on the argument before passing it to the Counter() constructor.

I'll file a separate RFE about making it easier and more efficient to use the statistics module with weight/frequency mappings.
History
Date User Action Args
2014-02-02 01:16:30ncoghlansetrecipients: + ncoghlan, gregory.p.smith, larry, steven.daprano, oscarbenjamin, wolma
2014-02-02 01:16:29ncoghlansetmessageid: <1391303789.61.0.448801013488.issue20478@psf.upfronthosting.co.za>
2014-02-02 01:16:28ncoghlanlinkissue20478 messages
2014-02-02 01:16:25ncoghlancreate