(self)
| 50 | self._list_depth = max(self._list_depth - 1, 0) |
| 51 | |
| 52 | def list_popn(self): |
| 53 | self.list_pop() |
| 54 | self._data = join([self._data, '\n']) |
| 55 | |
| 56 | def list_depth(self): |
| 57 | if self._data.strip()[-1:] != '\n' or self._list_depth == 0: |
no test coverage detected