(self)
| 59 | |
| 60 | class ClassicPrompts(Prompts): |
| 61 | def in_prompt_tokens(self): |
| 62 | return [ |
| 63 | (Token.Prompt, '>>> '), |
| 64 | ] |
| 65 | |
| 66 | def continuation_prompt_tokens(self, width=None): |
| 67 | return [ |
nothing calls this directly
no outgoing calls
no test coverage detected