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

Lines Matching refs:modes

63     modes are:
82 Python distinguishes between files opened in binary and text modes,
146 modes, it returns a BufferedWriter, and in read/write mode, it returns
164 modes = set(mode)
165 if modes - set("arwb+tU") or len(mode) > len(modes):
167 reading = "r" in modes
168 writing = "w" in modes
169 appending = "a" in modes
170 updating = "+" in modes
171 text = "t" in modes
172 binary = "b" in modes
173 if "U" in modes: