mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-34118: memoryview, range, and tuple are classes (GH-17761)
Tag memoryview, range, and tuple as classes, the same as list, etcetera, in the library manual built-in functions list.
This commit is contained in:
parent
d9e561d23d
commit
ee9ff05ec2
2 changed files with 5 additions and 3 deletions
|
@ -952,7 +952,7 @@ are always available. They are listed here in alphabetical order.
|
|||
|
||||
|
||||
.. _func-memoryview:
|
||||
.. function:: memoryview(obj)
|
||||
.. class:: memoryview(obj)
|
||||
:noindex:
|
||||
|
||||
Return a "memory view" object created from the given argument. See
|
||||
|
@ -1408,7 +1408,7 @@ are always available. They are listed here in alphabetical order.
|
|||
|
||||
|
||||
.. _func-range:
|
||||
.. function:: range(stop)
|
||||
.. class:: range(stop)
|
||||
range(start, stop[, step])
|
||||
:noindex:
|
||||
|
||||
|
@ -1655,7 +1655,7 @@ are always available. They are listed here in alphabetical order.
|
|||
|
||||
|
||||
.. _func-tuple:
|
||||
.. function:: tuple([iterable])
|
||||
.. class:: tuple([iterable])
|
||||
:noindex:
|
||||
|
||||
Rather than being a function, :class:`tuple` is actually an immutable
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Tag memoryview, range, and tuple as classes, the same as list, etcetera, in
|
||||
the library manual built-in functions list.
|
Loading…
Add table
Add a link
Reference in a new issue