summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2019-07-09 22:52:01 -0500
committerPaul McGuire <ptmcg@austin.rr.com>2019-07-09 22:52:01 -0500
commit6e839f9fd995f13383e8abd51f26747551022a21 (patch)
treea54f20ce5072729d4c451205a0d1db626fdd0a47
parent95d4aa4c4fc9b285be17d9a3ac15afb28fd01a2a (diff)
downloadpyparsing-git-6e839f9fd995f13383e8abd51f26747551022a21.tar.gz
Add new module symbols to __all__
-rw-r--r--pyparsing.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyparsing.py b/pyparsing.py
index 13d747f..548e40b 100644
--- a/pyparsing.py
+++ b/pyparsing.py
@@ -96,7 +96,7 @@ classes inherit from. Use the docstrings for examples of how to:
"""
__version__ = "2.4.1"
-__versionTime__ = "09 Jul 2019 10:47 UTC"
+__versionTime__ = "10 Jul 2019 03:49 UTC"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string
@@ -188,7 +188,7 @@ __diag__.enable_debug_on_named_expressions = False
#~ sys.stderr.write( "testing pyparsing module, version %s, %s\n" % (__version__,__versionTime__ ) )
-__all__ = [ '__version__', '__versionTime__', '__author__', '__compat__',
+__all__ = [ '__version__', '__versionTime__', '__author__', '__compat__', '__diag__',
'And', 'CaselessKeyword', 'CaselessLiteral', 'CharsNotIn', 'Combine', 'Dict', 'Each', 'Empty',
'FollowedBy', 'Forward', 'GoToColumn', 'Group', 'Keyword', 'LineEnd', 'LineStart', 'Literal',
'PrecededBy', 'MatchFirst', 'NoMatch', 'NotAny', 'OneOrMore', 'OnlyOnce', 'Optional', 'Or',
@@ -207,6 +207,7 @@ __all__ = [ '__version__', '__versionTime__', '__author__', '__compat__',
'stringStart', 'traceParseAction', 'unicodeString', 'upcaseTokens', 'withAttribute',
'indentedBlock', 'originalTextFor', 'ungroup', 'infixNotation','locatedExpr', 'withClass',
'CloseMatch', 'tokenMap', 'pyparsing_common', 'pyparsing_unicode', 'unicode_set',
+'conditionAsParseAction',
]
system_version = tuple(sys.version_info)[:3]