[Python-checkins] cpython (2.7): #23512: list non-essential built-in functions after the table. Patch by Carlo
ezio.melotti
python-checkins at python.org
Tue Mar 24 12:45:29 CET 2015
https://hg.python.org/cpython/rev/971d299d2cf3
changeset: 95157:971d299d2cf3
branch: 2.7
parent: 95150:4a2a5fddbab3
user: Ezio Melotti <ezio.melotti at gmail.com>
date: Tue Mar 24 13:44:58 2015 +0200
summary:
#23512: list non-essential built-in functions after the table. Patch by Carlo Beccarini.
files:
Doc/library/functions.rst | 13 +++++++++----
Misc/ACKS | 1 +
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -22,12 +22,17 @@
:func:`classmethod` :func:`getattr` :func:`map` |func-repr|_ :func:`xrange`
:func:`cmp` :func:`globals` :func:`max` :func:`reversed` :func:`zip`
:func:`compile` :func:`hasattr` |func-memoryview|_ :func:`round` :func:`__import__`
-:func:`complex` :func:`hash` :func:`min` |func-set|_ :func:`apply`
-:func:`delattr` :func:`help` :func:`next` :func:`setattr` :func:`buffer`
-|func-dict|_ :func:`hex` :func:`object` :func:`slice` :func:`coerce`
-:func:`dir` :func:`id` :func:`oct` :func:`sorted` :func:`intern`
+:func:`complex` :func:`hash` :func:`min` |func-set|_ ..
+:func:`delattr` :func:`help` :func:`next` :func:`setattr` ..
+|func-dict|_ :func:`hex` :func:`object` :func:`slice` ..
+:func:`dir` :func:`id` :func:`oct` :func:`sorted` ..
=================== ================= ================== ================= ====================
+In addition, there are other four built-in functions that are no longer
+considered essential: :func:`apply`, :func:`buffer`, :func:`coerce`, and
+:func:`intern`. They are documented in the :ref:`non-essential-built-in-funcs`
+section.
+
.. using :func:`dict` would create a link to another page, so local targets are
used, with replacement texts to make the output in the table consistent
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -95,6 +95,7 @@
Samuel L. Bayer
Donald Beaudry
David Beazley
+Carlo Beccarini
Neal Becker
Robin Becker
Torsten Becker
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list