| Home | Trees | Indices | Help |
|
|---|
|
|
Implementation of JSONEncoder
|
|||
|
JSONEncoder Extensible JSON <http://json.org> encoder for Python data structures. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]')
|
|||
ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])')
|
|||
HAS_UTF8 = re.compile(r'[\x80-\xff]')
|
|||
ESCAPE_DCT = {'\\': '\\\\', '"': '\\"', '\b': '\\b', '\f': '\\
|
|||
INFINITY = float('1e66666')
|
|||
Imports: re, _speedups.encode_basestring_ascii
|
|||
Return the canonical string representation of the object. For most object types, eval(repr(object)) == object.
|
|
|||
ESCAPE_DCT
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Sat Aug 30 08:41:44 2008 | http://epydoc.sourceforge.net |