Home | History | Annotate | Download | only in Lib

Lines Matching defs:open

20 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
352 stream must be a file-like object open for writing.
427 stream must be a file-like object open for reading.
865 def open(filename, mode='r', encoding=None, errors='strict', buffering=1):
867 """ Open an encoded file using the given mode and return
876 The default file mode is 'r', meaning to open the file in read mode.
885 buffering has the same meaning as for the builtin open() API.
898 file = builtins.open(filename, mode, buffering)