Searched refs:iterencode (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/json/ |
D | __init__.py | 169 iterable = _default_encoder.iterencode(obj) 176 default=default, sort_keys=sort_keys, **kw).iterencode(obj)
|
D | encoder.py | 199 chunks = self.iterencode(o, _one_shot=True) 204 def iterencode(self, o, _one_shot=False): member in JSONEncoder
|
/third_party/python/Lib/test/ |
D | test_codecs.py | 1574 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/ |
D | json.rst | 99 >>> list(ComplexEncoder().iterencode(2 + 1j)) 504 .. method:: iterencode(o) 509 for chunk in json.JSONEncoder().iterencode(bigobject):
|
D | codecs.rst | 227 .. function:: iterencode(iterator, encoding, errors='strict', **kwargs) 249 :func:`iterencode`.
|
/third_party/python/Lib/ |
D | codecs.py | 1025 def iterencode(iterator, encoding, errors='strict', **kwargs): function
|