(self, index)
| 32 | return len(self._item_list) |
| 33 | |
| 34 | def itemAt(self, index): |
| 35 | if 0 <= index < len(self._item_list): |
| 36 | return self._item_list[index] |
| 37 | |
| 38 | return None |
| 39 | |
| 40 | def takeAt(self, index): |
| 41 | if 0 <= index < len(self._item_list): |
no outgoing calls
no test coverage detected