[Python-modules-commits] [pyparsing] 01/03: Import pyparsing_2.1.5+dfsg1.orig.tar.gz

Barry Warsaw barry at moszumanska.debian.org
Fri Jun 17 11:01:31 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a commit to branch master
in repository pyparsing.

commit cddd27975328cfcedcaf3781a6667a632ed42ebb
Author: Barry Warsaw <barry at python.org>
Date:   Fri Jun 17 13:51:33 2016 +0300

    Import pyparsing_2.1.5+dfsg1.orig.tar.gz
---
 CHANGES                                            |   63 +-
 PKG-INFO                                           |    2 +-
 examples/dictExample2.py                           |   11 +-
 examples/getNTPserversNew.py                       |   11 +-
 examples/invRegex.py                               |    4 +-
 examples/numerics.py                               |   62 +
 examples/simpleSQL.py                              |  114 +-
 examples/urlExtractorNew.py                        |    2 +-
 htmldoc/api-objects.txt                            |  227 +-
 htmldoc/class-tree.html                            |    2 +-
 htmldoc/help.html                                  |    2 +-
 htmldoc/identifier-index.html                      |  533 +-
 htmldoc/module-tree.html                           |    2 +-
 htmldoc/pyparsing-module.html                      |  110 +-
 htmldoc/pyparsing-pysrc.html                       | 8110 ++++++++++----------
 htmldoc/pyparsing.And-class.html                   |   23 +-
 htmldoc/pyparsing.CaselessKeyword-class.html       |   19 +-
 htmldoc/pyparsing.CaselessLiteral-class.html       |   19 +-
 htmldoc/pyparsing.CharsNotIn-class.html            |   19 +-
 htmldoc/pyparsing.Combine-class.html               |   19 +-
 htmldoc/pyparsing.Dict-class.html                  |   19 +-
 htmldoc/pyparsing.Each-class.html                  |   19 +-
 htmldoc/pyparsing.Empty-class.html                 |   19 +-
 htmldoc/pyparsing.FollowedBy-class.html            |   19 +-
 htmldoc/pyparsing.Forward-class.html               |   19 +-
 htmldoc/pyparsing.GoToColumn-class.html            |   19 +-
 htmldoc/pyparsing.Group-class.html                 |   19 +-
 htmldoc/pyparsing.Keyword-class.html               |   50 +-
 htmldoc/pyparsing.LineEnd-class.html               |   19 +-
 htmldoc/pyparsing.LineStart-class.html             |   19 +-
 htmldoc/pyparsing.Literal-class.html               |   19 +-
 htmldoc/pyparsing.MatchFirst-class.html            |   19 +-
 htmldoc/pyparsing.NoMatch-class.html               |   19 +-
 htmldoc/pyparsing.NotAny-class.html                |   19 +-
 htmldoc/pyparsing.OneOrMore-class.html             |   19 +-
 htmldoc/pyparsing.OnlyOnce-class.html              |    2 +-
 htmldoc/pyparsing.Optional-class.html              |   19 +-
 htmldoc/pyparsing.Or-class.html                    |   19 +-
 htmldoc/pyparsing.ParseBaseException-class.html    |    2 +-
 htmldoc/pyparsing.ParseElementEnhance-class.html   |   19 +-
 htmldoc/pyparsing.ParseException-class.html        |    2 +-
 htmldoc/pyparsing.ParseExpression-class.html       |   19 +-
 htmldoc/pyparsing.ParseFatalException-class.html   |    2 +-
 htmldoc/pyparsing.ParseResults-class.html          |   25 +-
 htmldoc/pyparsing.ParseSyntaxException-class.html  |    2 +-
 htmldoc/pyparsing.ParserElement-class.html         |  128 +-
 htmldoc/pyparsing.QuotedString-class.html          |   19 +-
 .../pyparsing.RecursiveGrammarException-class.html |    2 +-
 htmldoc/pyparsing.Regex-class.html                 |   10 +-
 htmldoc/pyparsing.Regex.compiledREtype-class.html  |    2 +-
 htmldoc/pyparsing.SkipTo-class.html                |   19 +-
 htmldoc/pyparsing.StringEnd-class.html             |   19 +-
 htmldoc/pyparsing.StringStart-class.html           |   19 +-
 htmldoc/pyparsing.Suppress-class.html              |   19 +-
 htmldoc/pyparsing.Token-class.html                 |   19 +-
 htmldoc/pyparsing.TokenConverter-class.html        |   19 +-
 htmldoc/pyparsing.White-class.html                 |   19 +-
 htmldoc/pyparsing.Word-class.html                  |   19 +-
 htmldoc/pyparsing.WordEnd-class.html               |   19 +-
 htmldoc/pyparsing.WordStart-class.html             |   19 +-
 htmldoc/pyparsing.ZeroOrMore-class.html            |   19 +-
 htmldoc/pyparsing.pyparsing_common-class.html      |  288 +-
 htmldoc/toc-everything.html                        |    3 +-
 htmldoc/toc-pyparsing-module.html                  |    3 +-
 pyparsing.egg-info/PKG-INFO                        |    2 +-
 pyparsing.egg-info/SOURCES.txt                     |    1 +
 pyparsing.py                                       |  327 +-
 67 files changed, 5509 insertions(+), 5266 deletions(-)

