[Python-checkins] r47194 - sandbox/trunk/Doc/functional.rst

andrew.kuchling python-checkins at python.org
Sat Jul 1 19:45:50 CEST 2006


Author: andrew.kuchling
Date: Sat Jul  1 19:45:50 2006
New Revision: 47194

Modified:
   sandbox/trunk/Doc/functional.rst
Log:
Bump version; move commented-out stuff to the very end

Modified: sandbox/trunk/Doc/functional.rst
==============================================================================
--- sandbox/trunk/Doc/functional.rst	(original)
+++ sandbox/trunk/Doc/functional.rst	Sat Jul  1 19:45:50 2006
@@ -1,7 +1,7 @@
 Functional Programming HOWTO
 ================================
 
-**Version 0.1**
+**Version 0.11**
 
 (This is a first draft.  Please send comments/error
 reports/suggestions to amk at amk.ca.  This URL is probably not going to
@@ -1137,6 +1137,39 @@
 
 Version 0.1: posted June 30 2006.
 
+Version 0.11: posted July 1 2006.
+
+References
+--------------------
+
+General
+'''''''''''''''
+
+**Structure and Interpretation of Computer Programs**, by 
+Harold Abelson and Gerald Jay Sussman with Julie Sussman.
+
+Full text at http://mitpress.mit.edu/sicp/.
+
+A classic textbook of computer science.  Chapters 2 and 3 discuss the
+use of sequences and streams to organize the data flow inside a
+program.  The book uses Scheme for its examples, but many of the
+design approaches described in these chapters are applicable to
+functional-style Python code.
+
+http://en.wikipedia.org/wiki/Functional_programming:
+General Wikipedia entry describing functional programming.
+
+
+Python documentation
+'''''''''''''''''''''''''''
+
+http://docs.python.org/lib/module-itertools.html:
+Documentation ``for the itertools`` module.
+
+http://docs.python.org/lib/module-operator.html:
+Documentation ``for the operator`` module.
+
+
 .. comment
 
     Topics to place
@@ -1197,33 +1230,3 @@
         print elem[-1]
 
 
-References
---------------------
-
-General
-'''''''''''''''
-
-**Structure and Interpretation of Computer Programs**, by 
-Harold Abelson and Gerald Jay Sussman with Julie Sussman.
-
-Full text at http://mitpress.mit.edu/sicp/.
-
-A classic textbook of computer science.  Chapters 2 and 3 discuss the
-use of sequences and streams to organize the data flow inside a
-program.  The book uses Scheme for its examples, but many of the
-design approaches described in these chapters are applicable to
-functional-style Python code.
-
-http://en.wikipedia.org/wiki/Functional_programming:
-General Wikipedia entry describing functional programming.
-
-
-Python documentation
-'''''''''''''''''''''''''''
-
-http://docs.python.org/lib/module-itertools.html:
-Documentation ``for the itertools`` module.
-
-http://docs.python.org/lib/module-operator.html:
-Documentation ``for the operator`` module.
-


More information about the Python-checkins mailing list