You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running property-based tests on an application showed that certain literal values, e.g. "\x08" and "\x1f" get rejected by the hext parser, i.e. parsing fails with an json.decoder.JSONDecodeError.
I think the problem can be remedied by using the strict=False flag in plugins.parsers.hext.HextuplesParser._load_json_line (hext.py, line 34).
Running property-based tests on an application showed that certain literal values, e.g. "\x08" and "\x1f" get rejected by the hext parser, i.e. parsing fails with an
json.decoder.JSONDecodeError
.I think the problem can be remedied by using the
strict=False
flag inplugins.parsers.hext.HextuplesParser._load_json_line
(hext.py, line 34).The text was updated successfully, but these errors were encountered: