diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
commit | 938178283c29cdc2c8f5004d58dff110ac907883 (patch) | |
tree | 7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/fileobject.h | |
parent | 8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff) | |
download | cpython-938178283c29cdc2c8f5004d58dff110ac907883.zip cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2 |
new names for lots of new functions
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r-- | Include/fileobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index b39d947..85c98c6 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 |