changeset 18:a63485ecad03

Added a few things.
author Atul Varma <varmaa@toolness.com>
date Thu, 05 Jun 2008 22:10:53 -0700
parents b4d176c2bf39
children 017ab6a2c727
files PythonForJsProgrammers.txt
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/PythonForJsProgrammers.txt	Thu Jun 05 22:07:43 2008 -0700
+++ b/PythonForJsProgrammers.txt	Thu Jun 05 22:10:53 2008 -0700
@@ -85,10 +85,10 @@
 =====================
 
 Python, when executed with no parameters, just presents an interactive
-interpreter.  It's similar to the SpiderMonkey shell and xpcshell if
-you're familiar with those.  All following code examples in this
-tutorial will be displayed as though they're being executed in it,
-like so:
+interpreter.  It's similar to the SpiderMonkey/Rhino shell and
+``xpcshell`` if you're familiar with those.  All following code examples
+in this tutorial will be displayed as though they're being executed in
+it, like so:
 
     >>> 1 + 2
     3
@@ -124,10 +124,10 @@
 ==================
 
 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`_.
+functionality, from enhanced introspection to serialization, logging,
+XML processing, database access, testing, networking, data archiving,
+and more.  Extensive documentation for it all is contained in the
+`Python Library Reference`_.
 
 To use the functionality of a module, you'll use Python's ``import``
 statement, like so: