Home | History | Annotate | Download | only in python2.7

Lines Matching refs:appending

58     it already exists), and 'a' for appending (which on some Unix systems,
70 'a' open for writing, appending to the end of the file if it exists
84 binary mode (appending 'b' to the mode argument) return contents as
169 appending = "a" in modes
174 if writing or appending:
179 if reading + writing + appending > 1:
181 if not (reading or writing or appending):
192 (appending and "a" or "") +
216 elif writing or appending: