7.5.1 File Objects
Python's built-in file objects are implemented entirely on the FILE* support from the C standard library. This is an implementation detail and may change in future releases of Python.
- This subtype of PyObject represents a Python file object.
-
This instance of PyTypeObject represents the Python file
type. This is exposed to Python programs as
types.FileType
.
- Return true if its argument is a PyFileObject or a subtype of PyFileObject. Changed in version 2.2: Allowed subtypes to be accepted.
- Return true if its argument is a PyFileObject, but not a subtype of PyFileObject. New in version 2.2.
-
Return value: New reference.On success, return a new file object that is opened on the file given by filename, with a file mode given by mode, where mode has the same semantics as the standard C routine fopen(). On failure, return NULL.
-
Return value: New reference.Create a new PyFileObject from the already-open standard C file pointer, fp. The function close will be called when the file should be closed. Return NULL on failure.
- Return the file object associated with p as a FILE*.
-
Return value: New reference.Equivalent to
p.readline([n])
, this function reads one line from the object p. p may be a file object or any object with a readline() method. If n is0
, exactly one line is read, regardless of the length of the line. If n is greater than0
, no more than n bytes will be read from the file; a partial line can be returned. In both cases, an empty string is returned if the end of the file is reached immediately. If n is less than0
, however, one line is read regardless of length, but EOFError is raised if the end of the file is reached immediately.
-
Return value: Borrowed reference.Return the name of the file specified by p as a string object.
- Available on systems with setvbuf() only. This should only be called immediately after file object creation.
- Set the file's encoding for Unicode output to enc. Return 1 on success and 0 on failure. New in version 2.3.
-
This function exists for internal use by the interpreter. Set the
softspace attribute of p to newflag and
return the
previous value. p does not have to be a file object for this
function to work properly; any object is supported (thought its only
interesting if the softspace attribute can be set). This
function clears any errors, and will return
0
as the previous value if the attribute either does not exist or if there were errors in retrieving it. There is no way to detect errors from this function, but doing so should not be needed.
-
Write object obj to file object p. The only supported
flag for flags is
Py_PRINT_RAW; if given, the
str() of the object is written instead of the
repr(). Return
0
on success or-1
on failure; the appropriate exception will be set.
-
Write string s to file object p. Return
0
on success or-1
on failure; the appropriate exception will be set.
See About this document... for information on suggesting changes.