diff --git a/CHANGES b/CHANGES
index d2aa8ad..799cdf8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,7 +2,68 @@
 Change Log
 ==========
 
-Version 2.1.4 - 
+Verison 2.1.5 - June, 2016
+------------------------------
+- Added ParserElement.split() generator method, similar to re.split(). 
+  Includes optional arguments maxsplit (to limit the number of splits),
+  and includeSeparators (to include the separating matched text in the 
+  returned output, default=False).
+
+- Added a new parse action construction helper tokenMap, which will
+  apply a function and optional arguments to each element in a 
+  ParseResults. So this parse action:
+  
+      def lowercase_all(tokens):
+          return [str(t).lower() for t in tokens]
+      OneOrMore(Word(alphas)).setParseAction(lowercase_all)
+
+  can now be written:
+  
+      OneOrMore(Word(alphas)).setParseAction(tokenMap(str.lower))
+
+  Also simplifies writing conversion parse actions like:
+  
+      integer = Word(nums).setParseAction(lambda t: int(t[0]))
+
+  to just:
+  
+      integer = Word(nums).setParseAction(tokenMap(int))
+
+  If additional arguments are necessary, they can be included in the
+  call to tokenMap, as in:
+  
+      hex_integer = Word(hexnums).setParseAction(tokenMap(int, 16))
+
+- Added more expressions to pyparsing_common:
+  . IPv4 and IPv6 addresses (including long, short, and mixed forms
+    of IPv6)
+  . MAC address
+  . ISO8601 date and date time strings (with named fields for year, month, etc.)
+  . UUID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
+  . hex integer (returned as int)
+  . fraction (integer '/' integer, returned as float)
+  . mixed integer (integer '-' fraction, or just fraction, returned as float)
+  . stripHTMLTags (parse action to remove tags from HTML source)
+  . parse action helpers convertToDate and convertToDatetime to do custom parse
+    time conversions of parsed ISO8601 strings
+
+- runTests now returns a two-tuple: success if all tests succeed,
+  and an output list of each test and its output lines.
+
+- Added failureTests argument (default=False) to runTests, so that
+  tests can be run that are expected failures, and runTests' success 
+  value will return True only if all tests *fail* as expected. Also,
+  parseAll now defaults to True.
+
+- New example numerics.py, shows samples of parsing integer and real
+  numbers using locale-dependent formats:
+
+    4.294.967.295,000 
+    4 294 967 295,000  
+    4,294,967,295.000  
+  
+
+Version 2.1.4 - May, 2016
 ------------------------------
 - Split out the '==' behavior in ParserElement, now implemented
   as the ParserElement.matches() method. Using '==' for string test 
diff --git a/PKG-INFO b/PKG-INFO
index 1c8d8ab..7afd5d2 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyparsing
-Version: 2.1.4
+Version: 2.1.5
 Summary: Python parsing module
 Home-page: http://pyparsing.wikispaces.com/
 Author: Paul McGuire
diff --git a/examples/dictExample2.py b/examples/dictExample2.py
index ccb7d3c..cae463b 100644
--- a/examples/dictExample2.py
+++ b/examples/dictExample2.py
@@ -6,7 +6,7 @@
 #
 # Copyright (c) 2004, Paul McGuire
 #
-from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList
+from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList, pyparsing_common
 import pprint
 
 testData = """
@@ -22,13 +22,14 @@ testData = """
 
 # define grammar for datatable
 underline = Word("-=")
-number = Word(nums).setParseAction( lambda t : int(t[0]) )
+number = pyparsing_common.integer
+
 vert = Literal("|").suppress()
 
 rowDelim = ("+" + ZeroOrMore( underline + "+" ) ).suppress()
 columnHeader = Group(vert + vert + delimitedList(Word(alphas + nums), "|") + vert)
 
-heading = rowDelim + columnHeader.setResultsName("columns") + rowDelim
+heading = rowDelim + columnHeader("columns") + rowDelim
 rowData = Group( vert + Word(alphas) + vert + delimitedList(number,"|") + vert )
 trailing = rowDelim
 
@@ -36,9 +37,7 @@ datatable = heading + Dict( ZeroOrMore(rowData) ) + trailing
 
 # now parse data and print results
 data = datatable.parseString(testData)
-print(data)
-print(data.asXML("DATA"))
-pprint.pprint(data.asList())
+print(data.dump())
 print("data keys=", list(data.keys()))
 print("data['min']=", data['min'])
 print("sum(data['min']) =", sum(data['min']))
diff --git a/examples/getNTPserversNew.py b/examples/getNTPserversNew.py
index 65b8310..14e710c 100644
--- a/examples/getNTPserversNew.py
+++ b/examples/getNTPserversNew.py
@@ -8,7 +8,12 @@
 #
 from pyparsing import (Word, Combine, Suppress, SkipTo, nums, makeHTMLTags,
                         delimitedList, alphas, alphanums)
-import urllib.request, urllib.parse, urllib.error
+try:
+    import urllib.request
+    urlopen = urllib.request.urlopen
+except ImportError:
+    import urllib
+    urlopen = urllib.urlopen
 
 integer = Word(nums)
 ipAddress = Combine( integer + "." + integer + "." + integer + "." + integer )
