Searched refs:ensure_ascii (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebKitTools/simplejson/
H A D__init__.py100 ensure_ascii=True, variable
108 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
119 If ``ensure_ascii`` is ``False``, then the some chunks written to ``fp``
149 if (skipkeys is False and ensure_ascii is True and
157 iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
166 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
176 If ``ensure_ascii`` is ``False``, then the return value will be a
205 if (skipkeys is False and ensure_ascii is True and
213 skipkeys=skipkeys, ensure_ascii
[all...]
H A Dencoder.py112 def __init__(self, skipkeys=False, ensure_ascii=True,
122 If ensure_ascii is True, the output is guaranteed to be str
124 ensure_ascii is false, the output will be unicode object.
155 self.ensure_ascii = ensure_ascii
221 if self.ensure_ascii:
274 if self.ensure_ascii:

Completed in 44 milliseconds