(self)
| 53 | dict.__delitem__(self, k) |
| 54 | |
| 55 | def __repr__(self): |
| 56 | return "Counter({%s})" % ", ".join("%r: %r" % e for e in self.most_common()) |
| 57 | |
| 58 | try: |
| 59 | # Import Counter from Python 2.7+ if possible. |
nothing calls this directly
no test coverage detected