HomeSort by relevance Sort by last modified time
    Searched refs:check_circular (Results 1 - 10 of 10) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_check_circular.py 29 self.dumps([set()], default=default_iterable, check_circular=False)
30 self.assertRaises(TypeError, self.dumps, [set()], check_circular=False)
test_recursion.py 100 """If check_circular is False, this will keep adding another list."""
104 EndlessJSONEncoder(check_circular=False).encode(5j)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_check_circular.py 29 self.dumps([set()], default=default_iterable, check_circular=False)
30 self.assertRaises(TypeError, self.dumps, [set()], check_circular=False)
test_recursion.py 100 """If check_circular is False, this will keep adding another list."""
104 EndlessJSONEncoder(check_circular=False).encode(5j)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
encoder.py 102 check_circular=True, allow_nan=True, sort_keys=False,
117 If check_circular is true, then lists, dicts, and custom encoded
155 self.check_circular = check_circular
222 if self.check_circular:
__init__.py 114 check_circular=True, variable
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
141 If ``check_circular`` is false, then the circular reference check
176 check_circular and allow_nan and
184 check_circular=check_circular, allow_nan=allow_nan, indent=indent,
193 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
205 If ``check_circular`` is false, then the circular reference check
240 check_circular and allow_nan and
248 check_circular=check_circular, allow_nan=allow_nan, indent=indent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 102 check_circular=True, allow_nan=True, sort_keys=False,
117 If check_circular is true, then lists, dicts, and custom encoded
155 self.check_circular = check_circular
222 if self.check_circular:
__init__.py 114 check_circular=True, variable
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
141 If ``check_circular`` is false, then the circular reference check
176 check_circular and allow_nan and
184 check_circular=check_circular, allow_nan=allow_nan, indent=indent,
193 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
205 If ``check_circular`` is false, then the circular reference check
240 check_circular and allow_nan and
248 check_circular=check_circular, allow_nan=allow_nan, indent=indent
    [all...]
  /external/chromium_org/third_party/simplejson/
encoder.py 107 check_circular=True, allow_nan=True, sort_keys=False,
122 If check_circular is true, then lists, dicts, and custom encoded
176 self.check_circular = check_circular
255 if self.check_circular:
__init__.py 132 check_circular=True,
145 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
164 If ``check_circular`` is false, then the circular reference check
220 check_circular and allow_nan and
230 check_circular=check_circular, allow_nan=allow_nan, indent=indent,
245 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
261 If ``check_circular`` is false, then the circular reference check
315 check_circular and allow_nan and
326 check_circular=check_circular, allow_nan=allow_nan, indent=indent
    [all...]

Completed in 386 milliseconds