From 2d98546f38348c0ff18a8ec95d58fba8f740243f Mon Sep 17 00:00:00 2001 From: ptmcg Date: Thu, 22 Nov 2018 01:20:17 -0600 Subject: Minor update to module welcome; add version to generated docs --- pyparsing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pyparsing.py') 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 ``", !"``), 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:`'+'` 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 " import string -- cgit v1.2.1