Message 145071 - Python tracker (original) (raw)
I'll add the in-place methods including iadd, isub, iand, and ior.
If speed is your issue, you should continue to use the update() method which will always be faster because it doesn't have a step to strip zeros and negative values from the existing Counter. Also, update() has a fast-path written in C.