summaryrefslogtreecommitdiffstats
path: root/Doc/library/constants.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-04 06:35:14 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-04 06:35:14 (GMT)
commitcb8ecb142be4ea3335fd7f8c1722e95ef5563fc7 (patch)
treefd26c921b9e6ea8e579d7e1cb1cbcfb48a43e051 /Doc/library/constants.rst
parent4a7b5d5b4fa00da3af075fd21ea21caa3d434609 (diff)
downloadcpython-cb8ecb142be4ea3335fd7f8c1722e95ef5563fc7.zip
cpython-cb8ecb142be4ea3335fd7f8c1722e95ef5563fc7.tar.gz
cpython-cb8ecb142be4ea3335fd7f8c1722e95ef5563fc7.tar.bz2
Doc update for __xslice__ removal.
Diffstat (limited to 'Doc/library/constants.rst')
-rw-r--r--Doc/library/constants.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst
index 8f7be50..c36b2fa 100644
--- a/Doc/library/constants.rst
+++ b/Doc/library/constants.rst
@@ -34,7 +34,6 @@ A small number of constants live in the built-in namespace. They are:
.. data:: Ellipsis
The same as ``...``. Special value used mostly in conjunction with extended
- slicing syntax for user-defined container data types.
-
- .. % XXX Someone who understands extended slicing should fill in here.
+ slicing syntax for user-defined container data types, as in ::
+ val = container[1:5, 7:10, ...]