diff options
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r-- | Objects/fileobject.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 7bcc82aa1c..c8fb214e2f 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -38,17 +38,6 @@ #endif -typedef struct { - PyObject_HEAD - FILE *f_fp; - PyObject *f_name; - PyObject *f_mode; - int (*f_close)(FILE *); - int f_softspace; /* Flag used by 'print' command */ - int f_binary; /* Flag which indicates whether the file is open - open in binary (1) or test (0) mode */ -} PyFileObject; - FILE * PyFile_AsFile(PyObject *f) { |