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

/external/webkit/WebKitTools/simplejson/
H A D__init__.py99 skipkeys=False, variable
108 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
115 If ``skipkeys`` is ``True`` then ``dict`` keys that are not basic types
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,
172 If ``skipkeys`` is ``True`` then ``dict`` keys that are not basic types
205 if (skipkeys is False and ensure_ascii is True and
213 skipkeys
[all...]
H A Dencoder.py112 def __init__(self, skipkeys=False, ensure_ascii=True,
118 If skipkeys is False, then it is a TypeError to attempt
120 skipkeys is True, such items are simply skipped.
154 self.skipkeys = skipkeys
253 elif self.skipkeys:

Completed in 58 milliseconds