Home | History | Annotate | Download | only in _io

Lines Matching defs:iobase

5     Classes defined here: IOBase, RawIOBase.

17 * IOBase class, an abstract class
25 } iobase;
35 "Even though IOBase does not declare read, readinto, or write because\n"
47 "IOBase (and its subclasses) support the iterator protocol, meaning\n"
48 "that an IOBase object can be iterated over yielding the lines in a\n"
51 "IOBase also supports the :keyword:`with` statement. In this example,\n"
58 of the IOBase object rather than the virtual `closed` attribute as returned
171 /* XXX: IOBase thinks it has to maintain its own internal state in
259 iobase_traverse(iobase *self, visitproc visit, void *arg)
266 iobase_clear(iobase *self)
277 iobase_dealloc(iobase *self)
701 sizeof(iobase), /*tp_basicsize*/
724 offsetof(iobase, weakreflist), /* tp_weaklistoffset */
734 offsetof(iobase, dict), /* tp_dictoffset */
742 * RawIOBase class, Inherits from IOBase.