Y
Hacker News
new
|
ask
|
show
|
jobs
by
pseudonym
3805 days ago
It's also slightly stricter with syntax; you can't have extra ending commas. {'foo' : 1, 'bar' : 2,} is valid Python but not valid json.
1 comments
osullivj
3805 days ago
Yes, I keep running into this. I leave trailing commas in my JSON as it evals fine in Python. Then my C++ code, using boost::property_tree chokes on it. property_tree also needs double quotes, not the single quotes in this example.
link
to3m
3805 days ago
There's a module for this: json. The error messages might not be very good, but it does check for trailing commas.
link