Home | History | Annotate | Download | only in _io

Lines Matching defs:reading

62 "seperation 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;
335 reading = 1;
354 reading = 1;
370 if (reading) *(m++) = 'r';
383 reading = 1;
392 if (reading + writing + appending > 1) {
490 else if (reading)