summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libnew.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-10-10 22:00:03 (GMT)
committerFred Drake <fdrake@acm.org>2000-10-10 22:00:03 (GMT)
commit2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3 (patch)
treebecacb0e5705244d69459c0a3057b3f5ec64ab0f /Doc/lib/libnew.tex
parente693df94ed50e5083742b8c3bcb490c6b7fe03ac (diff)
downloadcpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.zip
cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.gz
cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.bz2
Fixed a large number of small problems, mostly noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
Diffstat (limited to 'Doc/lib/libnew.tex')
-rw-r--r--Doc/lib/libnew.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libnew.tex b/Doc/lib/libnew.tex
index df7adfb..e96415c 100644
--- a/Doc/lib/libnew.tex
+++ b/Doc/lib/libnew.tex
@@ -27,12 +27,12 @@ callable, and \var{instance} must be an instance object or
\code{None}.
\end{funcdesc}
-\begin{funcdesc}{function}{code, globals\optional{, name\optional{argdefs}}}
+\begin{funcdesc}{function}{code, globals\optional{, name\optional{, argdefs}}}
Returns a (Python) function with the given code and globals. If
\var{name} is given, it must be a string or \code{None}. If it is a
string, the function will have the given name, otherwise the function
name will be taken from \code{\var{code}.co_name}. If
-\var{argdefs} is given, it must be a tuple and will be used to the
+\var{argdefs} is given, it must be a tuple and will be used to
determine the default values of parameters.
\end{funcdesc}