Lines Matching refs:IOBase
36 # Does io.IOBase finalizer log the exception if the close() method fails?
331 class IOBase(metaclass=abc.ABCMeta):
339 Even though IOBase does not declare read or write because
352 IOBase (and its subclasses) support the iterator protocol, meaning
353 that an IOBase object can be iterated over yielding the lines in a
356 IOBase also supports the :keyword:`with` statement. In this example,
511 """Context management protocol. Returns self (an instance of IOBase)."""
620 io.IOBase.register(IOBase)
623 class RawIOBase(IOBase):
689 class BufferedIOBase(IOBase):
1834 class TextIOBase(IOBase):