@@ -20,8 +25,8 @@ timeServerPattern =  (tdStart + hostname("hostname") + tdEnd +
 
 # get list of time servers
 nistTimeServerURL = "http://tf.nist.gov/tf-cgi/servers.cgi#"
-serverListPage = urllib.request.urlopen( nistTimeServerURL )
-serverListHTML = serverListPage.read()
+serverListPage = urlopen( nistTimeServerURL )
+serverListHTML = serverListPage.read().decode("UTF-8")
 serverListPage.close()
 
 addrs = {}
diff --git a/examples/invRegex.py b/examples/invRegex.py
index 5d9a393..b6fe1f1 100644
--- a/examples/invRegex.py
+++ b/examples/invRegex.py
@@ -161,8 +161,8 @@ def parser():
         reNonCaptureGroup = Suppress("?:")
         reDot = Literal(".")
         repetition = (
-            ( lbrace + Word(nums).setResultsName("count") + rbrace ) |
-            ( lbrace + Word(nums).setResultsName("minCount")+","+ Word(nums).setResultsName("maxCount") + rbrace ) |
+            ( lbrace + Word(nums)("count") + rbrace ) |
+            ( lbrace + Word(nums)("minCount")+","+ Word(nums)("maxCount") + rbrace ) |
             oneOf(list("*+?")) 
             )
 
diff --git a/examples/numerics.py b/examples/numerics.py
new file mode 100644
index 0000000..5ab99dd
--- /dev/null
+++ b/examples/numerics.py
@@ -0,0 +1,62 @@
+#
+# numerics.py
+#
+# Examples of parsing real and integers using various grouping and
+# decimal point characters, varying by locale.
+#
+# Copyright 2016, Paul McGuire
+#
+# Format samples from https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html
+#
+tests = """\
+# Canadian (English and French) 
+4 294 967 295,000  
+
+# Danish 
+4 294 967 295,000 
+
+# Finnish 
+4 294 967 295,000 
+
+# French 
+4 294 967 295,000  
+
+# German 
+4 294 967 295,000  
+
+# Italian 
+4.294.967.295,000 
+
+# Norwegian 
+4.294.967.295,000  
+
+# Spanish 
+4.294.967.295,000  
+
+# Swedish 
+4 294 967 295,000  
+
+# GB-English 
+4,294,967,295.000  
+
+# US-English 
+4,294,967,295.000  
+
+# Thai 
+4,294,967,295.000 
+"""
+
+from pyparsing import Regex
+
+comma_decimal = Regex(r'\d{1,2}(([ .])\d\d\d(\2\d\d\d)*)?,\d*')
+comma_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace('.','').replace(',','.')))
+
+dot_decimal = Regex(r'\d{1,2}(([ ,])\d\d\d(\2\d\d\d)*)?\.\d*')
+dot_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace(',','')))
+
+decimal = comma_decimal ^ dot_decimal
+decimal.runTests(tests, parseAll=True)
+
+grouped_integer = Regex(r'\d{1,2}(([ .,])\d\d\d(\2\d\d\d)*)?')
+grouped_integer.setParseAction(lambda t: int(t[0].replace(' ','').replace(',','').replace('.','')))
+grouped_integer.runTests(tests, parseAll=False)
diff --git a/examples/simpleSQL.py b/examples/simpleSQL.py
index e19d5c2..66dc18c 100644
--- a/examples/simpleSQL.py
+++ b/examples/simpleSQL.py
@@ -3,30 +3,17 @@
 # simple demo of using the parsing library to do simple-minded SQL parsing
 # could be extended to include where clauses etc.
 #
-# Copyright (c) 2003, Paul McGuire
+# Copyright (c) 2003,2016, Paul McGuire
 #
 from pyparsing import Literal, CaselessLiteral, Word, delimitedList, Optional, \
     Combine, Group, alphas, nums, alphanums, ParseException, Forward, oneOf, quotedString, \
     ZeroOrMore, restOfLine, Keyword, upcaseTokens
 
-def test( str ):
-    print(str + " ->")
-    try:
-        tokens = simpleSQL.parseString( str )
-        print("tokens = ",        tokens)
-        print("tokens.columns =", tokens.columns)
-        print("tokens.tables =",  tokens.tables)
-        print("tokens.where =", tokens.where)
-    except ParseException as err:
-        print(" "*err.loc + "^")
-        print(err)
-    print('')
-
-
 # define SQL tokens
 selectStmt = Forward()
-selectToken = Keyword("select", caseless=True)
-fromToken   = Keyword("from", caseless=True)
+SELECT = Keyword("select", caseless=True)
+FROM = Keyword("from", caseless=True)
+WHERE = Keyword("where", caseless=True)
 
 ident          = Word( alphas, alphanums + "_$" ).setName("identifier")
 columnName     = ( delimitedList( ident, ".", combine=True ) ).addParseAction(upcaseTokens)
