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"
49 "IOBase (and its subclasses) support the iterator protocol, meaning\n"
50 "that an IOBase object can be iterated over yielding the lines in a\n"
53 "IOBase also supports the :keyword:`with` statement. In this example,\n"
60 of the IOBase object rather than the virtual `closed` attribute as returned
173 /* XXX: IOBase thinks it has to maintain its own internal state in
261 iobase_traverse(iobase *self, visitproc visit, void *arg)
268 iobase_clear(iobase *self)
279 iobase_dealloc(iobase *self)
721 sizeof(iobase), /*tp_basicsize*/
744 offsetof(iobase, weakreflist), /* tp_weaklistoffset */
754 offsetof(iobase, dict), /* tp_dictoffset */
762 * RawIOBase class, Inherits from IOBase.