Padding is off in JSON.stringify
```console
> print(JSON.stringify({"d":{"x":0},"b":[1,2],"e":{"foo":"bar"}},undefined,2))
{
"d": {
"x": 0
},
"b": [
1,
2
],
"e": {
"foo": "bar"
}
}
```
Indentation is off from some point, looks like missing state pop?
0 条评论