Error » snippet
snippet → string
Returns a formatted excerpt of those passage(s) from the input where the error occurred.
python>>> try:
... # ...
... except Error as e:
... return e.snippet
Line | Content
1 |
* 2 | # a
* 3 | ## b
> 4 | ### c < a
5 |
Return value
A formatted excerpt of those passage(s) from the input where the error occurred.