diff options
author | ptmcg <ptmcg@austin.rr.com> | 2018-11-22 01:20:17 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2018-11-22 01:20:17 -0600 |
commit | 2d98546f38348c0ff18a8ec95d58fba8f740243f (patch) | |
tree | 1d1ba1a2b95a5cc46556098f53911120fc60be45 /pyparsing.py | |
parent | df3db63b300c733f89500722cb5a028ce04c7ffa (diff) | |
download | pyparsing-git-2d98546f38348c0ff18a8ec95d58fba8f740243f.tar.gz |
Minor update to module welcome; add version to generated docs
Diffstat (limited to 'pyparsing.py')
-rw-r--r-- | pyparsing.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyparsing.py b/pyparsing.py index e5860e4..711e0d0 100644 --- a/pyparsing.py +++ b/pyparsing.py @@ -38,8 +38,8 @@ grammar directly in Python. Here is a program to parse "Hello, World!" (or any greeting of the form ``"<salutation>, <addressee>!"``), built up using :class:`Word`, :class:`Literal`, and :class:`And` elements -(``ParserElement.__add__`` operator gives :class:`And` expressions, -strings are auto-converted to :class:`Literal` expressions):: +(the :class:`'+'<ParserElement.__add__>` operators create :class:`And` expressions, +and the strings are auto-converted to :class:`Literal` expressions):: from pyparsing import Word, alphas @@ -94,7 +94,7 @@ classes inherit from. Use the docstrings for examples of how to: """ __version__ = "2.3.1" -__versionTime__ = "21 Nov 2018 17:32 UTC" +__versionTime__ = "22 Nov 2018 07:07 UTC" __author__ = "Paul McGuire <ptmcg@users.sourceforge.net>" import string |