The classic Python prompt.
| 65 | |
| 66 | |
| 67 | class ClassicPrompt(PromptStyle): |
| 68 | """ |
| 69 | The classic Python prompt. |
| 70 | """ |
| 71 | |
| 72 | def in_prompt(self) -> AnyFormattedText: |
| 73 | return [("class:prompt", ">>> ")] |
| 74 | |
| 75 | def in2_prompt(self, width: int) -> AnyFormattedText: |
| 76 | return [("class:prompt.dots", "...")] |
| 77 | |
| 78 | def out_prompt(self) -> AnyFormattedText: |
| 79 | return [] |