diff options
author | Raymond Hettinger <python@rcn.com> | 2005-04-07 04:38:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-04-07 04:38:04 (GMT) |
commit | fb5f04d77f5b0d09c38081f269a467be6f431a7d (patch) | |
tree | 25563d6e334962d4f9a302e936901f6755c17a9d /Doc/lib | |
parent | 9ef852c6c2c4e6a6f98779bf08bf3938aea77e4c (diff) | |
download | cpython-fb5f04d77f5b0d09c38081f269a467be6f431a7d.zip cpython-fb5f04d77f5b0d09c38081f269a467be6f431a7d.tar.gz cpython-fb5f04d77f5b0d09c38081f269a467be6f431a7d.tar.bz2 |
SF bug #1178255: 256 should read 255 in operator module docs
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/liboperator.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/liboperator.tex b/Doc/lib/liboperator.tex index d3c974a..57ff773 100644 --- a/Doc/lib/liboperator.tex +++ b/Doc/lib/liboperator.tex @@ -289,7 +289,7 @@ useful than it otherwise might be.} Example: Build a dictionary that maps the ordinals from \code{0} to -\code{256} to their character equivalents. +\code{255} to their character equivalents. \begin{verbatim} >>> import operator |