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
The HSD specification does not really specify which characters are valid for properties or methods. To figure out if spaces are allowed in keys I used the TOML syntax of escaping keys, so quoting them. I did expect an error, of course, but got an empty string.
The input
"Quoted"=0
yields the following dict
{'': 0}
which is in turn serialized as invalid HSD
=0
The text was updated successfully, but these errors were encountered:
The HSD specification does not really specify which characters are valid for properties or methods. To figure out if spaces are allowed in keys I used the TOML syntax of escaping keys, so quoting them. I did expect an error, of course, but got an empty string.
The input
yields the following dict
which is in turn serialized as invalid HSD
The text was updated successfully, but these errors were encountered: