diff options
Diffstat (limited to 'Doc/library/constants.rst')
-rw-r--r-- | Doc/library/constants.rst | 5 |
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, ...] |