(self)
| 51 | return self.input_history.__str__() |
| 52 | |
| 53 | def __copy__(self): |
| 54 | new_instance = type(self)(self.tokenizer, []) |
| 55 | new_instance.input_history = copy.copy(self.input_history) |
| 56 | return new_instance |
| 57 | |
| 58 | def __deepcopy__(self, memodict={}): |
| 59 | new_instance = type(self)(self.tokenizer, []) |
nothing calls this directly
no outgoing calls
no test coverage detected