Core¶
Implementation of the JSON5 decoder.
JsonValue
module-attribute
¶
Type hint for JSON5 values.
JSON5DecodeError ¶
Bases: ValueError
Subclass of ValueError with the following additional properties:
msg: The unformatted error message doc: The JSON document being parsed pos: The start index of doc where parsing failed lineno: The line corresponding to pos colno: The column corresponding to pos
Source code in src/ujson5/core.py
22 23 24 25 26 27 28 29 30 31 |
|