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
It is not clear from the specification whether multiple trailing commas are allowed in array values.
For example:
a = [ 1, 2, , , , ] # is this allowed ?
b = [ , ] # or this ?
The ABNF definition forbids both cases, but the ABNF is currently not authoritative.
The section Array only states that "Terminating commas (also called trailing commas) are ok after the last value of the array.". This suggests that any number of trailing commas is fine.
The text was updated successfully, but these errors were encountered:
It is not clear from the specification whether multiple trailing commas are allowed in array values.
For example:
The ABNF definition forbids both cases, but the ABNF is currently not authoritative.
The section Array only states that "Terminating commas (also called trailing commas) are ok after the last value of the array.". This suggests that any number of trailing commas is fine.
The text was updated successfully, but these errors were encountered: