summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-12-30 14:22:24 -0800
committerGitHub <noreply@github.com>2019-12-30 14:22:24 -0800
commitc9c17cc933dcffb9ed7f03e3f791d8cfd7acc54a (patch)
tree9e58ff637f228edd7e4302b9f4c6de2f4ed7b387
parent296d45ec10fb55532bc3fac2311a3f91299ecf59 (diff)
downloadcpython-git-c9c17cc933dcffb9ed7f03e3f791d8cfd7acc54a.tar.gz
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. (cherry picked from commit ee9ff05ec22ecd47dbffdd361967ccd55963dad2) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r--Doc/library/functions.rst6
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-12-30-16-44-07.bpo-34118.FaNW0a.rst2
2 files changed, 5 insertions, 3 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 72d82ae87e..d4553e045d 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -886,7 +886,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
@@ -1319,7 +1319,7 @@ are always available. They are listed here in alphabetical order.
.. _func-range:
-.. function:: range(stop)
+.. class:: range(stop)
range(start, stop[, step])
:noindex:
@@ -1556,7 +1556,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
diff --git a/Misc/NEWS.d/next/IDLE/2019-12-30-16-44-07.bpo-34118.FaNW0a.rst b/Misc/NEWS.d/next/IDLE/2019-12-30-16-44-07.bpo-34118.FaNW0a.rst
new file mode 100644
index 0000000000..ce95eb5482
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2019-12-30-16-44-07.bpo-34118.FaNW0a.rst
@@ -0,0 +1,2 @@
+Tag memoryview, range, and tuple as classes, the same as list, etcetera, in
+the library manual built-in functions list.