Home | History | Annotate | Download | only in _io

Lines Matching defs:writing

62 "seperation between reading and writing to streams; implementations are\n"

66 "writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
192 "mode. Other common values are 'w' for writing (truncating the file if\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
204 "'w' open for writing, truncating the file first\n"
205 "'a' open for writing, appending to the end of the file if it exists\n"
208 "'+' open a disk file for updating (reading and writing)\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;
338 writing = 1;
371 if (writing) *(m++) = 'w';
378 if (writing || appending) {
380 "can't use U and writing mode at once");
392 if (reading + writing + appending > 1) {
488 else if (writing || appending)