Lines Matching refs:reading
33 "separation between reading and writing to streams; implementations are\n"
36 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
90 is opened. It defaults to 'r' which means open for reading in text
97 (For reading and writing raw bytes use binary mode and leave encoding
103 'r' open for reading (default)
109 '+' open a disk file for updating (reading and writing)
112 The default mode is 'rt' (open for reading text). For binary random
182 through which the standard file operations such as reading and writing
191 reading and writing. For strings StringIO can be used like a file
204 int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0;
241 reading = 1;
273 if (reading) *(m++) = 'r';
286 if (creating + reading + writing + appending > 1) {
400 else if (reading)