Home
last modified time | relevance | path

Searched refs:TextIOWrapper (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dio.py66 IncrementalNewlineDecoder, TextIOWrapper)
96 for klass in (StringIO, TextIOWrapper):
D_pyio.py223 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1440 class TextIOWrapper(TextIOBase): class
1965 class StringIO(TextIOWrapper):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dio.py57 IncrementalNewlineDecoder, TextIOWrapper)
88 for klass in (StringIO, TextIOWrapper):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_io.py1684 t = self.TextIOWrapper(b)
1698 t = self.TextIOWrapper(b)
1701 t = self.TextIOWrapper(b, encoding="ascii")
1711 t = self.TextIOWrapper(b, encoding="utf-8")
1712 modname = self.TextIOWrapper.__module__
1725 t = self.TextIOWrapper(b, newline="\n", line_buffering=True)
1736 t = self.TextIOWrapper(b, encoding="utf8")
1738 t = self.TextIOWrapper(b)
1745 t = self.TextIOWrapper(b, encoding="ascii")
1749 t = self.TextIOWrapper(b, encoding="ascii", errors="strict")
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
Dsaxutils.py106 class _UnbufferedTextIOWrapper(io.TextIOWrapper):