Re: [Python-Dev] Comparisions for collections.Counters

2018-09-05 Thread Evpok Padding
On Wed, 5 Sep 2018 at 18:28, Serhiy Storchaka wrote: > There is a closed issue for this: https://bugs.python.org/issue22515. > Oh, thanks, I had missed that. I guess I can live with it, although I agree with [the last comment][1] that this decision does not make a lot of sense. But hey, who am I

Re: [Python-Dev] Comparisions for collections.Counters

2018-09-05 Thread Serhiy Storchaka
05.09.18 13:10, Evpok Padding пише: According to the [doc][1], `collections.Counter` convenience intersection and union functions are meant to help it represent multisets. However, it currently lacks comparisons, which would make sense and seems straightforward to implement. Am I missing somet

Re: [Python-Dev] Comparisions for collections.Counters

2018-09-05 Thread Michael Selik
On Wed, Sep 5, 2018 at 3:13 AM Evpok Padding wrote: > According to the [doc][1], `collections.Counter` convenience intersection > and union functions are meant to help it represent multisets. However, it > currently lacks comparisons, which would make sense and seems > straightforward to implemen