(self)
| 85 | self._list_depth = max(self._list_depth - 1, 0) |
| 86 | |
| 87 | def list_popn(self): |
| 88 | self.list_pop() |
| 89 | self._data = join([self._data, '\n']) |
| 90 | |
| 91 | def list_depth(self): |
| 92 | if self._data.strip()[-1:] != '\n' or self._list_depth == 0: |
no test coverage detected