HomeSort by relevance Sort by last modified time
    Searched refs:IOBase (Results 1 - 6 of 6) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]

Completed in 1183 milliseconds