Package scapi :: Module json :: Class JsonReader
[hide private]
[frames] | no frames]

Class JsonReader

source code

object --+
         |
        JsonReader

Instance Methods [hide private]
 
read(self, s) source code
 
_read(self) source code
 
_readTrue(self) source code
 
_readFalse(self) source code
 
_readNull(self) source code
 
_assertNext(self, ch, target) source code
 
_readNumber(self) source code
 
_readString(self) source code
 
_hexDigitToInt(self, ch) source code
 
_readComment(self) source code
 
_readCStyleComment(self) source code
 
_readDoubleSolidusComment(self) source code
 
_readArray(self) source code
 
_readObject(self) source code
 
_eatWhitespace(self) source code
 
_peek(self) source code
 
_next(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  hex_digits = {'A': 10, 'B': 11, 'C': 12, 'D': 13, 'E': 14, 'F'...
  escapes = {'b': '\x08', 'f': '\x0c', 'n': '\n', 'r': '\r', 't'...
Properties [hide private]

Inherited from object: __class__

Class Variable Details [hide private]

hex_digits

Value:
{'A': 10, 'B': 11, 'C': 12, 'D': 13, 'E': 14, 'F': 15}

escapes

Value:
{'b': '\x08', 'f': '\x0c', 'n': '\n', 'r': '\r', 't': '\t'}