changeset 14:33f8f445378d

Added section on batteries included.
author Atul Varma <varmaa@toolness.com>
date Thu, 05 Jun 2008 20:02:39 -0700
parents 7f8a793ba4ae
children 01712d2193d3
files PythonForJsProgrammers.txt
diffstat 1 files changed, 12 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.