[Python-checkins] r86732 - python/branches/py3k/Doc/library/functions.rst

ezio.melotti python-checkins at python.org
Wed Nov 24 21:18:02 CET 2010


Author: ezio.melotti
Date: Wed Nov 24 21:18:02 2010
New Revision: 86732

Log:
#10299: Add a table that lists all the built-in functions in functions.rst

Modified:
   python/branches/py3k/Doc/library/functions.rst

Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Wed Nov 24 21:18:02 2010
@@ -7,6 +7,24 @@
 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)
 


More information about the Python-checkins mailing list