Home | History | Annotate | Download | only in misc

Lines Matching defs:open

9 		'tounicode', 'Tag', 'open', 'range', 'xrange', 'round', 'Py23Error',
183 def open(file, mode='r', buffering=-1, encoding=None, errors=None,
185 """ Wrapper around `io.open` that bridges the differences between Python 2
186 and Python 3's built-in `open` functions. In Python 2, `io.open` is a
187 backport of Python 3's `open`, whereas in Python 3, it is an alias of the
188 built-in `open` function.
213 O_BINARY'ed before I pass them on to io.open.
245 return _io.open(
249 return _io.open(
503 with open('help.txt', 'w') as f: