This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/pycon/unterminated_tb.txt
Jean Abou-Samra c97762448b
Refactor PythonConsoleLexer as a DelegatingLexer (#2412)
This is simpler and more reliable than hand-coding the state machine.

Fixes #2411
2023-04-17 18:41:55 +02:00

17 lines
372 B
Text

---input---
>>> unterminated_traceback()
Traceback (most recent call last):
>>>
---tokens---
'>>> ' Generic.Prompt
'unterminated_traceback' Name
'(' Punctuation
')' Punctuation
'\n' Text.Whitespace
'Traceback (most recent call last):\n' Generic.Traceback
'' Text
'>>>' Generic.Prompt
'\n' Text.Whitespace