@@ -58,11 +45,9 @@ whereCondition = Group(
 whereExpression << whereCondition + ZeroOrMore( ( and_ | or_ ) + whereExpression ) 
 
 # define the grammar
-selectStmt      << ( selectToken + 
-                   ( '*' | columnNameList ).setResultsName( "columns" ) + 
-                   fromToken + 
-                   tableNameList.setResultsName( "tables" ) + 
-                   Optional( Group( CaselessLiteral("where") + whereExpression ), "" ).setResultsName("where") )
+selectStmt <<= (SELECT + ('*' | columnNameList)("columns") + 
+                FROM + tableNameList( "tables" ) + 
+                Optional(Group(WHERE + whereExpression), "")("where"))
 
 simpleSQL = selectStmt
 
@@ -70,73 +55,18 @@ simpleSQL = selectStmt
 oracleSqlComment = "--" + restOfLine
 simpleSQL.ignore( oracleSqlComment )
 
-
-test( "SELECT * from XYZZY, ABC" )
-test( "select * from SYS.XYZZY" )
-test( "Select A from Sys.dual" )
-test( "Select A,B,C from Sys.dual" )
-test( "Select A, B, C from Sys.dual" )
-test( "Select A, B, C from Sys.dual, Table2   " )
-test( "Xelect A, B, C from Sys.dual" )
-test( "Select A, B, C frox Sys.dual" )
-test( "Select" )
-test( "Select &&& frox Sys.dual" )
-test( "Select A from Sys.dual where a in ('RED','GREEN','BLUE')" )
-test( "Select A from Sys.dual where a in ('RED','GREEN','BLUE') and b in (10,20,30)" )
-test( "Select A,b from table1,table2 where table1.id eq table2.id -- test out comparison operators" )
-
-"""
-Test output:
->pythonw -u simpleSQL.py
-SELECT * from XYZZY, ABC ->
-tokens =  ['select', '*', 'from', ['XYZZY', 'ABC']]
-tokens.columns = *
-tokens.tables = ['XYZZY', 'ABC']
-
-select * from SYS.XYZZY ->
-tokens =  ['select', '*', 'from', ['SYS.XYZZY']]
-tokens.columns = *
-tokens.tables = ['SYS.XYZZY']
-
-Select A from Sys.dual ->
-tokens =  ['select', ['A'], 'from', ['SYS.DUAL']]
-tokens.columns = ['A']
-tokens.tables = ['SYS.DUAL']
-
-Select A,B,C from Sys.dual ->
-tokens =  ['select', ['A', 'B', 'C'], 'from', ['SYS.DUAL']]
-tokens.columns = ['A', 'B', 'C']
-tokens.tables = ['SYS.DUAL']
-
-Select A, B, C from Sys.dual ->
-tokens =  ['select', ['A', 'B', 'C'], 'from', ['SYS.DUAL']]
-tokens.columns = ['A', 'B', 'C']
-tokens.tables = ['SYS.DUAL']
-
-Select A, B, C from Sys.dual, Table2    ->
-tokens =  ['select', ['A', 'B', 'C'], 'from', ['SYS.DUAL', 'TABLE2']]
-tokens.columns = ['A', 'B', 'C']
-tokens.tables = ['SYS.DUAL', 'TABLE2']
-
-Xelect A, B, C from Sys.dual ->
-^
-Expected 'select'
-Expected 'select' (0), (1,1)
-
-Select A, B, C frox Sys.dual ->
-               ^
-Expected 'from'
-Expected 'from' (15), (1,16)
-
-Select ->
-      ^
-Expected '*'
-Expected '*' (6), (1,7)
-
-Select &&& frox Sys.dual ->
-       ^
-Expected '*'
-Expected '*' (7), (1,8)
-
->Exit code: 0
-"""
\ No newline at end of file
+if __name__ == "__main__":
+	simpleSQL.runTests("""\
+	    SELECT * from XYZZY, ABC
+	    select * from SYS.XYZZY
+	    Select A from Sys.dual
+	    Select A,B,C from Sys.dual
+	    Select A, B, C from Sys.dual
+	    Select A, B, C from Sys.dual, Table2   
+	    Xelect A, B, C from Sys.dual
+	    Select A, B, C frox Sys.dual
+	    Select
+	    Select &&& frox Sys.dual
+	    Select A from Sys.dual where a in ('RED','GREEN','BLUE')
+	    Select A from Sys.dual where a in ('RED','GREEN','BLUE') and b in (10,20,30)
+	    Select A,b from table1,table2 where table1.id eq table2.id -- test out comparison operators""")
diff --git a/examples/urlExtractorNew.py b/examples/urlExtractorNew.py
index 0569b6c..0aac875 100644
--- a/examples/urlExtractorNew.py
+++ b/examples/urlExtractorNew.py
@@ -12,7 +12,7 @@ import pprint
 # that it is not necessary to explicitly show this in the pyparsing grammar; by default,
 # pyparsing skips over whitespace between tokens.
 linkOpenTag,linkCloseTag = makeHTMLTags("a")
-link = linkOpenTag + SkipTo(linkCloseTag).setResultsName("body") + linkCloseTag.suppress()
+link = linkOpenTag + SkipTo(linkCloseTag)("body") + linkCloseTag.suppress()
 
 # Go get some HTML with some links in it.
 serverListPage = urllib.request.urlopen( "http://www.google.com" )
diff --git a/htmldoc/api-objects.txt b/htmldoc/api-objects.txt
index 623b7b4..9768f0f 100644
--- a/htmldoc/api-objects.txt
+++ b/htmldoc/api-objects.txt
@@ -46,6 +46,7 @@ pyparsing.makeXMLTags	pyparsing-module.html#makeXMLTags
 pyparsing.singleArgBuiltins	pyparsing-module.html#singleArgBuiltins
 pyparsing.traceParseAction	pyparsing-module.html#traceParseAction
 pyparsing.quotedString	pyparsing-module.html#quotedString
+pyparsing.tokenMap	pyparsing-module.html#tokenMap
 pyparsing.withAttribute	pyparsing-module.html#withAttribute
 pyparsing.lineStart	pyparsing-module.html#lineStart
 pyparsing.matchPreviousLiteral	pyparsing-module.html#matchPreviousLiteral
@@ -113,9 +114,8 @@ pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
 pyparsing.And.__init__	pyparsing.And-class.html#__init__
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
 pyparsing.ParserElement.setName	pyparsing.ParserElement-class.html#setName
 pyparsing.ParseExpression.leaveWhitespace	pyparsing.ParseExpression-class.html#leaveWhitespace
@@ -147,12 +147,14 @@ pyparsing.And.__iadd__	pyparsing.And-class.html#__iadd__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
 pyparsing.ParseExpression.ignore	pyparsing.ParseExpression-class.html#ignore
 pyparsing.ParserElement.setDebugActions	pyparsing.ParserElement-class.html#setDebugActions
+pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__repr__	pyparsing.ParserElement-class.html#__repr__
 pyparsing.And.checkRecursion	pyparsing.And-class.html#checkRecursion
 pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.CaselessKeyword	pyparsing.CaselessKeyword-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -178,10 +180,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.CaselessKeyword.parseImpl	pyparsing.CaselessKeyword-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -209,6 +210,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -221,6 +223,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.CaselessLiteral	pyparsing.CaselessLiteral-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -245,10 +248,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.CaselessLiteral.parseImpl	pyparsing.CaselessLiteral-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -276,6 +278,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -288,6 +291,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.CharsNotIn	pyparsing.CharsNotIn-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -312,10 +316,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.CharsNotIn.parseImpl	pyparsing.CharsNotIn-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -342,6 +345,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -354,6 +358,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Combine	pyparsing.Combine-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -380,10 +385,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.ParseElementEnhance.parseImpl	pyparsing.ParseElementEnhance-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.Combine.postParse	pyparsing.Combine-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -410,6 +414,7 @@ pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#D
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
 pyparsing.ParserElement.canParseNext	pyparsing.ParserElement-class.html#canParseNext
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -421,6 +426,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Dict	pyparsing.Dict-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -447,10 +453,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.ParseElementEnhance.parseImpl	pyparsing.ParseElementEnhance-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.Dict.postParse	pyparsing.Dict-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -477,6 +482,7 @@ pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#D
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
 pyparsing.ParserElement.canParseNext	pyparsing.ParserElement-class.html#canParseNext
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -488,6 +494,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Each	pyparsing.Each-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -517,9 +524,8 @@ pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
 pyparsing.Each.__init__	pyparsing.Each-class.html#__init__
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
 pyparsing.ParserElement.setName	pyparsing.ParserElement-class.html#setName
 pyparsing.ParseExpression.leaveWhitespace	pyparsing.ParseExpression-class.html#leaveWhitespace
@@ -550,12 +556,14 @@ pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
 pyparsing.ParseExpression.ignore	pyparsing.ParseExpression-class.html#ignore
 pyparsing.ParserElement.setDebugActions	pyparsing.ParserElement-class.html#setDebugActions
+pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__repr__	pyparsing.ParserElement-class.html#__repr__
 pyparsing.Each.checkRecursion	pyparsing.Each-class.html#checkRecursion
 pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Empty	pyparsing.Empty-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -580,10 +588,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.ParserElement.parseImpl	pyparsing.ParserElement-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -610,6 +617,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -622,6 +630,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.FollowedBy	pyparsing.FollowedBy-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -648,10 +657,9 @@ pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_pack
 pyparsing.FollowedBy.parseImpl	pyparsing.FollowedBy-class.html#parseImpl
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -677,6 +685,7 @@ pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#D
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
 pyparsing.ParserElement.canParseNext	pyparsing.ParserElement-class.html#canParseNext
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -688,6 +697,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Forward	pyparsing.Forward-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -708,6 +718,7 @@ pyparsing.ParserElement.__rand__	pyparsing.ParserElement-class.html#__rand__
 pyparsing.ParserElement.enablePackrat	pyparsing.ParserElement-class.html#enablePackrat
 pyparsing.ParserElement.parseString	pyparsing.ParserElement-class.html#parseString
 pyparsing.ParserElement.scanString	pyparsing.ParserElement-class.html#scanString
+pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.__req__	pyparsing.ParserElement-class.html#__req__
 pyparsing.ParserElement.__xor__	pyparsing.ParserElement-class.html#__xor__
 pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
@@ -715,10 +726,9 @@ pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_pack
 pyparsing.ParseElementEnhance.parseImpl	pyparsing.ParseElementEnhance-class.html#parseImpl
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -756,6 +766,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.GoToColumn	pyparsing.GoToColumn-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -780,10 +791,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.GoToColumn.parseImpl	pyparsing.GoToColumn-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -810,6 +820,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.GoToColumn.preParse	pyparsing.GoToColumn-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -822,6 +833,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Group	pyparsing.Group-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -848,10 +860,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.ParseElementEnhance.parseImpl	pyparsing.ParseElementEnhance-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.Group.postParse	pyparsing.Group-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -878,6 +889,7 @@ pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#D
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
 pyparsing.ParserElement.canParseNext	pyparsing.ParserElement-class.html#canParseNext
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -889,6 +901,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Keyword	pyparsing.Keyword-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -914,10 +927,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.Keyword.parseImpl	pyparsing.Keyword-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -945,6 +957,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -957,6 +970,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.LineEnd	pyparsing.LineEnd-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -981,10 +995,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.LineEnd.parseImpl	pyparsing.LineEnd-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -1012,6 +1025,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -1024,6 +1038,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.LineStart	pyparsing.LineStart-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -1048,10 +1063,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.LineStart.parseImpl	pyparsing.LineStart-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -1078,6 +1092,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.LineStart.preParse	pyparsing.LineStart-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -1090,6 +1105,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.Literal	pyparsing.Literal-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -1114,10 +1130,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.Literal.parseImpl	pyparsing.Literal-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -1145,6 +1160,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -1157,6 +1173,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.MatchFirst	pyparsing.MatchFirst-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -1187,9 +1204,8 @@ pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
 pyparsing.MatchFirst.__init__	pyparsing.MatchFirst-class.html#__init__
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
 pyparsing.ParserElement.setName	pyparsing.ParserElement-class.html#setName
 pyparsing.ParseExpression.leaveWhitespace	pyparsing.ParseExpression-class.html#leaveWhitespace
@@ -1221,12 +1237,14 @@ pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
 pyparsing.ParseExpression.ignore	pyparsing.ParseExpression-class.html#ignore
 pyparsing.MatchFirst.__ior__	pyparsing.MatchFirst-class.html#__ior__
+pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__repr__	pyparsing.ParserElement-class.html#__repr__
 pyparsing.MatchFirst.checkRecursion	pyparsing.MatchFirst-class.html#checkRecursion
 pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.NoMatch	pyparsing.NoMatch-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -1251,10 +1269,9 @@ pyparsing.ParserElement.setDefaultWhitespaceChars	pyparsing.ParserElement-class.
 pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_packratEnabled
 pyparsing.NoMatch.parseImpl	pyparsing.NoMatch-class.html#parseImpl
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.__str__	pyparsing.ParserElement-class.html#__str__
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -1281,6 +1298,7 @@ pyparsing.ParserElement.runTests	pyparsing.ParserElement-class.html#runTests
 pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
 pyparsing.ParserElement.setBreak	pyparsing.ParserElement-class.html#setBreak
@@ -1293,6 +1311,7 @@ pyparsing.ParserElement.__hash__	pyparsing.ParserElement-class.html#__hash__
 pyparsing.ParserElement.setWhitespaceChars	pyparsing.ParserElement-class.html#setWhitespaceChars
 pyparsing.ParserElement._parse	pyparsing.ParserElement-class.html#_parse
 pyparsing.ParserElement._skipIgnorables	pyparsing.ParserElement-class.html#_skipIgnorables
+pyparsing.ParserElement._literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.setDebug	pyparsing.ParserElement-class.html#setDebug
 pyparsing.NotAny	pyparsing.NotAny-class.html
 pyparsing.ParserElement._parseCache	pyparsing.ParserElement-class.html#_parseCache
@@ -1319,10 +1338,9 @@ pyparsing.ParserElement._packratEnabled	pyparsing.ParserElement-class.html#_pack
 pyparsing.NotAny.parseImpl	pyparsing.NotAny-class.html#parseImpl
 pyparsing.ParserElement.postParse	pyparsing.ParserElement-class.html#postParse
 pyparsing.ParserElement.__invert__	pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
+pyparsing.ParserElement.split	pyparsing.ParserElement-class.html#split
 pyparsing.ParserElement.__rmul__	pyparsing.ParserElement-class.html#__rmul__
 pyparsing.ParserElement.__call__	pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.literalStringClass	pyparsing.Literal-class.html
 pyparsing.ParserElement.addParseAction	pyparsing.ParserElement-class.html#addParseAction
 pyparsing.ParserElement.__mul__	pyparsing.ParserElement-class.html#__mul__
 pyparsing.ParserElement.__ne__	pyparsing.ParserElement-class.html#__ne__
@@ -1349,6 +1367,7 @@ pyparsing.ParserElement.DEFAULT_WHITE_CHARS	pyparsing.ParserElement-class.html#D
 pyparsing.ParserElement.verbose_stacktrace	pyparsing.ParserElement-class.html#verbose_stacktrace
 pyparsing.ParserElement.searchString	pyparsing.ParserElement-class.html#searchString
 pyparsing.ParserElement.canParseNext	pyparsing.ParserElement-class.html#canParseNext
+pyparsing.ParserElement.setParseAction	pyparsing.ParserElement-class.html#setParseAction
 pyparsing.ParserElement.preParse	pyparsing.ParserElement-class.html#preParse
 pyparsing.ParserElement.__rne__	pyparsing.ParserElement-class.html#__rne__
... 13742 lines suppressed ...

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pyparsing.git



More information about the Python-modules-commits mailing list