Append new entry to the history.
(self, entry)
| 19 | PromptToolkitHistoryAdder(self, wait_for_gc=wait_for_gc) |
| 20 | |
| 21 | def append(self, entry): |
| 22 | """Append new entry to the history.""" |
| 23 | self.strings.append(entry) |
| 24 | |
| 25 | def __getitem__(self, index): |
| 26 | return self.strings[index] |
no outgoing calls
no test coverage detected