Home
last modified time | relevance | path

Searched refs:iterencode (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/json/
D__init__.py169 iterable = _default_encoder.iterencode(obj)
176 default=default, sort_keys=sort_keys, **kw).iterencode(obj)
Dencoder.py199 chunks = self.iterencode(o, _one_shot=True)
204 def iterencode(self, o, _one_shot=False): member in JSONEncoder
/third_party/python/Lib/test/
Dtest_codecs.py1574 b"".join(codecs.iterencode("python.org", "idna")),
1578 b"".join(codecs.iterencode("python.org.", "idna")),
1582 b"".join(codecs.iterencode("pyth\xf6n.org.", "idna")),
1586 b"".join(codecs.iterencode("pyth\xf6n.org.", "idna")),
1938 codecs.iterencode(s, encoding), encoding))
1943 codecs.iterencode("", encoding), encoding))
/third_party/python/Doc/library/
Djson.rst99 >>> list(ComplexEncoder().iterencode(2 + 1j))
504 .. method:: iterencode(o)
509 for chunk in json.JSONEncoder().iterencode(bigobject):
Dcodecs.rst227 .. function:: iterencode(iterator, encoding, errors='strict', **kwargs)
249 :func:`iterencode`.
/third_party/python/Lib/
Dcodecs.py1025 def iterencode(iterator, encoding, errors='strict', **kwargs): function