From 27ece5964f2da82383ca24b128ecfca962baa93f Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Sat, 31 Dec 2005 21:22:07 +0000 Subject: docs git-svn-id: http://simplejson.googlecode.com/svn/trunk@6 a4795897-2c25-0410-b006-0d3caba88fa1 --- docs/class-simplejson.JSONDecoder.html | 205 +++++++++++++++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 docs/class-simplejson.JSONDecoder.html (limited to 'docs/class-simplejson.JSONDecoder.html') diff --git a/docs/class-simplejson.JSONDecoder.html b/docs/class-simplejson.JSONDecoder.html new file mode 100644 index 0000000..a7fd6af --- /dev/null +++ b/docs/class-simplejson.JSONDecoder.html @@ -0,0 +1,205 @@ + + + + + simplejson.JSONDecoder -- Simple JSON &lt;<a class="reference" href="http://json.org">http://json.org</a>&gt; decoder + + + + +
+ +
+

+ simplejson 1.1

+
+ index + + + + + +
+ + + + + simplejson + + + + details + + + tree + + + +
+
+ +
+ +

+ JSONDecoder +

+

+ Simple JSON <http://json.org> decoder +

+ + +
+
+
+

Performs the following translations in decoding:

+ +++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
JSONPython
objectdict
arraylist
stringunicode
number (int)int, long
number (real)float
trueTrue
falseFalse
nullNone
+

It also understands NaN, Infinity, and -Infinity as +their corresponding float values, which is outside the JSON spec.

+
+ +
+ + + + + + + + +

Attributes

+
+ + +

+ a + + scanner

+
+
<simplejson.scanner.Scanner object at 0x67ec70>
+
+
+ + + + + + +

Methods

+
+ + +

+ f + + __init__(self, encoding=None) + ... +

+
+ + + + +
+
+ + + +

+ + + + See + the source + for more information. + +

+
+ + +
+ + \ No newline at end of file -- cgit v1.2.1