summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/functions.rst8
-rw-r--r--Misc/NEWS5
2 files changed, 9 insertions, 4 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 198dfa6..4a19de0 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -18,10 +18,10 @@ are always available. They are listed here in alphabetical order.
:func:`bool` :func:`filter` :func:`issubclass` :func:`pow` :func:`super`
:func:`bytearray` :func:`float` :func:`iter` :func:`print` :func:`tuple`
:func:`bytes` :func:`format` :func:`len` :func:`property` :func:`type`
-:func:`chr` :func:`frozenset` :func:`list` :func:`range` :func:`type`
-:func:`classmethod` :func:`getattr` :func:`locals` :func:`repr` :func:`vars`
-:func:`compile` :func:`globals` :func:`map` :func:`reversed` :func:`zip`
-:func:`complex` :func:`hasattr` :func:`max` :func:`round` :func:`__import__`
+:func:`chr` :func:`frozenset` :func:`list` :func:`range` :func:`vars`
+:func:`classmethod` :func:`getattr` :func:`locals` :func:`repr` :func:`zip`
+:func:`compile` :func:`globals` :func:`map` :func:`reversed` :func:`__import__`
+:func:`complex` :func:`hasattr` :func:`max` :func:`round`
:func:`delattr` :func:`hash` :func:`memoryview` :func:`set`
:func:`dict` :func:`help` :func:`min` :func:`setattr`
=================== ================= ================== ================ ====================
diff --git a/Misc/NEWS b/Misc/NEWS
index a4e727a..e305fc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,11 @@ Tests
- Issue #9424: Replace deprecated assert* methods in the Python test suite.
+Documentation
+-------------
+
+- Issue #10299: List the built-in functions in a table in functions.rst.
+
What's New in Python 3.1.3 release candidate 1?
===============================================