summaryrefslogtreecommitdiffstats
path: root/Include/fileobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-07 13:57:38 (GMT)
committerGuido van Rossum <guido@python.org>1991-06-07 13:57:38 (GMT)
commit65481401b18a78bbad41f712300047ed19355d38 (patch)
tree20c11c1c392923f3af7b38852b2e828486978380 /Include/fileobject.h
parente24122f5e2ea0aa71b53aadeca555be4be5ff1f5 (diff)
downloadcpython-65481401b18a78bbad41f712300047ed19355d38.zip
cpython-65481401b18a78bbad41f712300047ed19355d38.tar.gz
cpython-65481401b18a78bbad41f712300047ed19355d38.tar.bz2
Add "close" function parameter to newopenfileobject().
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r--Include/fileobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h
index beaebe9..52a3765 100644
--- a/Include/fileobject.h
+++ b/Include/fileobject.h
@@ -29,6 +29,7 @@ extern typeobject Filetype;
#define is_fileobject(op) ((op)->ob_type == &Filetype)
extern object *newfileobject PROTO((char *, char *));
-extern object *newopenfileobject PROTO((FILE *, char *, char *));
+extern object *newopenfileobject
+ PROTO((FILE *, char *, char *, int (*)FPROTO((FILE *))));
extern FILE *getfilefile PROTO((object *));
extern object *filegetline PROTO((object *, int));