*** empty log message ***

This commit is contained in:
Dave Goodwin
2004-05-24 13:21:34 +00:00
parent 25d9d8bac7
commit deb25434b8
12 changed files with 337 additions and 152 deletions

View File

@@ -22,14 +22,27 @@ help(g.__class__)
# You can also use the Python module browser to view this same
# information in a web browser.
# Under Windows, on the Start menu
# select Programs/Python2.x/Module Docs. On unix or Mac OSX, type
# 'pydoc -g' at a shell prompt, A small pop-up window will
# appear. Click on 'open browser', then navigate to the Cantera module, and then select what you want documentation about.
# information in a web browser. Under Windows, on the Start menu
# select
# Start
# |---Programs
# |---Python2.x
# |---Module Docs
#
# On unix, linux, or Mac OSX, at a shell prompt type
#
# pydoc -g
#
# A small pop-up window will appear. Enter 'Cantera' in the search
# box, or else simply click on 'open browser', then navigate to the
# Cantera module, and then select what you want documentation about.
# The module browser can also be started from within a Python script
# as follows:
import pydoc
pydoc.gui()
# Note: if you run into problems running the module browser this way,
# do this instead: Run 'pythonw' interactively (not 'python'), import
# module 'pydoc', and call function 'gui':
#
# pythonw
# >>> import pydoc
# >>> pydoc.gui()
#