We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4dce6 commit af1a2f3Copy full SHA for af1a2f3
examples/json.py
@@ -50,17 +50,19 @@ def test():
50
"int": 1,
51
"string": "hello",
52
"a list": [1, 2, 3],
53
- "escapes": "\n",
54
- "nested": {"x": "y"}
+ "escapes": "\n \u24D2",
+ "nested": {"x": "y"},
55
+ "other": [true, false, null]
56
}
57
"""
58
)
59
== {
60
61
62
63
+ "escapes": "\n ⓒ",
64
"nested": {"x": "y"},
65
+ "other": [True, False, None],
66
67
68
0 commit comments