diff options
author | Georg Brandl <georg@python.org> | 2011-01-06 09:23:19 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-01-06 09:23:19 (GMT) |
commit | 77041b23540764ef0cd4eec4f1368c740daff338 (patch) | |
tree | e467e446e45dafc136ee906d9a0d5c32de6f8e85 /Doc/library/functional.rst | |
parent | e98628d60c6fed3cd668901755605dda6fee6dc6 (diff) | |
download | cpython-77041b23540764ef0cd4eec4f1368c740daff338.zip cpython-77041b23540764ef0cd4eec4f1368c740daff338.tar.gz cpython-77041b23540764ef0cd4eec4f1368c740daff338.tar.bz2 |
itertools, operator and functools are not really "numeric" modules; move them into their own "functional" chapter.
Diffstat (limited to 'Doc/library/functional.rst')
-rw-r--r-- | Doc/library/functional.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Doc/library/functional.rst b/Doc/library/functional.rst new file mode 100644 index 0000000..5b6185a --- /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 |