(self, item, count=1)
| 151 | except KeyError: pass |
| 152 | |
| 153 | def setdefault(self, item, count=1): |
| 154 | count = self._filter(count) |
| 155 | return count and dict.setdefault(self, item, count) |
| 156 | |
| 157 | def itereach(self): #XXX consider rename akin to Python3 rules |
| 158 | """Will iterate through all items in bag individually. |
no test coverage detected