diff options
author | Fred Drake <fdrake@acm.org> | 2002-05-02 21:37:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-05-02 21:37:23 (GMT) |
commit | b9032018ffaf6b4fb1eeeee44f9ee9ac0b407114 (patch) | |
tree | e4605607c8e079fc4e99280bf51d43286580e2d0 /Doc | |
parent | d0ba63654189c37a902147f0a6b95979eab7f33f (diff) | |
download | cpython-b9032018ffaf6b4fb1eeeee44f9ee9ac0b407114.zip cpython-b9032018ffaf6b4fb1eeeee44f9ee9ac0b407114.tar.gz cpython-b9032018ffaf6b4fb1eeeee44f9ee9ac0b407114.tar.bz2 |
Update the xrange object description to reflect the removal of deprecated
features.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 0cd6289..65e3152 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -401,9 +401,9 @@ new buffer object. Xrange objects are similar to buffers in that there is no specific syntax to create them, but they are created using the \function{xrange()} function.\bifuncindex{xrange} They don't support -slicing or concatenation, but do support repetition, and using -\code{in}, \code{not in}, \function{min()} or \function{max()} on them -is inefficient. +slicing, concatenation, or repetition, and using \keyword{in}, +\keyword{not} \keyword{in}, \function{min()} or \function{max()} on +them is inefficient. \obindex{xrange} Most sequence types support the following operations. The \samp{in} and |