From affeff6d10400f06f6a745e72aebfee1f49a28b5 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 2 Sep 2009 16:06:07 -0400 Subject: [PATCH] markup fiddling --- serializing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serializing.html b/serializing.html index cf83b7a..88abd9b 100644 --- a/serializing.html +++ b/serializing.html @@ -406,7 +406,7 @@ def protocol_version(file_object): * null None -* All JSON values are case-sensitive. +* All JSON values are case-sensitive.

Did you notice what was missing? Tuples & bytes! JSON has an array type, which the json module maps to a Python list, but it does not have a separate type for “frozen arrays” (tuples). And while JSON supports strings quite nicely, it has no support for bytes objects or byte arrays.