Searched refs:TextIOBase (Results 1 – 25 of 27) sorted by relevance
12
/third_party/python/Lib/ |
D | io.py | 96 class TextIOBase(_io._TextIOBase, IOBase): class 106 TextIOBase.register(klass)
|
D | _pyio.py | 1843 class TextIOBase(IOBase): class 1907 io.TextIOBase.register(TextIOBase) 1995 class TextIOWrapper(TextIOBase):
|
/third_party/python/Doc/library/ |
D | io.rst | 68 :class:`TextIOBase`. 273 The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with 275 from strings. :class:`TextIOWrapper`, which extends :class:`TextIOBase`, is a buffered text 298 :class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` … 852 .. class:: TextIOBase 858 :class:`TextIOBase` provides or overrides these data attributes and 879 :class:`TextIOBase` deals with. This is not part of the 880 :class:`TextIOBase` API and may not exist in some implementations. 884 Separate the underlying binary buffer from the :class:`TextIOBase` and 887 After the underlying buffer has been detached, the :class:`TextIOBase` is [all …]
|
D | email.iterators.rst | 23 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
|
D | fileinput.rst | 150 :meth:`~io.TextIOBase.readline` method which returns the next input line, 153 and :meth:`~io.TextIOBase.readline` cannot be mixed.
|
D | email.parser.rst | 207 both the :meth:`~io.TextIOBase.readline` and the 208 :meth:`~io.TextIOBase.read` methods on file-like objects.
|
D | shlex.rst | 115 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
|
D | http.client.rst | 272 instance of :class:`io.TextIOBase`, the data returned by the ``read()``
|
D | tkinter.rst | 956 want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase`
|
D | sys.rst | 1577 underlying binary :data:`~io.TextIOBase.buffer` object. For example, to
|
D | functions.rst | 1285 :class:`io.TextIOBase` (specifically :class:`io.TextIOWrapper`). When used
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_run.py | 118 self.assertIsInstance(f, io.TextIOBase) 221 self.assertIsInstance(f, io.TextIOBase)
|
/third_party/python/Lib/test/ |
D | test_winconsoleio.py | 22 self.assertFalse(issubclass(ConIO, io.TextIOBase))
|
D | test_io.py | 495 if isinstance(obj, self.TextIOBase): 716 self._check_base_destructor(self.TextIOBase) 862 self.TextIOBase(), 4062 self.assertIsInstance(self.TextIOBase, abc.ABCMeta) 4069 self.assertNotIsInstance(f, abcmodule.TextIOBase) 4074 self.assertNotIsInstance(f, abcmodule.TextIOBase) 4079 self.assertIsInstance(f, abcmodule.TextIOBase)
|
D | test_httplib.py | 805 class UpdatingFile(io.TextIOBase):
|
D | test_pathlib.py | 1536 self.assertIsInstance(f, io.TextIOBase)
|
/third_party/python/Lib/xml/sax/ |
D | saxutils.py | 76 if isinstance(out, io.TextIOBase):
|
/third_party/python/Lib/idlelib/ |
D | run.py | 433 class StdioFile(io.TextIOBase):
|
/third_party/python/Doc/faq/ |
D | extending.rst | 166 >>> class StdoutCatcher(io.TextIOBase):
|
/third_party/python/Lib/http/ |
D | client.py | 803 return isinstance(stream, io.TextIOBase)
|
/third_party/python/Doc/howto/ |
D | unicode.rst | 569 parameters for methods such as :meth:`~io.TextIOBase.read` and 570 :meth:`~io.TextIOBase.write`. This works through :func:`open`\'s *encoding* and
|
D | functional.rst | 307 Files also support iteration by calling the :meth:`~io.TextIOBase.readline`
|
/third_party/python/Doc/whatsnew/ |
D | 3.0.rst | 306 instances of :class:`io.TextIOBase`). To read and write bytes data 307 with these streams, you need to use their :data:`io.TextIOBase.buffer`
|
D | 2.6.rst | 1075 * :class:`TextIOBase`: Provides functions for reading and writing 1077 and supporting :term:`universal newlines`. :class:`TextIOBase` defines
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 932 therefore follow the interface defined by the :class:`io.TextIOBase`
|
12