Mercurial > python-cmd2
diff docs/unfreefeatures.rst @ 388:52ab96d4f179
fix some Sphinx warnings
author | anatoly techtonik <techtonik@gmail.com> |
---|---|
date | Mon, 21 Jun 2010 17:02:20 +0300 |
parents | 8aa71e8f1064 |
children | 9d5ff2ddfdea |
line wrap: on
line diff
--- a/docs/unfreefeatures.rst Mon May 24 05:27:26 2010 -0400 +++ b/docs/unfreefeatures.rst Mon Jun 21 17:02:20 2010 +0300 @@ -23,7 +23,7 @@ ``cmd2`` passes ``arg`` to a ``do_`` method (or ``default`) as a ParsedString, a subclass of string that includes an attribute ``parsed``. -``parsed`` is a ``pyparsing.ParseResults``_ +``parsed`` is a ``pyparsing.ParseResults`` object produced by applying a pyparsing_ grammar applied to ``arg``. It may include: @@ -60,7 +60,7 @@ If ``parsed`` does not contain an attribute, querying for it will return ``None``. (This -is a characteristic of ``pyparsing.ParseResults``_.) +is a characteristic of ``pyparsing.ParseResults``.) ParsedString was developed to support sqlpython_ and reflects its needs. The parsing grammar and @@ -74,6 +74,12 @@ be no result unless you change your application to *use* ``arg.parsed``.) +.. _sqlpython: http://pypi.python.org/pypi/sqlpython/ + +.. _cmd: http://docs.python.org/library/cmd.html#module-cmd + +.. _pyparsing: http://pyparsing.wikispaces.com/ + Environment parameters ======================