(self)
| 48 | return self.input_history.__len__() |
| 49 | |
| 50 | def __str__(self): |
| 51 | return self.input_history.__str__() |
| 52 | |
| 53 | def __copy__(self): |
| 54 | new_instance = type(self)(self.tokenizer, []) |
nothing calls this directly
no outgoing calls
no test coverage detected