[Python-checkins] r87788 - in python/branches/py3k/Doc/library: functional.rst index.rst numeric.rst

georg.brandl python-checkins at python.org
Thu Jan 6 10:23:19 CET 2011


Author: georg.brandl
Date: Thu Jan  6 10:23:19 2011
New Revision: 87788

Log:
itertools, operator and functools are not really "numeric" modules; move them into their own "functional" chapter.

Added:
   python/branches/py3k/Doc/library/functional.rst
Modified:
   python/branches/py3k/Doc/library/index.rst
   python/branches/py3k/Doc/library/numeric.rst

Added: python/branches/py3k/Doc/library/functional.rst
==============================================================================
--- (empty file)
+++ python/branches/py3k/Doc/library/functional.rst	Thu Jan  6 10:23:19 2011
@@ -0,0 +1,15 @@
+******************************
+Functional Programming Modules
+******************************
+
+The modules described in this chapter provide functions and classes that support
+a functional programming style, and general operations on callables.
+
+The following modules are documented in this chapter:
+
+
+.. toctree::
+
+   itertools.rst
+   functools.rst
+   operator.rst

Modified: python/branches/py3k/Doc/library/index.rst
==============================================================================
--- python/branches/py3k/Doc/library/index.rst	(original)
+++ python/branches/py3k/Doc/library/index.rst	Thu Jan  6 10:23:19 2011
@@ -49,6 +49,7 @@
    strings.rst
    datatypes.rst
    numeric.rst
+   functional.rst
    filesys.rst
    persistence.rst
    archiving.rst

Modified: python/branches/py3k/Doc/library/numeric.rst
==============================================================================
--- python/branches/py3k/Doc/library/numeric.rst	(original)
+++ python/branches/py3k/Doc/library/numeric.rst	Thu Jan  6 10:23:19 2011
@@ -23,6 +23,3 @@
    decimal.rst
    fractions.rst
    random.rst
-   itertools.rst
-   functools.rst
-   operator.rst


More information about the Python-checkins mailing list