diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-25 15:40:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-25 15:40:22 (GMT) |
commit | b92dce38e7834dcde4f450c89da1c10f81a6d1a0 (patch) | |
tree | 2e635bc05e7d7049dff154227781c5d253e51180 /Doc/api.tex | |
parent | 540e13dd1e6f5d9584aceb009d4ccda0b4491ad4 (diff) | |
download | cpython-b92dce38e7834dcde4f450c89da1c10f81a6d1a0.zip cpython-b92dce38e7834dcde4f450c89da1c10f81a6d1a0.tar.gz cpython-b92dce38e7834dcde4f450c89da1c10f81a6d1a0.tar.bz2 |
PyFile_FromFile() description: make sure the closing brace for the arguments
comes after the arguments are complete.
Diffstat (limited to 'Doc/api.tex')
-rw-r--r-- | Doc/api.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api.tex b/Doc/api.tex index ade73cf..a0e6bc4 100644 --- a/Doc/api.tex +++ b/Doc/api.tex @@ -2169,7 +2169,7 @@ specified in \var{name} with the mode specified in \var{mode}. \end{cfuncdesc} \begin{cfuncdesc}{PyObject *}{PyFile_FromFile}{FILE *fp, - char *name, char *mode, int (*close}) + char *name, char *mode, int (*close)} Creates a new \code{PyFileObject} from the already-open \var{fp}. The function \var{close} will be called when the file should be closed. |