(self, reverse=False)
| 47 | self.master = master |
| 48 | |
| 49 | def positions(self, reverse=False): |
| 50 | # The stub implementation of positions can go once this issue is resolved: |
| 51 | # https://github.com/urwid/urwid/issues/294 |
| 52 | ret = range(self.master.view.get_length()) |
| 53 | if reverse: |
| 54 | return reversed(ret) |
| 55 | return ret |
| 56 | |
| 57 | def view_changed(self): |
| 58 | self._modified() |
nothing calls this directly
no test coverage detected