blob: 1bb5b22285a847b2f0c1b7e0959634e4db22b90c [file] [log] [blame]
Georg Brandlf6842722008-01-19 22:08:21 +00001.. highlightlang:: c
2
3.. _fileobjects:
4
5File Objects
6------------
7
8.. index:: object: file
9
10Python's built-in file objects are implemented entirely on the :ctype:`FILE\*`
11support from the C standard library. This is an implementation detail and may
12change in future releases of Python.
13
14
15.. ctype:: PyFileObject
16
17 This subtype of :ctype:`PyObject` represents a Python file object.
18
19
20.. cvar:: PyTypeObject PyFile_Type
21
22 .. index:: single: FileType (in module types)
23
24 This instance of :ctype:`PyTypeObject` represents the Python file type. This is
25 exposed to Python programs as ``file`` and ``types.FileType``.
26
27
28.. cfunction:: int PyFile_Check(PyObject *p)
29
30 Return true if its argument is a :ctype:`PyFileObject` or a subtype of
31 :ctype:`PyFileObject`.
32
33 .. versionchanged:: 2.2
34 Allowed subtypes to be accepted.
35
36
37.. cfunction:: int PyFile_CheckExact(PyObject *p)
38
39 Return true if its argument is a :ctype:`PyFileObject`, but not a subtype of
40 :ctype:`PyFileObject`.
41
42 .. versionadded:: 2.2
43
44
45.. cfunction:: PyObject* PyFile_FromString(char *filename, char *mode)
46
47 .. index:: single: fopen()
48
49 On success, return a new file object that is opened on the file given by
50 *filename*, with a file mode given by *mode*, where *mode* has the same
51 semantics as the standard C routine :cfunc:`fopen`. On failure, return *NULL*.
52
53
54.. cfunction:: PyObject* PyFile_FromFile(FILE *fp, char *name, char *mode, int (*close)(FILE*))
55
56 Create a new :ctype:`PyFileObject` from the already-open standard C file
57 pointer, *fp*. The function *close* will be called when the file should be
58 closed. Return *NULL* on failure.
59
60
61.. cfunction:: FILE* PyFile_AsFile(PyObject *p)
62
63 Return the file object associated with *p* as a :ctype:`FILE\*`.
64
65
66.. cfunction:: PyObject* PyFile_GetLine(PyObject *p, int n)
67
68 .. index:: single: EOFError (built-in exception)
69
70 Equivalent to ``p.readline([n])``, this function reads one line from the
71 object *p*. *p* may be a file object or any object with a :meth:`readline`
72 method. If *n* is ``0``, exactly one line is read, regardless of the length of
73 the line. If *n* is greater than ``0``, no more than *n* bytes will be read
74 from the file; a partial line can be returned. In both cases, an empty string
75 is returned if the end of the file is reached immediately. If *n* is less than
76 ``0``, however, one line is read regardless of length, but :exc:`EOFError` is
77 raised if the end of the file is reached immediately.
78
79
80.. cfunction:: PyObject* PyFile_Name(PyObject *p)
81
82 Return the name of the file specified by *p* as a string object.
83
84
85.. cfunction:: void PyFile_SetBufSize(PyFileObject *p, int n)
86
87 .. index:: single: setvbuf()
88
89 Available on systems with :cfunc:`setvbuf` only. This should only be called
90 immediately after file object creation.
91
92
93.. cfunction:: int PyFile_SetEncoding(PyFileObject *p, const char *enc)
94
95 Set the file's encoding for Unicode output to *enc*. Return 1 on success and 0
96 on failure.
97
98 .. versionadded:: 2.3
99
100
101.. cfunction:: int PyFile_SoftSpace(PyObject *p, int newflag)
102
103 .. index:: single: softspace (file attribute)
104
105 This function exists for internal use by the interpreter. Set the
106 :attr:`softspace` attribute of *p* to *newflag* and return the previous value.
107 *p* does not have to be a file object for this function to work properly; any
108 object is supported (thought its only interesting if the :attr:`softspace`
109 attribute can be set). This function clears any errors, and will return ``0``
110 as the previous value if the attribute either does not exist or if there were
111 errors in retrieving it. There is no way to detect errors from this function,
112 but doing so should not be needed.
113
114
115.. cfunction:: int PyFile_WriteObject(PyObject *obj, PyObject *p, int flags)
116
117 .. index:: single: Py_PRINT_RAW
118
119 Write object *obj* to file object *p*. The only supported flag for *flags* is
120 :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
121 instead of the :func:`repr`. Return ``0`` on success or ``-1`` on failure; the
122 appropriate exception will be set.
123
124
125.. cfunction:: int PyFile_WriteString(const char *s, PyObject *p)
126
127 Write string *s* to file object *p*. Return ``0`` on success or ``-1`` on
128 failure; the appropriate exception will be set.