(self)
| 30 | ] |
| 31 | |
| 32 | def out_prompt_tokens(self): |
| 33 | return [ |
| 34 | (Token.OutPrompt, 'Out<'), |
| 35 | (Token.OutPromptNum, str(self.shell.execution_count)), |
| 36 | (Token.OutPrompt, '>: '), |
| 37 | ] |
| 38 | |
| 39 | |
| 40 | from traitlets.config.loader import Config |
nothing calls this directly
no outgoing calls
no test coverage detected