Home | History | Annotate | Download | only in simplejson

Lines Matching refs:None

14     >>> simplejson.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
49 [u'foo', {u'bar': [u'baz', None, 1.0, 2]}]
103 indent=None,
104 separators=None,
109 allow_nan=True, cls=None, indent=None, separators=None,
116 (``str``, ``unicode``, ``int``, ``long``, ``float``, ``bool``, ``None``)
136 of 0 will only insert newlines. ``None`` is the most compact representation.
151 cls is None and indent is None and separators is None and
155 if cls is None:
167 allow_nan=True, cls=None, indent=None, separators=None,
173 (``str``, ``unicode``, ``int``, ``long``, ``float``, ``bool``, ``None``)
191 level of 0 will only insert newlines. ``None`` is the most compact
207 cls is None and indent is None and separators is None and
210 if cls is None:
218 _default_decoder = JSONDecoder(encoding=None, object_hook=None)
220 def load(fp, encoding=None, cls=None, object_hook=None, **kw):
243 def loads(s, encoding=None, cls=None, object_hook=None, **kw):
261 if cls is None and encoding is None and object_hook is None and not kw:
263 if cls is None:
265 if object_hook is not None: