diff options
author | Georg Brandl <georg@python.org> | 2006-01-20 17:51:37 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-01-20 17:51:37 (GMT) |
commit | 5f0ff5c8e7017eb43c469d2b8f9ce4e875bacafb (patch) | |
tree | 0ef1e6fbae22eb9df199022f223108c455256326 /Doc/ref | |
parent | da6b107745f7fd0a3b85c0fd82fcda4743995a0a (diff) | |
download | cpython-5f0ff5c8e7017eb43c469d2b8f9ce4e875bacafb.zip cpython-5f0ff5c8e7017eb43c469d2b8f9ce4e875bacafb.tar.gz cpython-5f0ff5c8e7017eb43c469d2b8f9ce4e875bacafb.tar.bz2 |
Add markup to a "Python Standard Library" doc reference I added for bug 839585.
Diffstat (limited to 'Doc/ref')
-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 |