jsonyx.allow.MISSING_COMMAS

jsonyx.allow.MISSING_COMMAS = frozenset({'missing_commas'})

Allow separating items with whitespace.

>>> import jsonyx as json
>>> import jsonyx.allow
>>> json.loads("[1 2 3]", allow=jsonyx.allow.MISSING_COMMAS)
[1, 2, 3]