Home | History | Annotate | Download | only in _io

Lines Matching defs:reading

62 "separation between reading and writing to streams; implementations are\n"
65 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
191 "is opened. It defaults to 'r' which means open for reading in text\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
203 "'r' open for reading (default)\n"
208 "'+' open a disk file for updating (reading and writing)\n"
213 "The default mode is 'rt' (open for reading text). For binary random\n"
276 "through which the standard file operations such as reading and writing\n"
285 "reading and writing. For strings StringIO can be used like a file\n"
302 int reading = 0, writing = 0, appending = 0, updating = 0;
336 reading = 1;
355 reading = 1;
371 if (reading) *(m++) = 'r';
384 reading = 1;
393 if (reading + writing + appending > 1) {
492 else if (reading)