summaryrefslogtreecommitdiffstats
path: root/Doc/api
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-02-25 15:40:22 (GMT)
committerFred Drake <fdrake@acm.org>1998-02-25 15:40:22 (GMT)
commitb92dce38e7834dcde4f450c89da1c10f81a6d1a0 (patch)
tree2e635bc05e7d7049dff154227781c5d253e51180 /Doc/api
parent540e13dd1e6f5d9584aceb009d4ccda0b4491ad4 (diff)
downloadcpython-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')
-rw-r--r--Doc/api/api.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex
index ade73cf..a0e6bc4 100644
--- a/Doc/api/api.tex
+++ b/Doc/api/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.