From: Georg Brandl Date: Thu, 6 Jan 2011 09:23:19 +0000 (+0000) Subject: itertools, operator and functools are not really "numeric" modules; move them into... X-Git-Tag: v3.2rc1~154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77041b23540764ef0cd4eec4f1368c740daff338;p=python itertools, operator and functools are not really "numeric" modules; move them into their own "functional" chapter. --- diff --git a/Doc/library/functional.rst b/Doc/library/functional.rst new file mode 100644 index 0000000000..5b6185a65c --- /dev/null +++ b/Doc/library/functional.rst @@ -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 diff --git a/Doc/library/index.rst b/Doc/library/index.rst index 39e0c20403..9ac688c8c9 100644 --- a/Doc/library/index.rst +++ b/Doc/library/index.rst @@ -49,6 +49,7 @@ the `Python Package Index `_. strings.rst datatypes.rst numeric.rst + functional.rst filesys.rst persistence.rst archiving.rst diff --git a/Doc/library/numeric.rst b/Doc/library/numeric.rst index 641f58885c..ba22cb6882 100644 --- a/Doc/library/numeric.rst +++ b/Doc/library/numeric.rst @@ -23,6 +23,3 @@ The following modules are documented in this chapter: decimal.rst fractions.rst random.rst - itertools.rst - functools.rst - operator.rst