diff options
-rw-r--r-- | docs/index.rst | 1 | ||||
-rw-r--r-- | pyparsing.py | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/docs/index.rst b/docs/index.rst index 55f30ad..f39b282 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -5,6 +5,7 @@ Welcome to PyParsing's documentation! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Release v\ |version| .. toctree:: :maxdepth: 2 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 |