summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-11-24 20:18:02 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-11-24 20:18:02 +0000
commitac08128c9f5311ab93e9ad055c4066acac18ebde (patch)
tree10822fca3043fcc868503996fc54d4eda82fe378 /Doc
parent196caec2de19c160b52a4215eb6eca497d5b1344 (diff)
downloadcpython-ac08128c9f5311ab93e9ad055c4066acac18ebde.tar.gz
#10299: Add a table that lists all the built-in functions in functions.rst
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ec01d69702..e9e54123b2 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -7,6 +7,24 @@ Built-in Functions
The Python interpreter has a number of functions and types built into it that
are always available. They are listed here in alphabetical order.
+=================== ================= ================== ================ ====================
+.. .. Built-in Functions .. ..
+=================== ================= ================== ================ ====================
+:func:`abs` :func:`dir` :func:`hex` :func:`next` :func:`slice`
+:func:`all` :func:`divmod` :func:`id` :func:`object` :func:`sorted`
+:func:`any` :func:`enumerate` :func:`input` :func:`oct` :func:`staticmethod`
+:func:`ascii` :func:`eval` :func:`int` :func:`open` :func:`str`
+:func:`bin` :func:`exec` :func:`isinstance` :func:`ord` :func:`sum`
+: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:`delattr` :func:`hash` :func:`memoryview` :func:`set`
+:func:`dict` :func:`help` :func:`min` :func:`setattr`
+=================== ================= ================== ================ ====================
.. function:: abs(x)