Home | History | Annotate | Download | only in _io

Lines Matching defs:reading

64 "separation between reading and writing to streams; implementations are\n"
67 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
121 is opened. It defaults to 'r' which means open for reading in text
128 current locale encoding. (For reading and writing raw bytes use binary
134 'r' open for reading (default)
140 '+' open a disk file for updating (reading and writing)
144 The default mode is 'rt' (open for reading text). For binary random
218 through which the standard file operations such as reading and writing
227 reading and writing. For strings StringIO can be used like a file
240 int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0;
282 reading = 1;
301 reading = 1;
318 if (reading) *(m++) = 'r';
334 reading = 1;
343 if (creating + reading + writing + appending > 1) {
445 else if (reading)