Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100473

Re: subclassing collections.Counter

From Pavlos Parissis <pavlos.parissis@gmail.com>
Newsgroups comp.lang.python
Subject Re: subclassing collections.Counter
Date 2015-12-15 17:59 +0100
Message-ID <mailman.34.1450198801.22044.python-list@python.org> (permalink)
References <567036A5.6050205@gmail.com> <n4pdtg$mdb$1@ger.gmane.org> <56703D57.1080209@gmail.com>

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

On 15/12/2015 05:18 μμ, Pavlos Parissis wrote:
> On 15/12/2015 05:08 μμ, Peter Otten wrote:
>> Pavlos Parissis wrote:
>>
>>> I need to store values for metrics and return the average for some
>>> and the sum for the rest. Thus, I thought I could extend
>>> collections.Counter class by returning averages for some keys.
>>>
>>> My class modifies the update() to increment a counter and the
>>> __getitem__ to perform the calculation. But, I get RuntimeError: maximum
>>> recursion depth exceeded as I access an attribute inside
>>> __getitem__.
>>>
>>> Does anyone has an idea how I can achieve this?
>>
>>> class CounterExt(Counter):
>>
>>>     def __getitem__(self, key):
>>>         if (self.avg_metrics is not None and key in self.avg_metrics):
>>>             return self[key] / self._counter
>>>         else:
>>>             return self[key]
>>
>> self[key] will call the CounterExt.__getitem__() method again. Use 
>> super().__getitem__(key) instead to invoke Counter.__getitem__().
>>
>>
>>
> 
> I applied your suggestion and worked!
>    def __getitem__(self, key):
>         if (self.avg_metrics is not None and key in self.avg_metrics):
>             return super().__getitem__(key) / self.__counter
>         else:
>             return super().__getitem__(key)
> 
> Thank you very much,
> Pavlos
> 

Calling items() over the object doesn't call __getitem__ and I can't
find in the doc which method I need to change, any ideas?

Cheers,
Pavlos

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: subclassing collections.Counter Pavlos Parissis <pavlos.parissis@gmail.com> - 2015-12-15 17:59 +0100

csiph-web