(self, width=None)
| 38 | return fragment_list_width(self.in_prompt_tokens()) |
| 39 | |
| 40 | def continuation_prompt_tokens(self, width=None): |
| 41 | if width is None: |
| 42 | width = self._width() |
| 43 | return [ |
| 44 | (Token.Prompt, (' ' * (width - 5)) + '...: '), |
| 45 | ] |
| 46 | |
| 47 | def rewrite_prompt_tokens(self): |
| 48 | width = self._width() |
no test coverage detected