Home | History | Annotate | Download | only in simplejson

Lines Matching refs:None

8     _speedups = None
101 | None | null |
114 indent=None, separators=None, encoding='utf-8'):
119 encoding of keys that are not str, int, long, float or None. If
143 None is the most compact representation.
149 If encoding is not None, then all input strings will be
161 if separators is not None:
168 def _iterencode_list(self, lst, markers=None):
172 if markers is not None:
178 if self.indent is not None:
184 newline_indent = None
194 if newline_indent is not None:
198 if markers is not None:
201 def _iterencode_dict(self, dct, markers=None):
205 if markers is not None:
212 if self.indent is not None:
218 newline_indent = None
233 _do_decode = (_encoding is not None
251 elif key is None:
265 if newline_indent is not None:
269 if markers is not None:
272 def _iterencode(self, o, markers=None):
279 if (_encoding is not None and isinstance(o, str)
283 elif o is None:
300 if markers is not None:
307 if markers is not None:
310 def _iterencode_default(self, o, markers=None):
345 if (_encoding is not None
368 markers = None