(self, other)
| 148 | self[len(self):len(self)] = other |
| 149 | |
| 150 | def count(self, other): |
| 151 | ans = 0 |
| 152 | for item in self: |
| 153 | if item == other: |
| 154 | ans += 1 |
| 155 | return ans |
| 156 | |
| 157 | def reverse(self): |
| 158 | for i in xrange(len(self)//2): |
no outgoing calls
no test coverage detected