Home
last modified time | relevance | path

Searched refs:TextIOBase (Results 1 – 25 of 27) sorted by relevance

12

/third_party/python/Lib/
Dio.py96 class TextIOBase(_io._TextIOBase, IOBase): class
106 TextIOBase.register(klass)
D_pyio.py1843 class TextIOBase(IOBase): class
1907 io.TextIOBase.register(TextIOBase)
1995 class TextIOWrapper(TextIOBase):
/third_party/python/Doc/library/
Dio.rst68 :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 …]
Demail.iterators.rst23 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
Dfileinput.rst150 :meth:`~io.TextIOBase.readline` method which returns the next input line,
153 and :meth:`~io.TextIOBase.readline` cannot be mixed.
Demail.parser.rst207 both the :meth:`~io.TextIOBase.readline` and the
208 :meth:`~io.TextIOBase.read` methods on file-like objects.
Dshlex.rst115 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
Dhttp.client.rst272 instance of :class:`io.TextIOBase`, the data returned by the ``read()``
Dtkinter.rst956 want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase`
Dsys.rst1577 underlying binary :data:`~io.TextIOBase.buffer` object. For example, to
Dfunctions.rst1285 :class:`io.TextIOBase` (specifically :class:`io.TextIOWrapper`). When used
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py118 self.assertIsInstance(f, io.TextIOBase)
221 self.assertIsInstance(f, io.TextIOBase)
/third_party/python/Lib/test/
Dtest_winconsoleio.py22 self.assertFalse(issubclass(ConIO, io.TextIOBase))
Dtest_io.py495 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)
Dtest_httplib.py805 class UpdatingFile(io.TextIOBase):
Dtest_pathlib.py1536 self.assertIsInstance(f, io.TextIOBase)
/third_party/python/Lib/xml/sax/
Dsaxutils.py76 if isinstance(out, io.TextIOBase):
/third_party/python/Lib/idlelib/
Drun.py433 class StdioFile(io.TextIOBase):
/third_party/python/Doc/faq/
Dextending.rst166 >>> class StdoutCatcher(io.TextIOBase):
/third_party/python/Lib/http/
Dclient.py803 return isinstance(stream, io.TextIOBase)
/third_party/python/Doc/howto/
Dunicode.rst569 parameters for methods such as :meth:`~io.TextIOBase.read` and
570 :meth:`~io.TextIOBase.write`. This works through :func:`open`\'s *encoding* and
Dfunctional.rst307 Files also support iteration by calling the :meth:`~io.TextIOBase.readline`
/third_party/python/Doc/whatsnew/
D3.0.rst306 instances of :class:`io.TextIOBase`). To read and write bytes data
307 with these streams, you need to use their :data:`io.TextIOBase.buffer`
D2.6.rst1075 * :class:`TextIOBase`: Provides functions for reading and writing
1077 and supporting :term:`universal newlines`. :class:`TextIOBase` defines
/third_party/python/Doc/reference/
Ddatamodel.rst932 therefore follow the interface defined by the :class:`io.TextIOBase`

12