(self, n=10, raw=True, output=False, include_latest=False)
| 122 | """An abstract class for History Accessors """ |
| 123 | |
| 124 | def get_tail(self, n=10, raw=True, output=False, include_latest=False): |
| 125 | raise NotImplementedError |
| 126 | |
| 127 | def search(self, pattern="*", raw=True, search_raw=True, |
| 128 | output=False, n=None, unique=False): |
nothing calls this directly
no outgoing calls
no test coverage detected