Searched refs:TextIOBase (Results 1 – 25 of 42) sorted by relevance
12
/external/python/cpython2/Lib/ |
D | io.py | 79 class TextIOBase(_io._TextIOBase, IOBase): class 89 TextIOBase.register(klass)
|
D | _pyio.py | 1305 class TextIOBase(IOBase): class 1368 io.TextIOBase.register(TextIOBase) 1456 class TextIOWrapper(TextIOBase):
|
/external/python/cpython3/Lib/ |
D | io.py | 81 class TextIOBase(_io._TextIOBase, IOBase): class 91 TextIOBase.register(klass)
|
D | _pyio.py | 1757 class TextIOBase(IOBase): class 1822 io.TextIOBase.register(TextIOBase) 1910 class TextIOWrapper(TextIOBase):
|
/external/python/cpython3/Doc/library/ |
D | io.rst | 68 :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 …]
|
D | email.iterators.rst | 23 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
|
D | fileinput.rst | 144 :meth:`~io.TextIOBase.readline` method which returns the next input line, 147 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 | 83 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
|
D | http.client.rst | 243 instance of :class:`io.TextIOBase`, the data returned by the ``read()``
|
/external/python/cpython2/Doc/library/ |
D | io.rst | 46 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 …]
|
D | email.iterators.rst | 20 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
|
D | email.parser.rst | 132 :meth:`~io.TextIOBase.readline` and the :meth:`~io.TextIOBase.read`
|
D | shlex.rst | 57 :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_run.py | 74 self.assertIsInstance(f, io.TextIOBase) 177 self.assertIsInstance(f, io.TextIOBase)
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_io.py | 54 self.assertIsInstance(f, io.TextIOBase) 165 self.assertIsInstance(f, io.TextIOBase)
|
/external/python/cpython3/Lib/test/ |
D | test_winconsoleio.py | 22 self.assertFalse(issubclass(ConIO, io.TextIOBase))
|
D | test_io.py | 474 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/ |
D | saxutils.py | 77 if isinstance(out, io.TextIOBase):
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 330 class PseudoFile(io.TextIOBase):
|
/external/python/cpython2/Lib/test/ |
D | test_io.py | 527 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/ |
D | client.py | 793 return isinstance(stream, io.TextIOBase)
|
/external/python/cpython3/Doc/faq/ |
D | extending.rst | 166 >>> class StdoutCatcher(io.TextIOBase):
|
/external/python/cpython3/Doc/howto/ |
D | unicode.rst | 563 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/ |
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`
|
12