[Python-Dev] function for counting items in a sequence (original) (raw)

Steven Bethard steven.bethard at gmail.com
Sun Apr 8 20:11:06 CEST 2007


A summary response to the issues raised so far...

On what the name should be:

On whether the count of a missing item should be 0 or a KeyError:

Raymond Hettinger suggested that the function should be called dict.fromcount() instead. I lean towards the collections module instead of a dict classmethod because the feedback above suggests that the count of an unseen item should be 0. This means returning a defaultdict(int), which might be a bit confusing from a classmethod of dict.

Steve

I'm not in-sane. Indeed, I am so far out of sane that you appear a tiny blip on the distant coast of sanity. --- Bucky Katt, Get Fuzzy



More information about the Python-Dev mailing list