diff options
author | Georg Brandl <georg@python.org> | 2010-10-17 10:59:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-17 10:59:41 (GMT) |
commit | 2aff335c36d8052e6d6f548eb7fa9c3786cbea1c (patch) | |
tree | bce8777772375398e41327a6484030403e6d2202 /Doc/c-api/slice.rst | |
parent | 418cc7340362cd50059b735757b11c1c7a45a1c6 (diff) | |
download | cpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.zip cpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.tar.gz cpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.tar.bz2 |
#9204: remove mentions of removed types in the types module.
Diffstat (limited to 'Doc/c-api/slice.rst')
-rw-r--r-- | Doc/c-api/slice.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/c-api/slice.rst b/Doc/c-api/slice.rst index 5f2a05a..5f992f1 100644 --- a/Doc/c-api/slice.rst +++ b/Doc/c-api/slice.rst @@ -8,10 +8,8 @@ Slice Objects .. c:var:: PyTypeObject PySlice_Type - .. index:: single: SliceType (in module types) - - The type object for slice objects. This is the same as ``slice`` and - ``types.SliceType``. + The type object for slice objects. This is the same as :class:`slice` in the + Python layer. .. c:function:: int PySlice_Check(PyObject *ob) |