# HG changeset patch # User Atul Varma # Date 1212721359 25200 # Node ID 33f8f445378dfcb663287b9fc9a1b51c21404cf4 # Parent 7f8a793ba4aee5886baf7993310d7f5f6c1e33fb Added section on batteries included. diff -r 7f8a793ba4ae -r 33f8f445378d PythonForJsProgrammers.txt --- a/PythonForJsProgrammers.txt Thu Jun 05 19:54:36 2008 -0700 +++ b/PythonForJsProgrammers.txt Thu Jun 05 20:02:39 2008 -0700 @@ -120,6 +120,17 @@ This makes it very easy and fun to explore the language and its environs. +Batteries Included +================== + +Python comes with a standard library that provides a great deal of +functionality, from enhanced introspection to serialization, XML +processing, database access, testing, networking, data archiving, and +more. Extensive documentation for it all is contained in the `Python +Library Reference`_. + +.. _`Python Library Reference`: http://docs.python.org/lib/lib.html + Expressions =========== @@ -507,7 +518,7 @@ TODO: Mention TinyPy. -TODO: Mention "Batteries Included" +TODO: Mention the import statement, and modules. TODO: Mention generators, generator comprehensions/expressions, array comprehensions, other stuff lifted from Python by JS.