(self)
| 26 | |
| 27 | # Pops an item from the front of the list |
| 28 | def pop(self): |
| 29 | if self.head_: |
| 30 | self.head_ = self.head_.get_next() |
| 31 | else: |
| 32 | raise IndexError("Unable to pop from empty list") |
| 33 | |
| 34 | # Returns true if list contains the given value. |
| 35 | def contains(self, value): |
no test coverage detected