Syntax highlighter for Python values. Currently provides special colorization support for:
The highlighter also takes care of line-wrapping, and automatically stops generating repr output as soon as it has exceeded the specified number of lines (which should make it faster than pprint for large values). It does not bother to do automatic cycle detection, because maxlines is typically around 5, so it's really not worth it.
The syntax-highlighted output is encoded using a ParsedDocstring
, which can then be used to generate output in a variety of formats.
Implementation note: we use exact tests for builtin classes (list, etc) rather than using isinstance, because subclasses might override __repr__.
Usage: >>>
Class | ColorizedPyvalRepr |
|
Class | PyvalColorizer |
Syntax highlighter for Python values. |
Function | colorize_inline_pyval |
Used to colorize type annotations and parameters default values. @returns: colorize_pyval(pyval, linelen=None, linebreakok=False) |
Function | colorize_pyval |
|
Function | decode_with_backslashreplace |
No summary |
Class | _ColorizerState |
No summary |
Class | _Linebreak |
A control-flow exception that is raised when PyvalColorizer generates a string containing a newline, but the state object's linebreakok variable is False. |
Class | _MarkedColorizerState |
Undocumented |
Class | _Maxlines |
A control-flow exception that is raised when PyvalColorizer exeeds the maximum number of allowed lines. |
Class | _OperatorDelimiter |
A context manager that can add enclosing delimiters to nested operators when needed. |
Class | _Parentage |
Add parent attribute to ast nodes instances. |
Function | _bytes_escape |
Undocumented |
Function | _get_str_func |
Undocumented |
Function | _str_escape |
Encode a string such that it's correctly represented inside simple quotes. |
Parameters | |
pyval:Any | Undocumented |
Returns | |
ColorizedPyvalRepr | colorize_pyval(pyval, linelen=None, linebreakok=False) |
Parameters | |
pyval:Any | Undocumented |
linelen:Optional[ | Undocumented |
maxlines:int | Undocumented |
linebreakok:bool | Undocumented |
Returns | |
ColorizedPyvalRepr | A ColorizedPyvalRepr describing the given pyval. |
Convert the given 8-bit string into unicode, treating any character c such that ord(c)<128 as an ascii character, and converting any c such that ord(c)>128 into a backslashed escape sequence.
>>> decode_with_backslashreplace(b'abc\xff\xe8') 'abc\\xff\\xe8'
Parameters | |
s:bytes | Undocumented |
Returns | |
str | Undocumented |