Home
last modified time | relevance | path

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

12

/external/python/cpython2/Lib/
Dio.py79 class TextIOBase(_io._TextIOBase, IOBase): class
89 TextIOBase.register(klass)
D_pyio.py1305 class TextIOBase(IOBase): class
1368 io.TextIOBase.register(TextIOBase)
1456 class TextIOWrapper(TextIOBase):
/external/python/cpython3/Lib/
Dio.py81 class TextIOBase(_io._TextIOBase, IOBase): class
91 TextIOBase.register(klass)
D_pyio.py1757 class TextIOBase(IOBase): class
1822 io.TextIOBase.register(TextIOBase)
1910 class TextIOWrapper(TextIOBase):
/external/python/cpython3/Doc/library/
Dio.rst68 :class:`TextIOBase`.
185 The :class:`TextIOBase` ABC, another subclass of :class:`IOBase`, deals with
210 :class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
757 .. class:: TextIOBase
764 :class:`TextIOBase` provides or overrides these data attributes and
785 :class:`TextIOBase` deals with. This is not part of the
786 :class:`TextIOBase` API and may not exist in some implementations.
790 Separate the underlying binary buffer from the :class:`TextIOBase` and
793 After the underlying buffer has been detached, the :class:`TextIOBase` is
796 Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not
[all …]
Demail.iterators.rst23 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
Dfileinput.rst144 :meth:`~io.TextIOBase.readline` method which returns the next input line,
147 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.rst83 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
Dhttp.client.rst243 instance of :class:`io.TextIOBase`, the data returned by the ``read()``
/external/python/cpython2/Doc/library/
Dio.rst46 Another :class:`IOBase` subclass, :class:`TextIOBase`, deals with
173 :class:`TextIOBase` (specifically :class:`TextIOWrapper`). When used to open
682 .. class:: TextIOBase
689 :class:`TextIOBase` provides or overrides these data attributes and
710 :class:`TextIOBase` deals with. This is not part of the
711 :class:`TextIOBase` API and may not exist on some implementations.
715 Separate the underlying binary buffer from the :class:`TextIOBase` and
718 After the underlying buffer has been detached, the :class:`TextIOBase` is
721 Some :class:`TextIOBase` implementations, like :class:`~io.StringIO`, may not
747 :meth:`TextIOBase.tell`, or zero. Any other *offset* value
[all …]
Demail.iterators.rst20 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
Demail.parser.rst132 :meth:`~io.TextIOBase.readline` and the :meth:`~io.TextIOBase.read`
Dshlex.rst57 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_run.py74 self.assertIsInstance(f, io.TextIOBase)
177 self.assertIsInstance(f, io.TextIOBase)
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_io.py54 self.assertIsInstance(f, io.TextIOBase)
165 self.assertIsInstance(f, io.TextIOBase)
/external/python/cpython3/Lib/test/
Dtest_winconsoleio.py22 self.assertFalse(issubclass(ConIO, io.TextIOBase))
Dtest_io.py474 if isinstance(obj, self.TextIOBase):
695 self._check_base_destructor(self.TextIOBase)
835 self.TextIOBase(),
3898 self.assertIsInstance(self.TextIOBase, abc.ABCMeta)
3905 self.assertNotIsInstance(f, abcmodule.TextIOBase)
3910 self.assertNotIsInstance(f, abcmodule.TextIOBase)
3915 self.assertIsInstance(f, abcmodule.TextIOBase)
/external/python/cpython3/Lib/xml/sax/
Dsaxutils.py77 if isinstance(out, io.TextIOBase):
/external/python/cpython3/Lib/idlelib/
Drun.py330 class PseudoFile(io.TextIOBase):
/external/python/cpython2/Lib/test/
Dtest_io.py527 self._check_base_destructor(self.TextIOBase)
3045 self.assertIsInstance(self.TextIOBase, abc.ABCMeta)
3052 self.assertNotIsInstance(f, abcmodule.TextIOBase)
3057 self.assertNotIsInstance(f, abcmodule.TextIOBase)
3062 self.assertIsInstance(f, abcmodule.TextIOBase)
/external/python/cpython3/Lib/http/
Dclient.py793 return isinstance(stream, io.TextIOBase)
/external/python/cpython3/Doc/faq/
Dextending.rst166 >>> class StdoutCatcher(io.TextIOBase):
/external/python/cpython3/Doc/howto/
Dunicode.rst563 parameters for methods such as :meth:`~io.TextIOBase.read` and
564 :meth:`~io.TextIOBase.write`. This works through :func:`open`\'s *encoding* and
/external/python/cpython3/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`

12