Tag memoryview, range, and tuple as classes, the same as list, etcetera, in
the library manual built-in functions list.
.. _func-memoryview:
-.. function:: memoryview(obj)
+.. class:: memoryview(obj)
:noindex:
Return a "memory view" object created from the given argument. See
.. _func-range:
-.. function:: range(stop)
+.. class:: range(stop)
range(start, stop[, step])
:noindex:
.. _func-tuple:
-.. function:: tuple([iterable])
+.. class:: tuple([iterable])
:noindex:
Rather than being a function, :class:`tuple` is actually an immutable
--- /dev/null
+Tag memoryview, range, and tuple as classes, the same as list, etcetera, in
+the library manual built-in functions list.