From 938178283c29cdc2c8f5004d58dff110ac907883 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 17 Jan 1995 16:01:01 +0000 Subject: new names for lots of new functions --- Include/fileobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Include/fileobject.h') diff --git a/Include/fileobject.h b/Include/fileobject.h index b39d9479dd..85c98c6ab5 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -35,11 +35,11 @@ extern DL_IMPORT PyTypeObject PyFile_Type; #define PyFile_Check(op) ((op)->ob_type == &PyFile_Type) extern PyObject *PyFile_FromString Py_PROTO((char *, char *)); -extern void setfilebufsize Py_PROTO((PyObject *, int)); +extern void PyFile_SetBufSize Py_PROTO((PyObject *, int)); extern PyObject *PyFile_FromFile Py_PROTO((FILE *, char *, char *, int (*)Py_FPROTO((FILE *)))); extern FILE *PyFile_AsFile Py_PROTO((PyObject *)); -extern PyObject *getfilename Py_PROTO((PyObject *)); +extern PyObject *PyFile_Name Py_PROTO((PyObject *)); extern PyObject *PyFile_GetLine Py_PROTO((PyObject *, int)); #ifdef __cplusplus -- cgit v1.2.1