# HG changeset patch # User Atul Varma # Date 1212729053 25200 # Node ID a63485ecad0351eb766824e882fbc0d5ed9903a0 # Parent b4d176c2bf39eae1691d58f204e9e2e113552354 Added a few things. diff -r b4d176c2bf39 -r a63485ecad03 PythonForJsProgrammers.txt --- 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: