diff options
author | Guido van Rossum <guido@python.org> | 1995-01-04 19:17:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-04 19:17:34 (GMT) |
commit | 31cce9737477d924d9e1ea476920df72dab92495 (patch) | |
tree | 10314d7aa86f4b8eb8c87a8780d99aa075d45057 /Doc/ref7.tex | |
parent | e5f8b60429655e94fbfb84a039a2b939b1d8556c (diff) | |
download | cpython-31cce9737477d924d9e1ea476920df72dab92495.zip cpython-31cce9737477d924d9e1ea476920df72dab92495.tar.gz cpython-31cce9737477d924d9e1ea476920df72dab92495.tar.bz2 |
copyright.tex: Add 1995 to copyright message.
lib.tex: add libimp; remove bogus warning about lineii.
libmath.tex: document hypot().
libmd5.tex: rename md5.md5() to md5.new().
libposix.tex: document chown().
libposixfile.tex: openfile() instead of fileopen().
libsocket.tex: document gethostbyaddr().
libtypes.tex: add footnote explaining why readline() keeps the newline.
ref3.tex: correct typos, add back*quotes to index.
ref4.tex: don't use \verb inside footnote.
ref5.tex: explain repr() and str() and add them + back*quotes to index.
ref6.tex: correct typo, don't use \verb in footnote.
ref7.tex: don't use \verb in footnote.
Diffstat (limited to 'Doc/ref7.tex')
-rw-r--r-- | Doc/ref7.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref7.tex b/Doc/ref7.tex index b8babfb9..f099ae5 100644 --- a/Doc/ref7.tex +++ b/Doc/ref7.tex @@ -299,7 +299,7 @@ default value is substituted. If a parameter has a default value, all following parameters must also have a default value --- this is a syntactic restriction that is not expressed by the grammar.% \footnote{Currently this is not checked; instead, -\verb@def f(a=1,b)@ is interpreted as \verb@def f(a=1,b=None)@.} +{\tt def f(a=1,b)} is interpreted as {\tt def f(a=1,b=None)}.} \indexiii{default}{parameter}{value} Function call semantics are described in section \ref{calls}. When a |