diff options
author | Georg Brandl <georg@python.org> | 2006-01-20 17:51:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-01-20 17:51:40 (GMT) |
commit | e9b72e27d4d4c9cd5a1b30e84f2a39e012d6adae (patch) | |
tree | 03d842f6e2dad1dbc2f1795ef59958ff3cb4ae1c /Doc | |
parent | 6c0a2fd1e2cfe53e84160c7985680794d2e4fb25 (diff) | |
download | cpython-e9b72e27d4d4c9cd5a1b30e84f2a39e012d6adae.zip cpython-e9b72e27d4d4c9cd5a1b30e84f2a39e012d6adae.tar.gz cpython-e9b72e27d4d4c9cd5a1b30e84f2a39e012d6adae.tar.bz2 |
Add markup to a "Python Standard Library" doc reference I added for bug 839585.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref5.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 6e4207f..462548f 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -780,8 +780,9 @@ approximately where \code{x/y} is replaced by \code{floor(x/y)} or In addition to performing the modulo operation on numbers, the \code{\%} operator is also overloaded by string and unicode objects to perform string formatting (also known as interpolation). The syntax for string -formatting is described in the Python Library Reference, section -``Sequence Types''. +formatting is described in the +\citetitle[../lib/typesseq-strings.html]{Python Library Reference}, +section ``Sequence Types''. \deprecated{2.3}{The floor division operator, the modulo operator, and the \function{divmod()} function are no longer defined for complex |