From bf8484e77dfd5f43316bd237a538f8407e28ab5b Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Wed, 24 Nov 2010 21:54:47 +0000 Subject: [PATCH] Merged revisions 86732 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86732 | ezio.melotti | 2010-11-24 22:18:02 +0200 (Wed, 24 Nov 2010) | 1 line #10299: Add a table that lists all the built-in functions in functions.rst ........ --- Doc/library/functions.rst | 20 ++++++++++++++++++++ Misc/NEWS | 5 +++++ 2 files changed, 25 insertions(+) diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 0b16327ea6d..34e1dbe93f5 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -7,6 +7,26 @@ Built-in Functions The Python interpreter has a number of functions built into it that are always available. They are listed here in alphabetical order. +=================== ================= ================== ================= ==================== +.. .. Built-in Functions .. .. +=================== ================= ================== ================= ==================== +:func:`abs` :func:`divmod` :func:`input` :func:`open` :func:`staticmethod` +:func:`all` :func:`enumerate` :func:`int` :func:`ord` :func:`str` +:func:`any` :func:`eval` :func:`isinstance` :func:`pow` :func:`sum` +:func:`basestring` :func:`execfile` :func:`issubclass` :func:`print` :func:`super` +:func:`bin` :func:`file` :func:`iter` :func:`property` :func:`tuple` +:func:`bool` :func:`filter` :func:`len` :func:`range` :func:`type` +:func:`bytearray` :func:`float` :func:`list` :func:`raw_input` :func:`unichr` +:func:`callable` :func:`format` :func:`locals` :func:`reduce` :func:`unicode` +:func:`chr` :func:`frozenset` :func:`long` :func:`reload` :func:`vars` +: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` +=================== ================= ================== ================= ==================== .. function:: abs(x) diff --git a/Misc/NEWS b/Misc/NEWS index 9edc91d925f..1f16cf52ff8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,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 2.7.1 release candidate 1? ===============================================