Home | History | Annotate | Download | only in Lib

Lines Matching defs:open

19 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",

326 stream must be a file-like object open for writing
399 stream must be a file-like object open for reading
715 # these are needed to make "with codecs.open(...)" work properly
841 def open(filename, mode='rb', encoding=None, errors='strict', buffering=1):
843 """ Open an encoded file using the given mode and return
854 open the file in binary read mode.
863 buffering has the same meaning as for the builtin open() API.
881 file = __builtin__.open(filename, mode, buffering)