+++ /dev/null
-==========\r
-Change Log\r
-==========\r
-\r
-Version 2.2.0 - March, 2017\r
----------------------------\r
-- Bumped minor version number to reflect compatibility issues with\r
- OneOrMore and ZeroOrMore bugfixes in 2.1.10. (2.1.10 fixed a bug\r
- that was introduced in 2.1.4, but the fix could break code\r
- written against 2.1.4 - 2.1.9.)\r
-\r
-- Updated setup.py to address recursive import problems now\r
- that pyparsing is part of 'packaging' (used by setuptools).\r
- Patch submitted by Joshua Root, much thanks!\r
-\r
-- Fixed KeyError issue reported by Yann Bizeul when using packrat\r
- parsing in the Graphite time series database, thanks Yann!\r
-\r
-- Fixed incorrect usages of '\' in literals, as described in\r
- https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior\r
- Patch submitted by Ville Skyttä - thanks!\r
-\r
-- Minor internal change when using '-' operator, to be compatible\r
- with ParserElement.streamline() method.\r
-\r
-- Expanded infixNotation to accept a list or tuple of parse actions\r
- to attach to an operation.\r
-\r
-- New unit test added for dill support for storing pyparsing parsers.\r
- Ordinary Python pickle can be used to pickle pyparsing parsers as\r
- long as they do not use any parse actions. The 'dill' module is an\r
- extension to pickle which *does* support pickling of attached\r
- parse actions.\r
-\r
-\r
-Version 2.1.10 - October, 2016\r
--------------------------------\r
-- Fixed bug in reporting named parse results for ZeroOrMore\r
- expressions, thanks Ethan Nash for reporting this!\r
-\r
-- Fixed behavior of LineStart to be much more predictable.\r
- LineStart can now be used to detect if the next parse position\r
- is col 1, factoring in potential leading whitespace (which would\r
- cause LineStart to fail). Also fixed a bug in col, which is\r
- used in LineStart, where '\n's were erroneously considered to\r
- be column 1.\r
-\r
-- Added support for multiline test strings in runTests.\r
-\r
-- Fixed bug in ParseResults.dump when keys were not strings.\r
- Also changed display of string values to show them in quotes,\r
- to help distinguish parsed numeric strings from parsed integers\r
- that have been converted to Python ints.\r
-\r
-\r
-Version 2.1.9 - September, 2016\r
--------------------------------\r
-- Added class CloseMatch, a variation on Literal which matches \r
- "close" matches, that is, strings with at most 'n' mismatching\r
- characters.\r
-\r
-- Fixed bug in Keyword.setDefaultKeywordChars(), reported by Kobayashi\r
- Shinji - nice catch, thanks!\r
-\r
-- Minor API change in pyparsing_common. Renamed some of the common\r
- expressions to PEP8 format (to be consistent with the other \r
- pyparsing_common expressions):\r
- . signedInteger -> signed_integer\r
- . sciReal -> sci_real\r
- \r
- Also, in trying to stem the API bloat of pyparsing, I've copied\r
- some of the global expressions and helper parse actions into \r
- pyparsing_common, with the originals to be deprecated and removed\r
- in a future release:\r
- . commaSeparatedList -> pyparsing_common.comma_separated_list\r
- . upcaseTokens -> pyparsing_common.upcaseTokens\r
- . downcaseTokens -> pyparsing_common.downcaseTokens\r
-\r
- (I don't expect any other expressions, like the comment expressions,\r
- quotedString, or the Word-helping strings like alphas, nums, etc.\r
- to migrate to pyparsing_common - they are just too pervasive. As for\r
- the PEP8 vs camelCase naming, all the expressions are PEP8, while\r
- the parse actions in pyparsing_common are still camelCase. It's a \r
- small step - when pyparsing 3.0 comes around, everything will change\r
- to PEP8 snake case.)\r
-\r
-- Fixed Python3 compatibility bug when using dict keys() and values()\r
- in ParseResults.getName().\r
-\r
-- After some prodding, I've reworked the unitTests.py file for \r
- pyparsing over the past few releases. It uses some variations on \r
- unittest to handle my testing style. The test now:\r
- . auto-discovers its test classes (while maintining their order\r
- of definition)\r
- . suppresses voluminous 'print' output for tests that pass\r
-\r
-\r
-Version 2.1.8 - August, 2016\r
-----------------------------\r
-- Fixed issue in the optimization to _trim_arity, when the full \r
- stacktrace is retrieved to determine if a TypeError is raised in\r
- pyparsing or in the caller's parse action. Code was traversing\r
- the full stacktrace, and potentially encountering UnicodeDecodeError.\r
-\r
-- Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite \r
- loop with Suppress.\r
-\r
-- Fixed bug in Each, when merging named results from multiple\r
- expressions in a ZeroOrMore or OneOrMore. Also fixed bug when\r
- ZeroOrMore expressions were erroneously treated as required \r
- expressions in an Each expression.\r
- \r
-- Added a few more inline doc examples.\r
-\r
-- Improved use of runTests in several example scripts.\r
-\r
-\r
-Version 2.1.7 - August, 2016\r
-----------------------------\r
-- Fixed regression reported by Andrea Censi (surfaced in PyContracts \r
- tests) when using ParseSyntaxExceptions (raised when using operator '-')\r
- with packrat parsing.\r
-\r
-- Minor fix to oneOf, to accept all iterables, not just space-delimited\r
- strings and lists. (If you have a list or set of strings, it is \r
- not necessary to concat them using ' '.join to pass them to oneOf,\r
- oneOf will accept the list or set or generator directly.)\r
-\r
-\r
-Version 2.1.6 - August, 2016\r
-----------------------------\r
-- *Major packrat upgrade*, inspired by patch provided by Tal Einat - \r
- many, many, thanks to Tal for working on this! Tal's tests show \r
- faster parsing performance (2X in some tests), *and* memory reduction \r
- from 3GB down to ~100MB! Requires no changes to existing code using \r
- packratting. (Uses OrderedDict, available in Python 2.7 and later.\r
- For Python 2.6 users, will attempt to import from ordereddict\r
- backport. If not present, will implement pure-Python Fifo dict.)\r
-\r
-- Minor API change - to better distinguish between the flexible\r
- numeric types defined in pyparsing_common, I've changed "numeric" \r
- (which parsed numbers of different types and returned int for ints, \r
- float for floats, etc.) and "number" (which parsed numbers of int\r
- or float type, and returned all floats) to "number" and "fnumber"\r
- respectively. I hope the "f" prefix of "fnumber" will be a better\r
- indicator of its internal conversion of parsed values to floats, \r
- while the generic "number" is similar to the flexible number syntax\r
- in other languages. Also fixed a bug in pyparsing_common.numeric\r
- (now renamed to pyparsing_common.number), integers were parsed and \r
- returned as floats instead of being retained as ints.\r
-\r
-- Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5,\r
- when the parse action was used in conjunction with results names.\r
- Reported by Steven Arcangeli from the dql project, thanks for your\r
- patience, Steven!\r
-\r
-- Major change to docs! After seeing some comments on reddit about \r
- general issue with docs of Python modules, and thinking that I'm a \r
- little overdue in doing some doc tuneup on pyparsing, I decided to\r
- following the suggestions of the redditor and add more inline examples\r
- to the pyparsing reference documentation. I hope this addition \r
- will clarify some of the more common questions people have, especially\r
- when first starting with pyparsing/Python.\r
-\r
-- Deprecated ParseResults.asXML. I've never been too happy with this\r
- method, and it usually forces some unnatural code in the parsers in\r
- order to get decent tag names. The amount of guesswork that asXML \r
- has to do to try to match names with values should have been a red\r
- flag from day one. If you are using asXML, you will need to implement \r
- your own ParseResults->XML serialization. Or consider migrating to\r
- a more current format such as JSON (which is very easy to do: \r
- results_as_json = json.dumps(parse_result.asDict()) Hopefully, when\r
- I remove this code in a future version, I'll also be able to simplify \r
- some of the craziness in ParseResults, which IIRC was only there to try \r
- to make asXML work.\r
-\r
-- Updated traceParseAction parse action decorator to show the repr\r
- of the input and output tokens, instead of the str format, since \r
- str has been simplified to just show the token list content. \r
- \r
- (The change to ParseResults.__str__ occurred in pyparsing 2.0.4, but\r
- it seems that didn't make it into the release notes - sorry! Too\r
- many users, especially beginners, were confused by the \r
- "([token_list], {names_dict})" str format for ParseResults, thinking \r
- they were getting a tuple containing a list and a dict. The full form \r
- can be seen if using repr().)\r
-\r
- For tracing tokens in and out of parse actions, the more complete \r
- repr form provides important information when debugging parse actions.\r
-\r
-\r
-Verison 2.1.5 - June, 2016\r
-------------------------------\r
-- Added ParserElement.split() generator method, similar to re.split(). \r
- Includes optional arguments maxsplit (to limit the number of splits),\r
- and includeSeparators (to include the separating matched text in the \r
- returned output, default=False).\r
-\r
-- Added a new parse action construction helper tokenMap, which will\r
- apply a function and optional arguments to each element in a \r
- ParseResults. So this parse action:\r
- \r
- def lowercase_all(tokens):\r
- return [str(t).lower() for t in tokens]\r
- OneOrMore(Word(alphas)).setParseAction(lowercase_all)\r
-\r
- can now be written:\r
- \r
- OneOrMore(Word(alphas)).setParseAction(tokenMap(str.lower))\r
-\r
- Also simplifies writing conversion parse actions like:\r
- \r
- integer = Word(nums).setParseAction(lambda t: int(t[0]))\r
-\r
- to just:\r
- \r
- integer = Word(nums).setParseAction(tokenMap(int))\r
-\r
- If additional arguments are necessary, they can be included in the\r
- call to tokenMap, as in:\r
- \r
- hex_integer = Word(hexnums).setParseAction(tokenMap(int, 16))\r
-\r
-- Added more expressions to pyparsing_common:\r
- . IPv4 and IPv6 addresses (including long, short, and mixed forms\r
- of IPv6)\r
- . MAC address\r
- . ISO8601 date and date time strings (with named fields for year, month, etc.)\r
- . UUID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)\r
- . hex integer (returned as int)\r
- . fraction (integer '/' integer, returned as float)\r
- . mixed integer (integer '-' fraction, or just fraction, returned as float)\r
- . stripHTMLTags (parse action to remove tags from HTML source)\r
- . parse action helpers convertToDate and convertToDatetime to do custom parse\r
- time conversions of parsed ISO8601 strings\r
-\r
-- runTests now returns a two-tuple: success if all tests succeed,\r
- and an output list of each test and its output lines.\r
-\r
-- Added failureTests argument (default=False) to runTests, so that\r
- tests can be run that are expected failures, and runTests' success \r
- value will return True only if all tests *fail* as expected. Also,\r
- parseAll now defaults to True.\r
-\r
-- New example numerics.py, shows samples of parsing integer and real\r
- numbers using locale-dependent formats:\r
-\r
- 4.294.967.295,000 \r
- 4 294 967 295,000 \r
- 4,294,967,295.000 \r
- \r
-\r
-Version 2.1.4 - May, 2016\r
-------------------------------\r
-- Split out the '==' behavior in ParserElement, now implemented\r
- as the ParserElement.matches() method. Using '==' for string test \r
- purposes will be removed in a future release.\r
-\r
-- Expanded capabilities of runTests(). Will now accept embedded\r
- comments (default is Python style, leading '#' character, but \r
- customizable). Comments will be emitted along with the tests and\r
- test output. Useful during test development, to create a test string\r
- consisting only of test case description comments separated by \r
- blank lines, and then fill in the test cases. Will also highlight\r
- ParseFatalExceptions with "(FATAL)".\r
-\r
-- Added a 'pyparsing_common' class containing common/helpful little \r
- expressions such as integer, float, identifier, etc. I used this \r
- class as a sort of embedded namespace, to contain these helpers \r
- without further adding to pyparsing's namespace bloat.\r
-\r
-- Minor enhancement to traceParseAction decorator, to retain the \r
- parse action's name for the trace output.\r
-\r
-- Added optional 'fatal' keyword arg to addCondition, to indicate that\r
- a condition failure should halt parsing immediately.\r
-\r
-\r
-Version 2.1.3 - May, 2016\r
-------------------------------\r
-- _trim_arity fix in 2.1.2 was very version-dependent on Py 3.5.0.\r
- Now works for Python 2.x, 3.3, 3.4, 3.5.0, and 3.5.1 (and hopefully\r
- beyond).\r
-\r
-\r
-Version 2.1.2 - May, 2016\r
-------------------------------\r
-- Fixed bug in _trim_arity when pyparsing code is included in a\r
- PyInstaller, reported by maluwa.\r
-\r
-- Fixed catastrophic regex backtracking in implementation of the\r
- quoted string expressions (dblQuotedString, sglQuotedString, and\r
- quotedString). Reported on the pyparsing wiki by webpentest,\r
- good catch! (Also tuned up some other expressions susceptible to the \r
- same backtracking problem, such as cStyleComment, cppStyleComment, \r
- etc.)\r
-\r
-\r
-Version 2.1.1 - March, 2016\r
----------------------------\r
-- Added support for assigning to ParseResults using slices.\r
-\r
-- Fixed bug in ParseResults.toDict(), in which dict values were always\r
- converted to dicts, even if they were just unkeyed lists of tokens.\r
- Reported on SO by Gerald Thibault, thanks Gerald!\r
-\r
-- Fixed bug in SkipTo when using failOn, reported by robyschek, thanks!\r
-\r
-- Fixed bug in Each introduced in 2.1.0, reported by AND patch and\r
- unit test submitted by robyschek, well done!\r
-\r
-- Removed use of functools.partial in replaceWith, as this creates\r
- an ambiguous signature for the generated parse action, which fails in \r
- PyPy. Reported by Evan Hubinger, thanks Evan!\r
-\r
-- Added default behavior to QuotedString to convert embedded '\t', '\n',\r
- etc. characters to their whitespace counterparts. Found during Q&A\r
- exchange on SO with Maxim.\r
-\r
-\r
-Version 2.1.0 - February, 2016\r
-------------------------------\r
-- Modified the internal _trim_arity method to distinguish between \r
- TypeError's raised while trying to determine parse action arity and\r
- those raised within the parse action itself. This will clear up those\r
- confusing "<lambda>() takes exactly 1 argument (0 given)" error \r
- messages when there is an actual TypeError in the body of the parse\r
- action. Thanks to all who have raised this issue in the past, and\r
- most recently to Michael Cohen, who sent in a proposed patch, and got\r
- me to finally tackle this problem.\r
-\r
-- Added compatibility for pickle protocols 2-4 when pickling ParseResults. \r
- In Python 2.x, protocol 0 was the default, and protocol 2 did not work.\r
- In Python 3.x, protocol 3 is the default, so explicitly naming \r
- protocol 0 or 1 was required to pickle ParseResults. With this release,\r
- all protocols 0-4 are supported. Thanks for reporting this on StackOverflow,\r
- Arne Wolframm, and for providing a nice simple test case!\r
-\r
-- Added optional 'stopOn' argument to ZeroOrMore and OneOrMore, to\r
- simplify breaking on stop tokens that would match the repetition \r
- expression. \r
- \r
- It is a common problem to fail to look ahead when matching repetitive \r
- tokens if the sentinel at the end also matches the repetition\r
- expression, as when parsing "BEGIN aaa bbb ccc END" with:\r
- \r
- "BEGIN" + OneOrMore(Word(alphas)) + "END"\r
-\r
- Since "END" matches the repetition expression "Word(alphas)", it will\r
- never get parsed as the terminating sentinel. Up until now, this has \r
- to be resolved by the user inserting their own negative lookahead:\r
- \r
- "BEGIN" + OneOrMore(~Literal("END") + Word(alphas)) + "END"\r
- \r
- Using stopOn, they can more easily write:\r
- \r
- "BEGIN" + OneOrMore(Word(alphas), stopOn="END") + "END"\r
- \r
- The stopOn argument can be a literal string or a pyparsing expression.\r
- Inspired by a question by Lamakaha on StackOverflow (and many previous\r
- questions with the same negative-lookahead resolution).\r
-\r
-- Added expression names for many internal and builtin expressions, to \r
- reduce name and error message overhead during parsing.\r
-\r
-- Converted helper lambdas to functions to refactor and add docstring\r
- support.\r
-\r
-- Fixed ParseResults.asDict() to correctly convert nested ParseResults\r
- values to dicts.\r
- \r
-- Cleaned up some examples, fixed typo in fourFn.py identified by\r
- aristotle2600 on reddit.\r
-\r
-- Removed keepOriginalText helper method, which was deprecated ages ago.\r
- Superceded by originalTextFor.\r
-\r
-- Same for the Upcase class, which was long ago deprecated and replaced\r
- with the upcaseTokens method.\r
-\r
-\r
-\r
-Version 2.0.7 - December, 2015\r
-------------------------------\r
-- Simplified string representation of Forward class, to avoid memory\r
- and performance errors while building ParseException messages. Thanks,\r
- Will McGugan, Andrea Censi, and Martijn Vermaat for the bug reports and\r
- test code.\r
-\r
-- Cleaned up additional issues from enhancing the error messages for\r
- Or and MatchFirst, handling Unicode values in expressions. Fixes Unicode\r
- encoding issues in Python 2, thanks to Evan Hubinger for the bug report.\r
-\r
-- Fixed implementation of dir() for ParseResults - was leaving out all the\r
- defined methods and just adding the custom results names.\r
-\r
-- Fixed bug in ignore() that was introduced in pyparsing 1.5.3, that would\r
- not accept a string literal as the ignore expression.\r
-\r
-- Added new example parseTabularData.py to illustrate parsing of data \r
- formatted in columns, with detection of empty cells.\r
-\r
-- Updated a number of examples to more current Python and pyparsing \r
- forms.\r
-\r
-\r
-Version 2.0.6 - November, 2015\r
-------------------------------\r
-- Fixed a bug in Each when multiple Optional elements are present.\r
- Thanks for reporting this, whereswalden on SO.\r
-\r
-- Fixed another bug in Each, when Optional elements have results names\r
- or parse actions, reported by Max Rothman - thank you, Max!\r
-\r
-- Added optional parseAll argument to runTests, whether tests should\r
- require the entire input string to be parsed or not (similar to \r
- parseAll argument to parseString). Plus a little neaten-up of the\r
- output on Python 2 (no stray ()'s).\r
-\r
-- Modified exception messages from MatchFirst and Or expressions. These\r
- were formerly misleading as they would only give the first or longest\r
- exception mismatch error message. Now the error message includes all\r
- the alternatives that were possible matches. Originally proposed by \r
- a pyparsing user, but I've lost the email thread - finally figured out\r
- a fairly clean way to do this.\r
-\r
-- Fixed a bug in Or, when a parse action on an alternative raises an \r
- exception, other potentially matching alternatives were not always tried.\r
- Reported by TheVeryOmni on the pyparsing wiki, thanks!\r
-\r
-- Fixed a bug to dump() introduced in 2.0.4, where list values were shown\r
- in duplicate.\r
-\r
-\r
-Version 2.0.5 - October, 2015\r
------------------------------\r
-- (&$(@#&$(@!!!! Some "print" statements snuck into pyparsing v2.0.4,\r
- breaking Python 3 compatibility! Fixed. Reported by jenshn, thanks!\r
- \r
-\r
-Version 2.0.4 - October, 2015\r
------------------------------\r
-- Added ParserElement.addCondition, to simplify adding parse actions \r
- that act primarily as filters. If the given condition evaluates False,\r
- pyparsing will raise a ParseException. The condition should be a method\r
- with the same method signature as a parse action, but should return a\r
- boolean. Suggested by Victor Porton, nice idea Victor, thanks!\r
-\r
-- Slight mod to srange to accept unicode literals for the input string,\r
- such as "[а-яА-Я]" instead of "[\u0430-\u044f\u0410-\u042f]". Thanks \r
- to Alexandr Suchkov for the patch!\r
-\r
-- Enhanced implementation of replaceWith.\r
-\r
-- Fixed enhanced ParseResults.dump() method when the results consists\r
- only of an unnamed array of sub-structure results. Reported by Robin\r
- Siebler, thanks for your patience and persistence, Robin!\r
-\r
-- Fixed bug in fourFn.py example code, where pi and e were defined using\r
- CaselessLiteral instead of CaselessKeyword. This was not a problem until\r
- adding a new function 'exp', and the leading 'e' of 'exp' was accidentally\r
- parsed as the mathematical constant 'e'. Nice catch, Tom Grydeland - thanks!\r
-\r
-- Adopt new-fangled Python features, like decorators and ternary expressions, \r
- per suggestions from Williamzjc - thanks William! (Oh yeah, I'm not\r
- supporting Python 2.3 with this code any more...) Plus, some additional\r
- code fixes/cleanup - thanks again!\r
-\r
-- Added ParserElement.runTests, a little test bench for quickly running\r
- an expression against a list of sample input strings. Basically, I got \r
- tired of writing the same test code over and over, and finally added it\r
- as a test point method on ParserElement.\r
-\r
-- Added withClass helper method, a simplified version of withAttribute for\r
- the common but annoying case when defining a filter on a div's class - \r
- made difficult because 'class' is a Python reserved word.\r
-\r
-\r
-Version 2.0.3 - October, 2014\r
------------------------------\r
-- Fixed escaping behavior in QuotedString. Formerly, only quotation\r
- marks (or characters designated as quotation marks in the QuotedString\r
- constructor) would be escaped. Now all escaped characters will be\r
- escaped, and the escaping backslashes will be removed.\r
-\r
-- Fixed regression in ParseResults.pop() - pop() was pretty much\r
- broken after I added *improvements* in 2.0.2. Reported by Iain\r
- Shelvington, thanks Iain!\r
-\r
-- Fixed bug in And class when initializing using a generator.\r
-\r
-- Enhanced ParseResults.dump() method to list out nested ParseResults that\r
- are unnamed arrays of sub-structures.\r
-\r
-- Fixed UnboundLocalError under Python 3.4 in oneOf method, reported\r
- on Sourceforge by aldanor, thanks!\r
-\r
-- Fixed bug in ParseResults __init__ method, when returning non-ParseResults\r
- types from parse actions that implement __eq__. Raised during discussion \r
- on the pyparsing wiki with cyrfer.\r
-\r
-\r
-Version 2.0.2 - April, 2014\r
----------------------------\r
-- Extended "expr(name)" shortcut (same as "expr.setResultsName(name)")\r
- to accept "expr()" as a shortcut for "expr.copy()".\r
-\r
-- Added "locatedExpr(expr)" helper, to decorate any returned tokens\r
- with their location within the input string. Adds the results names\r
- locn_start and locn_end to the output parse results.\r
-\r
-- Added "pprint()" method to ParseResults, to simplify troubleshooting\r
- and prettified output. Now instead of importing the pprint module\r
- and then writing "pprint.pprint(result)", you can just write\r
- "result.pprint()". This method also accepts addtional positional and\r
- keyword arguments (such as indent, width, etc.), which get passed \r
- through directly to the pprint method \r
- (see http://docs.python.org/2/library/pprint.html#pprint.pprint).\r
-\r
-- Removed deprecation warnings when using '<<' for Forward expression\r
- assignment. '<<=' is still preferred, but '<<' will be retained\r
- for cases whre '<<=' operator is not suitable (such as in defining\r
- lambda expressions).\r
-\r
-- Expanded argument compatibility for classes and functions that\r
- take list arguments, to now accept generators as well.\r
-\r
-- Extended list-like behavior of ParseResults, adding support for\r
- append and extend. NOTE: if you have existing applications using\r
- these names as results names, you will have to access them using\r
- dict-style syntax: res["append"] and res["extend"]\r
-\r
-- ParseResults emulates the change in list vs. iterator semantics for\r
- methods like keys(), values(), and items(). Under Python 2.x, these\r
- methods will return lists, under Python 3.x, these methods will \r
- return iterators.\r
-\r
-- ParseResults now has a method haskeys() which returns True or False\r
- depending on whether any results names have been defined. This simplifies\r
- testing for the existence of results names under Python 3.x, which \r
- returns keys() as an iterator, not a list.\r
-\r
-- ParseResults now supports both list and dict semantics for pop().\r
- If passed no argument or an integer argument, it will use list semantics\r
- and pop tokens from the list of parsed tokens. If passed a non-integer\r
- argument (most likely a string), it will use dict semantics and \r
- pop the corresponding value from any defined results names. A\r
- second default return value argument is supported, just as in \r
- dict.pop().\r
-\r
-- Fixed bug in markInputline, thanks for reporting this, Matt Grant!\r
-\r
-- Cleaned up my unit test environment, now runs with Python 2.6 and \r
- 3.3.\r
-\r
-\r
-Version 2.0.1 - July, 2013\r
---------------------------\r
-- Removed use of "nonlocal" that prevented using this version of \r
- pyparsing with Python 2.6 and 2.7. This will make it easier to \r
- install for packages that depend on pyparsing, under Python \r
- versions 2.6 and later. Those using older versions of Python\r
- will have to manually install pyparsing 1.5.7.\r
-\r
-- Fixed implementation of <<= operator to return self; reported by\r
- Luc J. Bourhis, with patch fix by Mathias Mamsch - thanks, Luc\r
- and Mathias!\r
-\r
-\r
-Version 2.0.0 - November, 2012\r
-------------------------------\r
-- Rather than release another combined Python 2.x/3.x release\r
- I've decided to start a new major version that is only \r
- compatible with Python 3.x (and consequently Python 2.7 as\r
- well due to backporting of key features). This version will\r
- be the main development path from now on, with little follow-on\r
- development on the 1.5.x path.\r
-\r
-- Operator '<<' is now deprecated, in favor of operator '<<=' for\r
- attaching parsing expressions to Forward() expressions. This is\r
- being done to address precedence of operations problems with '<<'.\r
- Operator '<<' will be removed in a future version of pyparsing.\r
-\r
-\r
-Version 1.5.7 - November, 2012\r
------------------------------\r
-- NOTE: This is the last release of pyparsing that will try to \r
- maintain compatibility with Python versions < 2.6. The next\r
- release of pyparsing will be version 2.0.0, using new Python\r
- syntax that will not be compatible for Python version 2.5 or\r
- older.\r
-\r
-- An awesome new example is included in this release, submitted\r
- by Luca DellOlio, for parsing ANTLR grammar definitions, nice\r
- work Luca!\r
-\r
-- Fixed implementation of ParseResults.__str__ to use Pythonic\r
- ''.join() instead of repeated string concatenation. This\r
- purportedly has been a performance issue under PyPy.\r
-\r
-- Fixed bug in ParseResults.__dir__ under Python 3, reported by\r
- Thomas Kluyver, thank you Thomas!\r
-\r
-- Added ParserElement.inlineLiteralsUsing static method, to \r
- override pyparsing's default behavior of converting string\r
- literals to Literal instances, to use other classes (such\r
- as Suppress or CaselessLiteral).\r
-\r
-- Added new operator '<<=', which will eventually replace '<<' for \r
- storing the contents of a Forward(). '<<=' does not have the same\r
- operator precedence problems that '<<' does.\r
-\r
-- 'operatorPrecedence' is being renamed 'infixNotation' as a better\r
- description of what this helper function creates. 'operatorPrecedence'\r
- is deprecated, and will be dropped entirely in a future release.\r
-\r
-- Added optional arguments lpar and rpar to operatorPrecedence, so that \r
- expressions that use it can override the default suppression of the\r
- grouping characters.\r
-\r
-- Added support for using single argument builtin functions as parse \r
- actions. Now you can write 'expr.setParseAction(len)' and get back\r
- the length of the list of matched tokens. Supported builtins are:\r
- sum, len, sorted, reversed, list, tuple, set, any, all, min, and max.\r
- A script demonstrating this feature is included in the examples\r
- directory.\r
-\r
-- Improved linking in generated docs, proposed on the pyparsing wiki\r
- by techtonik, thanks!\r
-\r
-- Fixed a bug in the definition of 'alphas', which was based on the \r
- string.uppercase and string.lowercase "constants", which in fact \r
- *aren't* constant, but vary with locale settings. This could make \r
- parsers locale-sensitive in a subtle way. Thanks to Kef Schecter for\r
- his diligence in following through on reporting and monitoring \r
- this bugfix!\r
-\r
-- Fixed a bug in the Py3 version of pyparsing, during exception\r
- handling with packrat parsing enabled, reported by Catherine \r
- Devlin - thanks Catherine!\r
-\r
-- Fixed typo in ParseBaseException.__dir__, reported anonymously on \r
- the SourceForge bug tracker, thank you Pyparsing User With No Name.\r
-\r
-- Fixed bug in srange when using '\x###' hex character codes.\r
-\r
-- Addeed optional 'intExpr' argument to countedArray, so that you \r
- can define your own expression that will evaluate to an integer,\r
- to be used as the count for the following elements. Allows you \r
- to define a countedArray with the count given in hex, for example,\r
- by defining intExpr as "Word(hexnums).setParseAction(int(t[0],16))".\r
-\r
-\r
-Version 1.5.6 - June, 2011\r
-----------------------------\r
-- Cleanup of parse action normalizing code, to be more version-tolerant,\r
- and robust in the face of future Python versions - much thanks to \r
- Raymond Hettinger for this rewrite!\r
-\r
-- Removal of exception cacheing, addressing a memory leak condition\r
- in Python 3. Thanks to Michael Droettboom and the Cape Town PUG for\r
- their analysis and work on this problem!\r
-\r
-- Fixed bug when using packrat parsing, where a previously parsed\r
- expression would duplicate subsequent tokens - reported by Frankie \r
- Ribery on stackoverflow, thanks!\r
-\r
-- Added 'ungroup' helper method, to address token grouping done\r
- implicitly by And expressions, even if only one expression in the\r
- And actually returns any text - also inspired by stackoverflow\r
- discussion with Frankie Ribery!\r
-\r
-- Fixed bug in srange, which accepted escaped hex characters of the \r
- form '\0x##', but should be '\x##'. Both forms will be supported\r
- for backwards compatibility.\r
-\r
-- Enhancement to countedArray, accepting an optional expression to be\r
- used for matching the leading integer count - proposed by Mathias on\r
- the pyparsing mailing list, good idea!\r
-\r
-- Added the Verilog parser to the provided set of examples, under the\r
- MIT license. While this frees up this parser for any use, if you find\r
- yourself using it in a commercial purpose, please consider making a\r
- charitable donation as described in the parser's header.\r
-\r
-- Added the excludeChars argument to the Word class, to simplify defining\r
- a word composed of all characters in a large range except for one or\r
- two. Suggested by JesterEE on the pyparsing wiki.\r
-\r
-- Added optional overlap parameter to scanString, to return overlapping\r
- matches found in the source text.\r
-\r
-- Updated oneOf internal regular expression generation, with improved\r
- parse time performance.\r
- \r
-- Slight performance improvement in transformString, removing empty\r
- strings from the list of string fragments built while scanning the\r
- source text, before calling ''.join. Especially useful when using \r
- transformString to strip out selected text.\r
-\r
-- Enhanced form of using the "expr('name')" style of results naming,\r
- in lieu of calling setResultsName. If name ends with an '*', then\r
- this is equivalent to expr.setResultsName('name',listAllMatches=True).\r
-\r
-- Fixed up internal list flattener to use iteration instead of recursion,\r
- to avoid stack overflow when transforming large files.\r
-\r
-- Added other new examples:\r
- . protobuf parser - parses Google's protobuf language\r
- . btpyparse - a BibTex parser contributed by Matthew Brett,\r
- with test suite test_bibparse.py (thanks, Matthew!)\r
- . groupUsingListAllMatches.py - demo using trailing '*' for results \r
- names\r
-\r
-\r
-Version 1.5.5 - August, 2010\r
-----------------------------\r
-\r
-- Typo in Python3 version of pyparsing, "builtin" should be "builtins".\r
- (sigh)\r
-\r
-\r
-Version 1.5.4 - August, 2010\r
-----------------------------\r
-\r
-- Fixed __builtins__ and file references in Python 3 code, thanks to \r
- Greg Watson, saulspatz, sminos, and Mark Summerfield for reporting \r
- their Python 3 experiences.\r
-\r
-- Added new example, apicheck.py, as a sample of scanning a Tcl-like\r
- language for functions with incorrect number of arguments (difficult\r
- to track down in Tcl languages). This example uses some interesting\r
- methods for capturing exceptions while scanning through source\r
- code.\r
-\r
-- Added new example deltaTime.py, that takes everyday time references\r
- like "an hour from now", "2 days ago", "next Sunday at 2pm".\r
-\r
-\r
-Version 1.5.3 - June, 2010\r
---------------------------\r
-\r
-- ======= NOTE: API CHANGE!!!!!!! ===============\r
- With this release, and henceforward, the pyparsing module is \r
- imported as "pyparsing" on both Python 2.x and Python 3.x versions.\r
-\r
-- Fixed up setup.py to auto-detect Python version and install the \r
- correct version of pyparsing - suggested by Alex Martelli, \r
- thanks, Alex! (and my apologies to all those who struggled with \r
- those spurious installation errors caused by my earlier \r
- fumblings!)\r
-\r
-- Fixed bug on Python3 when using parseFile, getting bytes instead of\r
- a str from the input file.\r
-\r
-- Fixed subtle bug in originalTextFor, if followed by\r
- significant whitespace (like a newline) - discovered by\r
- Francis Vidal, thanks!\r
-\r
-- Fixed very sneaky bug in Each, in which Optional elements were\r
- not completely recognized as optional - found by Tal Weiss, thanks\r
- for your patience.\r
- \r
-- Fixed off-by-1 bug in line() method when the first line of the\r
- input text was an empty line. Thanks to John Krukoff for submitting\r
- a patch!\r
- \r
-- Fixed bug in transformString if grammar contains Group expressions,\r
- thanks to patch submitted by barnabas79, nice work!\r
- \r
-- Fixed bug in originalTextFor in which trailing comments or otherwised\r
- ignored text got slurped in with the matched expression. Thanks to\r
- michael_ramirez44 on the pyparsing wiki for reporting this just in\r
- time to get into this release!\r
-\r
-- Added better support for summing ParseResults, see the new example,\r
- parseResultsSumExample.py.\r
- \r
-- Added support for composing a Regex using a compiled RE object; \r
- thanks to my new colleague, Mike Thornton!\r
-\r
-- In version 1.5.2, I changed the way exceptions are raised in order\r
- to simplify the stacktraces reported during parsing. An anonymous\r
- user posted a bug report on SF that this behavior makes it difficult\r
- to debug some complex parsers, or parsers nested within parsers. In\r
- this release I've added a class attribute ParserElement.verbose_stacktrace,\r
- with a default value of False. If you set this to True, pyparsing will \r
- report stacktraces using the pre-1.5.2 behavior.\r
-\r
-- New examples: \r
-\r
- . pymicko.py, a MicroC compiler submitted by Zarko Zivanov. \r
- (Note: this example is separately licensed under the GPLv3, \r
- and requires Python 2.6 or higher.) Thank you, Zarko!\r
-\r
- . oc.py, a subset C parser, using the BNF from the 1996 Obfuscated C\r
- Contest.\r
-\r
- . stateMachine2.py, a modified version of stateMachine.py submitted \r
- by Matt Anderson, that is compatible with Python versions 2.7 and \r
- above - thanks so much, Matt!\r
- \r
- . select_parser.py, a parser for reading SQLite SELECT statements, \r
- as specified at http://www.sqlite.org/lang_select.html; this goes\r
- into much more detail than the simple SQL parser included in pyparsing's\r
- source code\r
- \r
- . excelExpr.py, a *simplistic* first-cut at a parser for Excel \r
- expressions, which I originally posted on comp.lang.python in January, \r
- 2010; beware, this parser omits many common Excel cases (addition of\r
- numbers represented as strings, references to named ranges)\r
- \r
- . cpp_enum_parser.py, a nice little parser posted my Mark Tolonen on\r
- comp.lang.python in August, 2009 (redistributed here with Mark's\r
- permission). Thanks a bunch, Mark!\r
- \r
- . partial_gene_match.py, a sample I posted to Stackoverflow.com,\r
- implementing a special variation on Literal that does "close" matching,\r
- up to a given number of allowed mismatches. The application was to \r
- find matching gene sequences, with allowance for one or two mismatches.\r
- \r
- . tagCapture.py, a sample showing how to use a Forward placeholder to\r
- enforce matching of text parsed in a previous expression.\r
-\r
- . matchPreviousDemo.py, simple demo showing how the matchPreviousLiteral\r
- helper method is used to match a previously parsed token.\r
-\r
-\r
-Version 1.5.2 - April, 2009\r
-------------------------------\r
-- Added pyparsing_py3.py module, so that Python 3 users can use\r
- pyparsing by changing their pyparsing import statement to:\r
- \r
- import pyparsing_py3\r
-\r
- Thanks for help from Patrick Laban and his friend Geremy \r
- Condra on the pyparsing wiki.\r
- \r
-- Removed __slots__ declaration on ParseBaseException, for\r
- compatibility with IronPython 2.0.1. Raised by David\r
- Lawler on the pyparsing wiki, thanks David!\r
- \r
-- Fixed bug in SkipTo/failOn handling - caught by eagle eye \r
- cpennington on the pyparsing wiki!\r
-\r
-- Fixed second bug in SkipTo when using the ignore constructor\r
- argument, reported by Catherine Devlin, thanks!\r
- \r
-- Fixed obscure bug reported by Eike Welk when using a class\r
- as a ParseAction with an errant __getitem__ method.\r
-\r
-- Simplified exception stack traces when reporting parse \r
- exceptions back to caller of parseString or parseFile - thanks\r
- to a tip from Peter Otten on comp.lang.python.\r
-\r
-- Changed behavior of scanString to avoid infinitely looping on\r
- expressions that match zero-length strings. Prompted by a\r
- question posted by ellisonbg on the wiki.\r
-\r
-- Enhanced classes that take a list of expressions (And, Or, \r
- MatchFirst, and Each) to accept generator expressions also.\r
- This can be useful when generating lists of alternative\r
- expressions, as in this case, where the user wanted to match\r
- any repetitions of '+', '*', '#', or '.', but not mixtures\r
- of them (that is, match '+++', but not '+-+'):\r
- \r
- codes = "+*#."\r
- format = MatchFirst(Word(c) for c in codes)\r
- \r
- Based on a problem posed by Denis Spir on the Python tutor\r
- list.\r
-\r
-- Added new example eval_arith.py, which extends the example\r
- simpleArith.py to actually evaluate the parsed expressions.\r
-\r
-\r
-Version 1.5.1 - October, 2008\r
--------------------------------\r
-- Added new helper method originalTextFor, to replace the use of\r
- the current keepOriginalText parse action. Now instead of \r
- using the parse action, as in:\r
- \r
- fullName = Word(alphas) + Word(alphas)\r
- fullName.setParseAction(keepOriginalText)\r
- \r
- (in this example, we used keepOriginalText to restore any white\r
- space that may have been skipped between the first and last\r
- names)\r
- You can now write:\r
- \r
- fullName = originalTextFor(Word(alphas) + Word(alphas))\r
- \r
- The implementation of originalTextFor is simpler and faster than\r
- keepOriginalText, and does not depend on using the inspect or\r
- imp modules.\r
- \r
-- Added optional parseAll argument to parseFile, to be consistent\r
- with parseAll argument to parseString. Posted by pboucher on the\r
- pyparsing wiki, thanks!\r
-\r
-- Added failOn argument to SkipTo, so that grammars can define\r
- literal strings or pyparsing expressions which, if found in the\r
- skipped text, will cause SkipTo to fail. Useful to prevent \r
- SkipTo from reading past terminating expression. Instigated by\r
- question posed by Aki Niimura on the pyparsing wiki.\r
-\r
-- Fixed bug in nestedExpr if multi-character expressions are given\r
- for nesting delimiters. Patch provided by new pyparsing user,\r
- Hans-Martin Gaudecker - thanks, H-M!\r
-\r
-- Removed dependency on xml.sax.saxutils.escape, and included\r
- internal implementation instead - proposed by Mike Droettboom on\r
- the pyparsing mailing list, thanks Mike! Also fixed erroneous\r
- mapping in replaceHTMLEntity of " to ', now correctly maps\r
- to ". (Also added support for mapping ' to '.)\r
-\r
-- Fixed typo in ParseResults.insert, found by Alejandro Dubrovsky,\r
- good catch!\r
-\r
-- Added __dir__() methods to ParseBaseException and ParseResults,\r
- to support new dir() behavior in Py2.6 and Py3.0. If dir() is\r
- called on a ParseResults object, the returned list will include\r
- the base set of attribute names, plus any results names that are\r
- defined.\r
-\r
-- Fixed bug in ParseResults.asXML(), in which the first named\r
- item within a ParseResults gets reported with an <ITEM> tag \r
- instead of with the correct results name.\r
- \r
-- Fixed bug in '-' error stop, when '-' operator is used inside a \r
- Combine expression.\r
-\r
-- Reverted generator expression to use list comprehension, for \r
- better compatibility with old versions of Python. Reported by\r
- jester/artixdesign on the SourceForge pyparsing discussion list.\r
-\r
-- Fixed bug in parseString(parseAll=True), when the input string\r
- ends with a comment or whitespace.\r
-\r
-- Fixed bug in LineStart and LineEnd that did not recognize any\r
- special whitespace chars defined using ParserElement.setDefault-\r
- WhitespaceChars, found while debugging an issue for Marek Kubica,\r
- thanks for the new test case, Marek!\r
-\r
-- Made Forward class more tolerant of subclassing.\r
-\r
-\r
-Version 1.5.0 - June, 2008\r
---------------------------\r
-This version of pyparsing includes work on two long-standing\r
-FAQ's: support for forcing parsing of the complete input string\r
-(without having to explicitly append StringEnd() to the grammar),\r
-and a method to improve the mechanism of detecting where syntax\r
-errors occur in an input string with various optional and\r
-alternative paths. This release also includes a helper method\r
-to simplify definition of indentation-based grammars. With\r
-these changes (and the past few minor updates), I thought it was\r
-finally time to bump the minor rev number on pyparsing - so\r
-1.5.0 is now available! Read on...\r
-\r
-- AT LAST!!! You can now call parseString and have it raise\r
- an exception if the expression does not parse the entire\r
- input string. This has been an FAQ for a LONG time.\r
-\r
- The parseString method now includes an optional parseAll\r
- argument (default=False). If parseAll is set to True, then\r
- the given parse expression must parse the entire input\r
- string. (This is equivalent to adding StringEnd() to the\r
- end of the expression.) The default value is False to\r
- retain backward compatibility.\r
-\r
- Inspired by MANY requests over the years, most recently by\r
- ecir-hana on the pyparsing wiki!\r
-\r
-- Added new operator '-' for composing grammar sequences. '-'\r
- behaves just like '+' in creating And expressions, but '-'\r
- is used to mark grammar structures that should stop parsing\r
- immediately and report a syntax error, rather than just\r
- backtracking to the last successful parse and trying another\r
- alternative. For instance, running the following code:\r
-\r
- port_definition = Keyword("port") + '=' + Word(nums)\r
- entity_definition = Keyword("entity") + "{" +\r
- Optional(port_definition) + "}"\r
-\r
- entity_definition.parseString("entity { port 100 }")\r
-\r
- pyparsing fails to detect the missing '=' in the port definition.\r
- But, since this expression is optional, pyparsing then proceeds\r
- to try to match the closing '}' of the entity_definition. Not\r
- finding it, pyparsing reports that there was no '}' after the '{'\r
- character. Instead, we would like pyparsing to parse the 'port'\r
- keyword, and if not followed by an equals sign and an integer,\r
- to signal this as a syntax error.\r
-\r
- This can now be done simply by changing the port_definition to:\r
-\r
- port_definition = Keyword("port") - '=' + Word(nums)\r
-\r
- Now after successfully parsing 'port', pyparsing must also find\r
- an equals sign and an integer, or it will raise a fatal syntax\r
- exception.\r
-\r
- By judicious insertion of '-' operators, a pyparsing developer\r
- can have their grammar report much more informative syntax error\r
- messages.\r
-\r
- Patches and suggestions proposed by several contributors on\r
- the pyparsing mailing list and wiki - special thanks to\r
- Eike Welk and Thomas/Poldy on the pyparsing wiki!\r
-\r
-- Added indentedBlock helper method, to encapsulate the parse\r
- actions and indentation stack management needed to keep track of\r
- indentation levels. Use indentedBlock to define grammars for\r
- indentation-based grouping grammars, like Python's.\r
-\r
- indentedBlock takes up to 3 parameters:\r
- - blockStatementExpr - expression defining syntax of statement\r
- that is repeated within the indented block\r
- - indentStack - list created by caller to manage indentation\r
- stack (multiple indentedBlock expressions\r
- within a single grammar should share a common indentStack)\r
- - indent - boolean indicating whether block must be indented\r
- beyond the the current level; set to False for block of\r
- left-most statements (default=True)\r
-\r
- A valid block must contain at least one indented statement.\r
-\r
-- Fixed bug in nestedExpr in which ignored expressions needed\r
- to be set off with whitespace. Reported by Stefaan Himpe,\r
- nice catch!\r
-\r
-- Expanded multiplication of an expression by a tuple, to\r
- accept tuple values of None:\r
- . expr*(n,None) or expr*(n,) is equivalent\r
- to expr*n + ZeroOrMore(expr)\r
- (read as "at least n instances of expr")\r
- . expr*(None,n) is equivalent to expr*(0,n)\r
- (read as "0 to n instances of expr")\r
- . expr*(None,None) is equivalent to ZeroOrMore(expr)\r
- . expr*(1,None) is equivalent to OneOrMore(expr)\r
-\r
- Note that expr*(None,n) does not raise an exception if\r
- more than n exprs exist in the input stream; that is,\r
- expr*(None,n) does not enforce a maximum number of expr\r
- occurrences. If this behavior is desired, then write\r
- expr*(None,n) + ~expr\r
-\r
-- Added None as a possible operator for operatorPrecedence.\r
- None signifies "no operator", as in multiplying m times x\r
- in "y=mx+b".\r
-\r
-- Fixed bug in Each, reported by Michael Ramirez, in which the\r
- order of terms in the Each affected the parsing of the results.\r
- Problem was due to premature grouping of the expressions in\r
- the overall Each during grammar construction, before the\r
- complete Each was defined. Thanks, Michael!\r
-\r
-- Also fixed bug in Each in which Optional's with default values\r
- were not getting the defaults added to the results of the\r
- overall Each expression.\r
-\r
-- Fixed a bug in Optional in which results names were not\r
- assigned if a default value was supplied.\r
-\r
-- Cleaned up Py3K compatibility statements, including exception\r
- construction statements, and better equivalence between _ustr\r
- and basestring, and __nonzero__ and __bool__.\r
-\r
-\r
-Version 1.4.11 - February, 2008\r
--------------------------------\r
-- With help from Robert A. Clark, this version of pyparsing\r
- is compatible with Python 3.0a3. Thanks for the help,\r
- Robert!\r
-\r
-- Added WordStart and WordEnd positional classes, to support\r
- expressions that must occur at the start or end of a word.\r
- Proposed by piranha on the pyparsing wiki, good idea!\r
-\r
-- Added matchOnlyAtCol helper parser action, to simplify\r
- parsing log or data files that have optional fields that are\r
- column dependent. Inspired by a discussion thread with\r
- hubritic on comp.lang.python.\r
-\r
-- Added withAttribute.ANY_VALUE as a match-all value when using\r
- withAttribute. Used to ensure that an attribute is present,\r
- without having to match on the actual attribute value.\r
-\r
-- Added get() method to ParseResults, similar to dict.get().\r
- Suggested by new pyparsing user, Alejandro Dubrovksy, thanks!\r
-\r
-- Added '==' short-cut to see if a given string matches a\r
- pyparsing expression. For instance, you can now write:\r
-\r
- integer = Word(nums)\r
- if "123" == integer:\r
- # do something\r
-\r
- print [ x for x in "123 234 asld".split() if x==integer ]\r
- # prints ['123', '234']\r
-\r
-- Simplified the use of nestedExpr when using an expression for\r
- the opening or closing delimiters. Now the content expression\r
- will not have to explicitly negate closing delimiters. Found\r
- while working with dfinnie on GHOP Task #277, thanks!\r
-\r
-- Fixed bug when defining ignorable expressions that are\r
- later enclosed in a wrapper expression (such as ZeroOrMore,\r
- OneOrMore, etc.) - found while working with Prabhu\r
- Gurumurthy, thanks Prahbu!\r
-\r
-- Fixed bug in withAttribute in which keys were automatically\r
- converted to lowercase, making it impossible to match XML\r
- attributes with uppercase characters in them. Using with-\r
- Attribute requires that you reference attributes in all\r
- lowercase if parsing HTML, and in correct case when parsing\r
- XML.\r
-\r
-- Changed '<<' operator on Forward to return None, since this\r
- is really used as a pseudo-assignment operator, not as a\r
- left-shift operator. By returning None, it is easier to\r
- catch faulty statements such as a << b | c, where precedence\r
- of operations causes the '|' operation to be performed\r
- *after* inserting b into a, so no alternation is actually\r
- implemented. The correct form is a << (b | c). With this\r
- change, an error will be reported instead of silently\r
- clipping the alternative term. (Note: this may break some\r
- existing code, but if it does, the code had a silent bug in\r
- it anyway.) Proposed by wcbarksdale on the pyparsing wiki,\r
- thanks!\r
-\r
-- Several unit tests were added to pyparsing's regression\r
- suite, courtesy of the Google Highly-Open Participation\r
- Contest. Thanks to all who administered and took part in\r
- this event!\r
-\r
-\r
-Version 1.4.10 - December 9, 2007\r
----------------------------------\r
-- Fixed bug introduced in v1.4.8, parse actions were called for\r
- intermediate operator levels, not just the deepest matching\r
- operation level. Again, big thanks to Torsten Marek for\r
- helping isolate this problem!\r
-\r
-\r
-Version 1.4.9 - December 8, 2007\r
---------------------------------\r
-- Added '*' multiplication operator support when creating\r
- grammars, accepting either an integer, or a two-integer\r
- tuple multiplier, as in:\r
- ipAddress = Word(nums) + ('.'+Word(nums))*3\r
- usPhoneNumber = Word(nums) + ('-'+Word(nums))*(1,2)\r
- If multiplying by a tuple, the two integer values represent\r
- min and max multiples. Suggested by Vincent of eToy.com,\r
- great idea, Vincent!\r
-\r
-- Fixed bug in nestedExpr, original version was overly greedy!\r
- Thanks to Michael Ramirez for raising this issue.\r
-\r
-- Fixed internal bug in ParseResults - when an item was deleted,\r
- the key indices were not updated. Thanks to Tim Mitchell for\r
- posting a bugfix patch to the SF bug tracking system!\r
-\r
-- Fixed internal bug in operatorPrecedence - when the results of\r
- a right-associative term were sent to a parse action, the wrong\r
- tokens were sent. Reported by Torsten Marek, nice job!\r
-\r
-- Added pop() method to ParseResults. If pop is called with an\r
- integer or with no arguments, it will use list semantics and\r
- update the ParseResults' list of tokens. If pop is called with\r
- a non-integer (a string, for instance), then it will use dict\r
- semantics and update the ParseResults' internal dict.\r
- Suggested by Donn Ingle, thanks Donn!\r
-\r
-- Fixed quoted string built-ins to accept '\xHH' hex characters\r
- within the string.\r
-\r
-\r
-Version 1.4.8 - October, 2007\r
------------------------------\r
-- Added new helper method nestedExpr to easily create expressions\r
- that parse lists of data in nested parentheses, braces, brackets,\r
- etc.\r
-\r
-- Added withAttribute parse action helper, to simplify creating\r
- filtering parse actions to attach to expressions returned by\r
- makeHTMLTags and makeXMLTags. Use withAttribute to qualify a\r
- starting tag with one or more required attribute values, to avoid\r
- false matches on common tags such as <TD> or <DIV>.\r
-\r
-- Added new examples nested.py and withAttribute.py to demonstrate\r
- the new features.\r
-\r
-- Added performance speedup to grammars using operatorPrecedence,\r
- instigated by Stefan Reichör - thanks for the feedback, Stefan!\r
-\r
-- Fixed bug/typo when deleting an element from a ParseResults by\r
- using the element's results name.\r
-\r
-- Fixed whitespace-skipping bug in wrapper classes (such as Group,\r
- Suppress, Combine, etc.) and when using setDebug(), reported by\r
- new pyparsing user dazzawazza on SourceForge, nice job!\r
-\r
-- Added restriction to prevent defining Word or CharsNotIn expressions\r
- with minimum length of 0 (should use Optional if this is desired),\r
- and enhanced docstrings to reflect this limitation. Issue was\r
- raised by Joey Tallieu, who submitted a patch with a slightly\r
- different solution. Thanks for taking the initiative, Joey, and\r
- please keep submitting your ideas!\r
-\r
-- Fixed bug in makeHTMLTags that did not detect HTML tag attributes\r
- with no '= value' portion (such as "<td nowrap>"), reported by\r
- hamidh on the pyparsing wiki - thanks!\r
-\r
-- Fixed minor bug in makeHTMLTags and makeXMLTags, which did not\r
- accept whitespace in closing tags.\r
-\r
-\r
-Version 1.4.7 - July, 2007\r
---------------------------\r
-- NEW NOTATION SHORTCUT: ParserElement now accepts results names using\r
- a notational shortcut, following the expression with the results name\r
- in parentheses. So this:\r
-\r
- stats = "AVE:" + realNum.setResultsName("average") + \\r
- "MIN:" + realNum.setResultsName("min") + \\r
- "MAX:" + realNum.setResultsName("max")\r
-\r
- can now be written as this:\r
-\r
- stats = "AVE:" + realNum("average") + \\r
- "MIN:" + realNum("min") + \\r
- "MAX:" + realNum("max")\r
-\r
- The intent behind this change is to make it simpler to define results\r
- names for significant fields within the expression, while keeping\r
- the grammar syntax clean and uncluttered.\r
-\r
-- Fixed bug when packrat parsing is enabled, with cached ParseResults\r
- being updated by subsequent parsing. Reported on the pyparsing\r
- wiki by Kambiz, thanks!\r
-\r
-- Fixed bug in operatorPrecedence for unary operators with left\r
- associativity, if multiple operators were given for the same term.\r
-\r
-- Fixed bug in example simpleBool.py, corrected precedence of "and" vs.\r
- "or" operations.\r
-\r
-- Fixed bug in Dict class, in which keys were converted to strings\r
- whether they needed to be or not. Have narrowed this logic to\r
- convert keys to strings only if the keys are ints (which would\r
- confuse __getitem__ behavior for list indexing vs. key lookup).\r
-\r
-- Added ParserElement method setBreak(), which will invoke the pdb\r
- module's set_trace() function when this expression is about to be\r
- parsed.\r
-\r
-- Fixed bug in StringEnd in which reading off the end of the input\r
- string raises an exception - should match. Resolved while\r
- answering a question for Shawn on the pyparsing wiki.\r
-\r
-\r
-Version 1.4.6 - April, 2007\r
----------------------------\r
-- Simplified constructor for ParseFatalException, to support common\r
- exception construction idiom:\r
- raise ParseFatalException, "unexpected text: 'Spanish Inquisition'"\r
-\r
-- Added method getTokensEndLoc(), to be called from within a parse action,\r
- for those parse actions that need both the starting *and* ending\r
- location of the parsed tokens within the input text.\r
-\r
-- Enhanced behavior of keepOriginalText so that named parse fields are\r
- preserved, even though tokens are replaced with the original input\r
- text matched by the current expression. Also, cleaned up the stack\r
- traversal to be more robust. Suggested by Tim Arnold - thanks, Tim!\r
-\r
-- Fixed subtle bug in which countedArray (and similar dynamic\r
- expressions configured in parse actions) failed to match within Or,\r
- Each, FollowedBy, or NotAny. Reported by Ralf Vosseler, thanks for\r
- your patience, Ralf!\r
-\r
-- Fixed Unicode bug in upcaseTokens and downcaseTokens parse actions,\r
- scanString, and default debugging actions; reported (and patch submitted)\r
- by Nikolai Zamkovoi, spasibo!\r
-\r
-- Fixed bug when saving a tuple as a named result. The returned\r
- token list gave the proper tuple value, but accessing the result by\r
- name only gave the first element of the tuple. Reported by\r
- Poromenos, nice catch!\r
-\r
-- Fixed bug in makeHTMLTags/makeXMLTags, which failed to match tag\r
- attributes with namespaces.\r
-\r
-- Fixed bug in SkipTo when setting include=True, to have the skipped-to\r
- tokens correctly included in the returned data. Reported by gunars on\r
- the pyparsing wiki, thanks!\r
-\r
-- Fixed typobug in OnceOnly.reset method, omitted self argument.\r
- Submitted by eike welk, thanks for the lint-picking!\r
-\r
-- Added performance enhancement to Forward class, suggested by\r
- akkartik on the pyparsing Wiki discussion, nice work!\r
-\r
-- Added optional asKeyword to Word constructor, to indicate that the\r
- given word pattern should be matched only as a keyword, that is, it\r
- should only match if it is within word boundaries.\r
-\r
-- Added S-expression parser to examples directory.\r
-\r
-- Added macro substitution example to examples directory.\r
-\r
-- Added holaMundo.py example, excerpted from Marco Alfonso's blog -\r
- muchas gracias, Marco!\r
-\r
-- Modified internal cyclic references in ParseResults to use weakrefs;\r
- this should help reduce the memory footprint of large parsing\r
- programs, at some cost to performance (3-5%). Suggested by bca48150 on\r
- the pyparsing wiki, thanks!\r
-\r
-- Enhanced the documentation describing the vagaries and idiosyncracies\r
- of parsing strings with embedded tabs, and the impact on:\r
- . parse actions\r
- . scanString\r
- . col and line helper functions\r
- (Suggested by eike welk in response to some unexplained inconsistencies\r
- between parsed location and offsets in the input string.)\r
-\r
-- Cleaned up internal decorators to preserve function names,\r
- docstrings, etc.\r
-\r
-\r
-Version 1.4.5 - December, 2006\r
-------------------------------\r
-- Removed debugging print statement from QuotedString class. Sorry\r
- for not stripping this out before the 1.4.4 release!\r
-\r
-- A significant performance improvement, the first one in a while!\r
- For my Verilog parser, this version of pyparsing is about double the\r
- speed - YMMV.\r
-\r
-- Added support for pickling of ParseResults objects. (Reported by\r
- Jeff Poole, thanks Jeff!)\r
-\r
-- Fixed minor bug in makeHTMLTags that did not recognize tag attributes\r
- with embedded '-' or '_' characters. Also, added support for\r
- passing expressions to makeHTMLTags and makeXMLTags, and used this\r
- feature to define the globals anyOpenTag and anyCloseTag.\r
-\r
-- Fixed error in alphas8bit, I had omitted the y-with-umlaut character.\r
-\r
-- Added punc8bit string to complement alphas8bit - it contains all the\r
- non-alphabetic, non-blank 8-bit characters.\r
-\r
-- Added commonHTMLEntity expression, to match common HTML "ampersand"\r
- codes, such as "<", ">", "&", " ", and """. This\r
- expression also defines a results name 'entity', which can be used\r
- to extract the entity field (that is, "lt", "gt", etc.). Also added\r
- built-in parse action replaceHTMLEntity, which can be attached to\r
- commonHTMLEntity to translate "<", ">", "&", " ", and\r
- """ to "<", ">", "&", " ", and "'".\r
-\r
-- Added example, htmlStripper.py, that strips HTML tags and scripts\r
- from HTML pages. It also translates common HTML entities to their\r
- respective characters.\r
-\r
-\r
-Version 1.4.4 - October, 2006\r
--------------------------------\r
-- Fixed traceParseAction decorator to also trap and record exception\r
- returns from parse actions, and to handle parse actions with 0,\r
- 1, 2, or 3 arguments.\r
-\r
-- Enhanced parse action normalization to support using classes as\r
- parse actions; that is, the class constructor is called at parse\r
- time and the __init__ function is called with 0, 1, 2, or 3\r
- arguments. If passing a class as a parse action, the __init__\r
- method must use one of the valid parse action parameter list\r
- formats. (This technique is useful when using pyparsing to compile\r
- parsed text into a series of application objects - see the new\r
- example simpleBool.py.)\r
-\r
-- Fixed bug in ParseResults when setting an item using an integer\r
- index. (Reported by Christopher Lambacher, thanks!)\r
-\r
-- Fixed whitespace-skipping bug, patch submitted by Paolo Losi -\r
- grazie, Paolo!\r
-\r
-- Fixed bug when a Combine contained an embedded Forward expression,\r
- reported by cie on the pyparsing wiki - good catch!\r
-\r
-- Fixed listAllMatches bug, when a listAllMatches result was\r
- nested within another result. (Reported by don pasquale on\r
- comp.lang.python, well done!)\r
-\r
-- Fixed bug in ParseResults items() method, when returning an item\r
- marked as listAllMatches=True\r
-\r
-- Fixed bug in definition of cppStyleComment (and javaStyleComment)\r
- in which '//' line comments were not continued to the next line\r
- if the line ends with a '\'. (Reported by eagle-eyed Ralph\r
- Corderoy!)\r
-\r
-- Optimized re's for cppStyleComment and quotedString for better\r
- re performance - also provided by Ralph Corderoy, thanks!\r
-\r
-- Added new example, indentedGrammarExample.py, showing how to\r
- define a grammar using indentation to show grouping (as Python\r
- does for defining statement nesting). Instigated by an e-mail\r
- discussion with Andrew Dalke, thanks Andrew!\r
-\r
-- Added new helper operatorPrecedence (based on e-mail list discussion\r
- with Ralph Corderoy and Paolo Losi), to facilitate definition of\r
- grammars for expressions with unary and binary operators. For\r
- instance, this grammar defines a 6-function arithmetic expression\r
- grammar, with unary plus and minus, proper operator precedence,and\r
- right- and left-associativity:\r
-\r
- expr = operatorPrecedence( operand,\r
- [("!", 1, opAssoc.LEFT),\r
- ("^", 2, opAssoc.RIGHT),\r
- (oneOf("+ -"), 1, opAssoc.RIGHT),\r
- (oneOf("* /"), 2, opAssoc.LEFT),\r
- (oneOf("+ -"), 2, opAssoc.LEFT),]\r
- )\r
-\r
- Also added example simpleArith.py and simpleBool.py to provide\r
- more detailed code samples using this new helper method.\r
-\r
-- Added new helpers matchPreviousLiteral and matchPreviousExpr, for\r
- creating adaptive parsing expressions that match the same content\r
- as was parsed in a previous parse expression. For instance:\r
-\r
- first = Word(nums)\r
- matchExpr = first + ":" + matchPreviousLiteral(first)\r
-\r
- will match "1:1", but not "1:2". Since this matches at the literal\r
- level, this will also match the leading "1:1" in "1:10".\r
-\r
- In contrast:\r
-\r
- first = Word(nums)\r
- matchExpr = first + ":" + matchPreviousExpr(first)\r
-\r
- will *not* match the leading "1:1" in "1:10"; the expressions are\r
- evaluated first, and then compared, so "1" is compared with "10".\r
-\r
-- Added keepOriginalText parse action. Sometimes pyparsing's\r
- whitespace-skipping leaves out too much whitespace. Adding this\r
- parse action will restore any internal whitespace for a parse\r
- expression. This is especially useful when defining expressions\r
- for scanString or transformString applications.\r
-\r
-- Added __add__ method for ParseResults class, to better support\r
- using Python sum built-in for summing ParseResults objects returned\r
- from scanString.\r
-\r
-- Added reset method for the new OnlyOnce class wrapper for parse\r
- actions (to allow a grammar to be used multiple times).\r
-\r
-- Added optional maxMatches argument to scanString and searchString,\r
- to short-circuit scanning after 'n' expression matches are found.\r
-\r
-\r
-Version 1.4.3 - July, 2006\r
-------------------------------\r
-- Fixed implementation of multiple parse actions for an expression\r
- (added in 1.4.2).\r
- . setParseAction() reverts to its previous behavior, setting\r
- one (or more) actions for an expression, overwriting any\r
- action or actions previously defined\r
- . new method addParseAction() appends one or more parse actions\r
- to the list of parse actions attached to an expression\r
- Now it is harder to accidentally append parse actions to an\r
- expression, when what you wanted to do was overwrite whatever had\r
- been defined before. (Thanks, Jean-Paul Calderone!)\r
-\r
-- Simplified interface to parse actions that do not require all 3\r
- parse action arguments. Very rarely do parse actions require more\r
- than just the parsed tokens, yet parse actions still require all\r
- 3 arguments including the string being parsed and the location\r
- within the string where the parse expression was matched. With this\r
- release, parse actions may now be defined to be called as:\r
- . fn(string,locn,tokens) (the current form)\r
- . fn(locn,tokens)\r
- . fn(tokens)\r
- . fn()\r
- The setParseAction and addParseAction methods will internally decorate\r
- the provided parse actions with compatible wrappers to conform to\r
- the full (string,locn,tokens) argument sequence.\r
-\r
-- REMOVED SUPPORT FOR RETURNING PARSE LOCATION FROM A PARSE ACTION.\r
- I announced this in March, 2004, and gave a final warning in the last\r
- release. Now you can return a tuple from a parse action, and it will\r
- be treated like any other return value (i.e., the tuple will be\r
- substituted for the incoming tokens passed to the parse action,\r
- which is useful when trying to parse strings into tuples).\r
-\r
-- Added setFailAction method, taking a callable function fn that\r
- takes the arguments fn(s,loc,expr,err) where:\r
- . s - string being parsed\r
- . loc - location where expression match was attempted and failed\r
- . expr - the parse expression that failed\r
- . err - the exception thrown\r
- The function returns no values. It may throw ParseFatalException\r
- if it is desired to stop parsing immediately.\r
- (Suggested by peter21081944 on wikispaces.com)\r
-\r
-- Added class OnlyOnce as helper wrapper for parse actions. OnlyOnce\r
- only permits a parse action to be called one time, after which\r
- all subsequent calls throw a ParseException.\r
-\r
-- Added traceParseAction decorator to help debug parse actions.\r
- Simply insert "@traceParseAction" ahead of the definition of your\r
- parse action, and each invocation will be displayed, along with\r
- incoming arguments, and returned value.\r
-\r
-- Fixed bug when copying ParserElements using copy() or\r
- setResultsName(). (Reported by Dan Thill, great catch!)\r
-\r
-- Fixed bug in asXML() where token text contains <, >, and &\r
- characters - generated XML now escapes these as <, > and\r
- &. (Reported by Jacek Sieka, thanks!)\r
-\r
-- Fixed bug in SkipTo() when searching for a StringEnd(). (Reported\r
- by Pete McEvoy, thanks Pete!)\r
-\r
-- Fixed "except Exception" statements, the most critical added as part\r
- of the packrat parsing enhancement. (Thanks, Erick Tryzelaar!)\r
-\r
-- Fixed end-of-string infinite looping on LineEnd and StringEnd\r
- expressions. (Thanks again to Erick Tryzelaar.)\r
-\r
-- Modified setWhitespaceChars to return self, to be consistent with\r
- other ParserElement modifiers. (Suggested by Erick Tryzelaar.)\r
-\r
-- Fixed bug/typo in new ParseResults.dump() method.\r
-\r
-- Fixed bug in searchString() method, in which only the first token of\r
- an expression was returned. searchString() now returns a\r
- ParseResults collection of all search matches.\r
-\r
-- Added example program removeLineBreaks.py, a string transformer that\r
- converts text files with hard line-breaks into one with line breaks\r
- only between paragraphs.\r
-\r
-- Added example program listAllMatches.py, to illustrate using the\r
- listAllMatches option when specifying results names (also shows new\r
- support for passing lists to oneOf).\r
-\r
-- Added example program linenoExample.py, to illustrate using the\r
- helper methods lineno, line, and col, and returning objects from a\r
- parse action.\r
-\r
-- Added example program parseListString.py, to which can parse the\r
- string representation of a Python list back into a true list. Taken\r
- mostly from my PyCon presentation examples, but now with support\r
- for tuple elements, too!\r
-\r
-\r
-\r
-Version 1.4.2 - April 1, 2006 (No foolin'!)\r
--------------------------------------------\r
-- Significant speedup from memoizing nested expressions (a technique\r
- known as "packrat parsing"), thanks to Chris Lesniewski-Laas! Your\r
- mileage may vary, but my Verilog parser almost doubled in speed to\r
- over 600 lines/sec!\r
-\r
- This speedup may break existing programs that use parse actions that\r
- have side-effects. For this reason, packrat parsing is disabled when\r
- you first import pyparsing. To activate the packrat feature, your\r
- program must call the class method ParserElement.enablePackrat(). If\r
- your program uses psyco to "compile as you go", you must call\r
- enablePackrat before calling psyco.full(). If you do not do this,\r
- Python will crash. For best results, call enablePackrat() immediately\r
- after importing pyparsing.\r
-\r
-- Added new helper method countedArray(expr), for defining patterns that\r
- start with a leading integer to indicate the number of array elements,\r
- followed by that many elements, matching the given expr parse\r
- expression. For instance, this two-liner:\r
- wordArray = countedArray(Word(alphas))\r
- print wordArray.parseString("3 Practicality beats purity")[0]\r
- returns the parsed array of words:\r
- ['Practicality', 'beats', 'purity']\r
- The leading token '3' is suppressed, although it is easily obtained\r
- from the length of the returned array.\r
- (Inspired by e-mail discussion with Ralf Vosseler.)\r
-\r
-- Added support for attaching multiple parse actions to a single\r
- ParserElement. (Suggested by Dan "Dang" Griffith - nice idea, Dan!)\r
-\r
-- Added support for asymmetric quoting characters in the recently-added\r
- QuotedString class. Now you can define your own quoted string syntax\r
- like "<<This is a string in double angle brackets.>>". To define\r
- this custom form of QuotedString, your code would define:\r
- dblAngleQuotedString = QuotedString('<<',endQuoteChar='>>')\r
- QuotedString also supports escaped quotes, escape character other\r
- than '\', and multiline.\r
-\r
-- Changed the default value returned internally by Optional, so that\r
- None can be used as a default value. (Suggested by Steven Bethard -\r
- I finally saw the light!)\r
-\r
-- Added dump() method to ParseResults, to make it easier to list out\r
- and diagnose values returned from calling parseString.\r
-\r
-- A new example, a search query string parser, submitted by Steven\r
- Mooij and Rudolph Froger - a very interesting application, thanks!\r
-\r
-- Added an example that parses the BNF in Python's Grammar file, in\r
- support of generating Python grammar documentation. (Suggested by\r
- J H Stovall.)\r
-\r
-- A new example, submitted by Tim Cera, of a flexible parser module,\r
- using a simple config variable to adjust parsing for input formats\r
- that have slight variations - thanks, Tim!\r
-\r
-- Added an example for parsing Roman numerals, showing the capability\r
- of parse actions to "compile" Roman numerals into their integer\r
- values during parsing.\r
-\r
-- Added a new docs directory, for additional documentation or help.\r
- Currently, this includes the text and examples from my recent\r
- presentation at PyCon.\r
-\r
-- Fixed another typo in CaselessKeyword, thanks Stefan Behnel.\r
-\r
-- Expanded oneOf to also accept tuples, not just lists. This really\r
- should be sufficient...\r
-\r
-- Added deprecation warnings when tuple is returned from a parse action.\r
- Looking back, I see that I originally deprecated this feature in March,\r
- 2004, so I'm guessing people really shouldn't have been using this\r
- feature - I'll drop it altogether in the next release, which will\r
- allow users to return a tuple from a parse action (which is really\r
- handy when trying to reconstuct tuples from a tuple string\r
- representation!).\r
-\r
-\r
-Version 1.4.1 - February, 2006\r
-------------------------------\r
-- Converted generator expression in QuotedString class to list\r
- comprehension, to retain compatibility with Python 2.3. (Thanks, Titus\r
- Brown for the heads-up!)\r
-\r
-- Added searchString() method to ParserElement, as an alternative to\r
- using "scanString(instring).next()[0][0]" to search through a string\r
- looking for a substring matching a given parse expression. (Inspired by\r
- e-mail conversation with Dave Feustel.)\r
-\r
-- Modified oneOf to accept lists of strings as well as a single string\r
- of space-delimited literals. (Suggested by Jacek Sieka - thanks!)\r
-\r
-- Removed deprecated use of Upcase in pyparsing test code. (Also caught by\r
- Titus Brown.)\r
-\r
-- Removed lstrip() call from Literal - too aggressive in stripping\r
- whitespace which may be valid for some grammars. (Point raised by Jacek\r
- Sieka). Also, made Literal more robust in the event of passing an empty\r
- string.\r
-\r
-- Fixed bug in replaceWith when returning None.\r
-\r
-- Added cautionary documentation for Forward class when assigning a\r
- MatchFirst expression, as in:\r
- fwdExpr << a | b | c\r
- Precedence of operators causes this to be evaluated as:\r
- (fwdExpr << a) | b | c\r
- thereby leaving b and c out as parseable alternatives. Users must\r
- explicitly group the values inserted into the Forward:\r
- fwdExpr << (a | b | c)\r
- (Suggested by Scot Wilcoxon - thanks, Scot!)\r
-\r
-\r
-Version 1.4 - January 18, 2006\r
-------------------------------\r
-- Added Regex class, to permit definition of complex embedded expressions\r
- using regular expressions. (Enhancement provided by John Beisley, great\r
- job!)\r
-\r
-- Converted implementations of Word, oneOf, quoted string, and comment\r
- helpers to utilize regular expression matching. Performance improvements\r
- in the 20-40% range.\r
-\r
-- Added QuotedString class, to support definition of non-standard quoted\r
- strings (Suggested by Guillaume Proulx, thanks!)\r
-\r
-- Added CaselessKeyword class, to streamline grammars with, well, caseless\r
- keywords (Proposed by Stefan Behnel, thanks!)\r
-\r
-- Fixed bug in SkipTo, when using an ignoreable expression. (Patch provided\r
- by Anonymous, thanks, whoever-you-are!)\r
-\r
-- Fixed typo in NoMatch class. (Good catch, Stefan Behnel!)\r
-\r
-- Fixed minor bug in _makeTags(), using string.printables instead of\r
- pyparsing.printables.\r
-\r
-- Cleaned up some of the expressions created by makeXXXTags helpers, to\r
- suppress extraneous <> characters.\r
-\r
-- Added some grammar definition-time checking to verify that a grammar is\r
- being built using proper ParserElements.\r
-\r
-- Added examples:\r
- . LAparser.py - linear algebra C preprocessor (submitted by Mike Ellis,\r
- thanks Mike!)\r
- . wordsToNum.py - converts word description of a number back to\r
- the original number (such as 'one hundred and twenty three' -> 123)\r
- . updated fourFn.py to support unary minus, added BNF comments\r
-\r
-\r
-Version 1.3.3 - September 12, 2005\r
-----------------------------------\r
-- Improved support for Unicode strings that would be returned using\r
- srange. Added greetingInKorean.py example, for a Korean version of\r
- "Hello, World!" using Unicode. (Thanks, June Kim!)\r
-\r
-- Added 'hexnums' string constant (nums+"ABCDEFabcdef") for defining\r
- hexadecimal value expressions.\r
-\r
-- NOTE: ===THIS CHANGE MAY BREAK EXISTING CODE===\r
- Modified tag and results definitions returned by makeHTMLTags(),\r
- to better support the looseness of HTML parsing. Tags to be\r
- parsed are now caseless, and keys generated for tag attributes are\r
- now converted to lower case.\r
-\r
- Formerly, makeXMLTags("XYZ") would return a tag with results\r
- name of "startXYZ", this has been changed to "startXyz". If this\r
- tag is matched against '<XYZ Abc="1" DEF="2" ghi="3">', the\r
- matched keys formerly would be "Abc", "DEF", and "ghi"; keys are\r
- now converted to lower case, giving keys of "abc", "def", and\r
- "ghi". These changes were made to try to address the lax\r
- case sensitivity agreement between start and end tags in many\r
- HTML pages.\r
-\r
- No changes were made to makeXMLTags(), which assumes more rigorous\r
- parsing rules.\r
-\r
- Also, cleaned up case-sensitivity bugs in closing tags, and\r
- switched to using Keyword instead of Literal class for tags.\r
- (Thanks, Steve Young, for getting me to look at these in more\r
- detail!)\r
-\r
-- Added two helper parse actions, upcaseTokens and downcaseTokens,\r
- which will convert matched text to all uppercase or lowercase,\r
- respectively.\r
-\r
-- Deprecated Upcase class, to be replaced by upcaseTokens parse\r
- action.\r
-\r
-- Converted messages sent to stderr to use warnings module, such as\r
- when constructing a Literal with an empty string, one should use\r
- the Empty() class or the empty helper instead.\r
-\r
-- Added ' ' (space) as an escapable character within a quoted\r
- string.\r
-\r
-- Added helper expressions for common comment types, in addition\r
- to the existing cStyleComment (/*...*/) and htmlStyleComment\r
- (<!-- ... -->)\r
- . dblSlashComment = // ... (to end of line)\r
- . cppStyleComment = cStyleComment or dblSlashComment\r
- . javaStyleComment = cppStyleComment\r
- . pythonStyleComment = # ... (to end of line)\r
-\r
-\r
-\r
-Version 1.3.2 - July 24, 2005\r
------------------------------\r
-- Added Each class as an enhanced version of And. 'Each' requires\r
- that all given expressions be present, but may occur in any order.\r
- Special handling is provided to group ZeroOrMore and OneOrMore\r
- elements that occur out-of-order in the input string. You can also\r
- construct 'Each' objects by joining expressions with the '&'\r
- operator. When using the Each class, results names are strongly\r
- recommended for accessing the matched tokens. (Suggested by Pradam\r
- Amini - thanks, Pradam!)\r
-\r
-- Stricter interpretation of 'max' qualifier on Word elements. If the\r
- 'max' attribute is specified, matching will fail if an input field\r
- contains more than 'max' consecutive body characters. For example,\r
- previously, Word(nums,max=3) would match the first three characters\r
- of '0123456', returning '012' and continuing parsing at '3'. Now,\r
- when constructed using the max attribute, Word will raise an\r
- exception with this string.\r
-\r
-- Cleaner handling of nested dictionaries returned by Dict. No\r
- longer necessary to dereference sub-dictionaries as element [0] of\r
- their parents.\r
- === NOTE: THIS CHANGE MAY BREAK SOME EXISTING CODE, BUT ONLY IF\r
- PARSING NESTED DICTIONARIES USING THE LITTLE-USED DICT CLASS ===\r
- (Prompted by discussion thread on the Python Tutor list, with\r
- contributions from Danny Yoo, Kent Johnson, and original post by\r
- Liam Clarke - thanks all!)\r
-\r
-\r
-\r
-Version 1.3.1 - June, 2005\r
-----------------------------------\r
-- Added markInputline() method to ParseException, to display the input\r
- text line location of the parsing exception. (Thanks, Stefan Behnel!)\r
-\r
-- Added setDefaultKeywordChars(), so that Keyword definitions using a\r
- custom keyword character set do not all need to add the keywordChars\r
- constructor argument (similar to setDefaultWhitespaceChars()).\r
- (suggested by rzhanka on the SourceForge pyparsing forum.)\r
-\r
-- Simplified passing debug actions to setDebugAction(). You can now\r
- pass 'None' for a debug action if you want to take the default\r
- debug behavior. To suppress a particular debug action, you can pass\r
- the pyparsing method nullDebugAction.\r
-\r
-- Refactored parse exception classes, moved all behavior to\r
- ParseBaseException, and the former ParseException is now a subclass of\r
- ParseBaseException. Added a second subclass, ParseFatalException, as\r
- a subclass of ParseBaseException. User-defined parse actions can raise\r
- ParseFatalException if a data inconsistency is detected (such as a\r
- begin-tag/end-tag mismatch), and this will stop all parsing immediately.\r
- (Inspired by e-mail thread with Michele Petrazzo - thanks, Michelle!)\r
-\r
-- Added helper methods makeXMLTags and makeHTMLTags, that simplify the\r
- definition of XML or HTML tag parse expressions for a given tagname.\r
- Both functions return a pair of parse expressions, one for the opening\r
- tag (that is, '<tagname>') and one for the closing tag ('</tagname>').\r
- The opening tagame also recognizes any attribute definitions that have\r
- been included in the opening tag, as well as an empty tag (one with a\r
- trailing '/', as in '<BODY/>' which is equivalent to '<BODY></BODY>').\r
- makeXMLTags uses stricter XML syntax for attributes, requiring that they\r
- be enclosed in double quote characters - makeHTMLTags is more lenient,\r
- and accepts single-quoted strings or any contiguous string of characters\r
- up to the next whitespace character or '>' character. Attributes can\r
- be retrieved as dictionary or attribute values of the returned results\r
- from the opening tag.\r
-\r
-- Added example minimath2.py, a refinement on fourFn.py that adds\r
- an interactive session and support for variables. (Thanks, Steven Siew!)\r
-\r
-- Added performance improvement, up to 20% reduction! (Found while working\r
- with Wolfgang Borgert on performance tuning of his TTCN3 parser.)\r
-\r
-- And another performance improvement, up to 25%, when using scanString!\r
- (Found while working with Henrik Westlund on his C header file scanner.)\r
-\r
-- Updated UML diagrams to reflect latest class/method changes.\r
-\r
-\r
-Version 1.3 - March, 2005\r
-----------------------------------\r
-- Added new Keyword class, as a special form of Literal. Keywords\r
- must be followed by whitespace or other non-keyword characters, to\r
- distinguish them from variables or other identifiers that just\r
- happen to start with the same characters as a keyword. For instance,\r
- the input string containing "ifOnlyIfOnly" will match a Literal("if")\r
- at the beginning and in the middle, but will fail to match a\r
- Keyword("if"). Keyword("if") will match only strings such as "if only"\r
- or "if(only)". (Proposed by Wolfgang Borgert, and Berteun Damman\r
- separately requested this on comp.lang.python - great idea!)\r
-\r
-- Added setWhitespaceChars() method to override the characters to be\r
- skipped as whitespace before matching a particular ParseElement. Also\r
- added the class-level method setDefaultWhitespaceChars(), to allow\r
- users to override the default set of whitespace characters (space,\r
- tab, newline, and return) for all subsequently defined ParseElements.\r
- (Inspired by Klaas Hofstra's inquiry on the Sourceforge pyparsing\r
- forum.)\r
-\r
-- Added helper parse actions to support some very common parse\r
- action use cases:\r
- . replaceWith(replStr) - replaces the matching tokens with the\r
- provided replStr replacement string; especially useful with\r
- transformString()\r
- . removeQuotes - removes first and last character from string enclosed\r
- in quotes (note - NOT the same as the string strip() method, as only\r
- a single character is removed at each end)\r
-\r
-- Added copy() method to ParseElement, to make it easier to define\r
- different parse actions for the same basic parse expression. (Note, copy\r
- is implicitly called when using setResultsName().)\r
-\r
-\r
- (The following changes were posted to CVS as Version 1.2.3 -\r
- October-December, 2004)\r
-\r
-- Added support for Unicode strings in creating grammar definitions.\r
- (Big thanks to Gavin Panella!)\r
-\r
-- Added constant alphas8bit to include the following 8-bit characters:\r
- ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ\r
-\r
-- Added srange() function to simplify definition of Word elements, using\r
- regexp-like '[A-Za-z0-9]' syntax. This also simplifies referencing\r
- common 8-bit characters.\r
-\r
-- Fixed bug in Dict when a single element Dict was embedded within another\r
- Dict. (Thanks Andy Yates for catching this one!)\r
-\r
-- Added 'formatted' argument to ParseResults.asXML(). If set to False,\r
- suppresses insertion of whitespace for pretty-print formatting. Default\r
- equals True for backward compatibility.\r
-\r
-- Added setDebugActions() function to ParserElement, to allow user-defined\r
- debugging actions.\r
-\r
-- Added support for escaped quotes (either in \', \", or doubled quote\r
- form) to the predefined expressions for quoted strings. (Thanks, Ero\r
- Carrera!)\r
-\r
-- Minor performance improvement (~5%) converting "char in string" tests\r
- to "char in dict". (Suggested by Gavin Panella, cool idea!)\r
-\r
-\r
-Version 1.2.2 - September 27, 2004\r
-----------------------------------\r
-- Modified delimitedList to accept an expression as the delimiter, instead\r
- of only accepting strings.\r
-\r
-- Modified ParseResults, to convert integer field keys to strings (to\r
- avoid confusion with list access).\r
-\r
-- Modified Combine, to convert all embedded tokens to strings before\r
- combining.\r
-\r
-- Fixed bug in MatchFirst in which parse actions would be called for\r
- expressions that only partially match. (Thanks, John Hunter!)\r
-\r
-- Fixed bug in fourFn.py example that fixes right-associativity of ^\r
- operator. (Thanks, Andrea Griffini!)\r
-\r
-- Added class FollowedBy(expression), to look ahead in the input string\r
- without consuming tokens.\r
-\r
-- Added class NoMatch that never matches any input. Can be useful in\r
- debugging, and in very specialized grammars.\r
-\r
-- Added example pgn.py, for parsing chess game files stored in Portable\r
- Game Notation. (Thanks, Alberto Santini!)\r
-\r
-\r
-Version 1.2.1 - August 19, 2004\r
--------------------------------\r
-- Added SkipTo(expression) token type, simplifying grammars that only\r
- want to specify delimiting expressions, and want to match any characters\r
- between them.\r
-\r
-- Added helper method dictOf(key,value), making it easier to work with\r
- the Dict class. (Inspired by Pavel Volkovitskiy, thanks!).\r
-\r
-- Added optional argument listAllMatches (default=False) to\r
- setResultsName(). Setting listAllMatches to True overrides the default\r
- modal setting of tokens to results names; instead, the results name\r
- acts as an accumulator for all matching tokens within the local\r
- repetition group. (Suggested by Amaury Le Leyzour - thanks!)\r
-\r
-- Fixed bug in ParseResults, throwing exception when trying to extract\r
- slice, or make a copy using [:]. (Thanks, Wilson Fowlie!)\r
-\r
-- Fixed bug in transformString() when the input string contains <TAB>'s\r
- (Thanks, Rick Walia!).\r
-\r
-- Fixed bug in returning tokens from un-Grouped And's, Or's and\r
- MatchFirst's, where too many tokens would be included in the results,\r
- confounding parse actions and returned results.\r
-\r
-- Fixed bug in naming ParseResults returned by And's, Or's, and Match\r
- First's.\r
-\r
-- Fixed bug in LineEnd() - matching this token now correctly consumes\r
- and returns the end of line "\n".\r
-\r
-- Added a beautiful example for parsing Mozilla calendar files (Thanks,\r
- Petri Savolainen!).\r
-\r
-- Added support for dynamically modifying Forward expressions during\r
- parsing.\r
-\r
-\r
-Version 1.2 - 20 June 2004\r
---------------------------\r
-- Added definition for htmlComment to help support HTML scanning and\r
- parsing.\r
-\r
-- Fixed bug in generating XML for Dict classes, in which trailing item was\r
- duplicated in the output XML.\r
-\r
-- Fixed release bug in which scanExamples.py was omitted from release\r
- files.\r
-\r
-- Fixed bug in transformString() when parse actions are not defined on the\r
- outermost parser element.\r
-\r
-- Added example urlExtractor.py, as another example of using scanString\r
- and parse actions.\r
-\r
-\r
-Version 1.2beta3 - 4 June 2004\r
-------------------------------\r
-- Added White() token type, analogous to Word, to match on whitespace\r
- characters. Use White in parsers with significant whitespace (such as\r
- configuration file parsers that use indentation to indicate grouping).\r
- Construct White with a string containing the whitespace characters to be\r
- matched. Similar to Word, White also takes optional min, max, and exact\r
- parameters.\r
-\r
-- As part of supporting whitespace-signficant parsing, added parseWithTabs()\r
- method to ParserElement, to override the default behavior in parseString\r
- of automatically expanding tabs to spaces. To retain tabs during\r
- parsing, call parseWithTabs() before calling parseString(), parseFile() or\r
- scanString(). (Thanks, Jean-Guillaume Paradis for catching this, and for\r
- your suggestions on whitespace-significant parsing.)\r
-\r
-- Added transformString() method to ParseElement, as a complement to\r
- scanString(). To use transformString, define a grammar and attach a parse\r
- action to the overall grammar that modifies the returned token list.\r
- Invoking transformString() on a target string will then scan for matches,\r
- and replace the matched text patterns according to the logic in the parse\r
- action. transformString() returns the resulting transformed string.\r
- (Note: transformString() does *not* automatically expand tabs to spaces.)\r
- Also added scanExamples.py to the examples directory to show sample uses of\r
- scanString() and transformString().\r
-\r
-- Removed group() method that was introduced in beta2. This turns out NOT to\r
- be equivalent to nesting within a Group() object, and I'd prefer not to sow\r
- more seeds of confusion.\r
-\r
-- Fixed behavior of asXML() where tags for groups were incorrectly duplicated.\r
- (Thanks, Brad Clements!)\r
-\r
-- Changed beta version message to display to stderr instead of stdout, to\r
- make asXML() easier to use. (Thanks again, Brad.)\r
-\r
-\r
-Version 1.2beta2 - 19 May 2004\r
-------------------------------\r
-- *** SIMPLIFIED API *** - Parse actions that do not modify the list of tokens\r
- no longer need to return a value. This simplifies those parse actions that\r
- use the list of tokens to update a counter or record or display some of the\r
- token content; these parse actions can simply end without having to specify\r
- 'return toks'.\r
-\r
-- *** POSSIBLE API INCOMPATIBILITY *** - Fixed CaselessLiteral bug, where the\r
- returned token text was not the original string (as stated in the docs),\r
- but the original string converted to upper case. (Thanks, Dang Griffith!)\r
- **NOTE: this may break some code that relied on this erroneous behavior.\r
- Users should scan their code for uses of CaselessLiteral.**\r
-\r
-- *** POSSIBLE CODE INCOMPATIBILITY *** - I have renamed the internal\r
- attributes on ParseResults from 'dict' and 'list' to '__tokdict' and\r
- '__toklist', to avoid collisions with user-defined data fields named 'dict'\r
- and 'list'. Any client code that accesses these attributes directly will\r
- need to be modified. Hopefully the implementation of methods such as keys(),\r
- items(), len(), etc. on ParseResults will make such direct attribute\r
- accessess unnecessary.\r
-\r
-- Added asXML() method to ParseResults. This greatly simplifies the process\r
- of parsing an input data file and generating XML-structured data.\r
-\r
-- Added getName() method to ParseResults. This method is helpful when\r
- a grammar specifies ZeroOrMore or OneOrMore of a MatchFirst or Or\r
- expression, and the parsing code needs to know which expression matched.\r
- (Thanks, Eric van der Vlist, for this idea!)\r
-\r
-- Added items() and values() methods to ParseResults, to better support using\r
- ParseResults as a Dictionary.\r
-\r
-- Added parseFile() as a convenience function to parse the contents of an\r
- entire text file. Accepts either a file name or a file object. (Thanks\r
- again, Dang!)\r
-\r
-- Added group() method to And, Or, and MatchFirst, as a short-cut alternative\r
- to enclosing a construct inside a Group object.\r
-\r
-- Extended fourFn.py to support exponentiation, and simple built-in functions.\r
-\r
-- Added EBNF parser to examples, including a demo where it parses its own\r
- EBNF! (Thanks to Seo Sanghyeon!)\r
-\r
-- Added Delphi Form parser to examples, dfmparse.py, plus a couple of\r
- sample Delphi forms as tests. (Well done, Dang!)\r
-\r
-- Another performance speedup, 5-10%, inspired by Dang! Plus about a 20%\r
- speedup, by pre-constructing and cacheing exception objects instead of\r
- constructing them on the fly.\r
-\r
-- Fixed minor bug when specifying oneOf() with 'caseless=True'.\r
-\r
-- Cleaned up and added a few more docstrings, to improve the generated docs.\r
-\r
-\r
-Version 1.1.2 - 21 Mar 2004\r
----------------------------\r
-- Fixed minor bug in scanString(), so that start location is at the start of\r
- the matched tokens, not at the start of the whitespace before the matched\r
- tokens.\r
-\r
-- Inclusion of HTML documentation, generated using Epydoc. Reformatted some\r
- doc strings to better generate readable docs. (Beautiful work, Ed Loper,\r
- thanks for Epydoc!)\r
-\r
-- Minor performance speedup, 5-15%\r
-\r
-- And on a process note, I've used the unittest module to define a series of\r
- unit tests, to help avoid the embarrassment of the version 1.1 snafu.\r
-\r
-\r
-Version 1.1.1 - 6 Mar 2004\r
---------------------------\r
-- Fixed critical bug introduced in 1.1, which broke MatchFirst(!) token\r
- matching.\r
- **THANK YOU, SEO SANGHYEON!!!**\r
-\r
-- Added "from future import __generators__" to permit running under\r
- pre-Python 2.3.\r
-\r
-- Added example getNTPservers.py, showing how to use pyparsing to extract\r
- a text pattern from the HTML of a web page.\r
-\r
-\r
-Version 1.1 - 3 Mar 2004\r
--------------------------\r
-- ***Changed API*** - While testing out parse actions, I found that the value\r
- of loc passed in was not the starting location of the matched tokens, but\r
- the location of the next token in the list. With this version, the location\r
- passed to the parse action is now the starting location of the tokens that\r
- matched.\r
-\r
- A second part of this change is that the return value of parse actions no\r
- longer needs to return a tuple containing both the location and the parsed\r
- tokens (which may optionally be modified); parse actions only need to return\r
- the list of tokens. Parse actions that return a tuple are deprecated; they\r
- will still work properly for conversion/compatibility, but this behavior will\r
- be removed in a future version.\r
-\r
-- Added validate() method, to help diagnose infinite recursion in a grammar tree.\r
- validate() is not 100% fool-proof, but it can help track down nasty infinite\r
- looping due to recursively referencing the same grammar construct without some\r
- intervening characters.\r
-\r
-- Cleaned up default listing of some parse element types, to more closely match\r
- ordinary BNF. Instead of the form <classname>:[contents-list], some changes\r
- are:\r
- . And(token1,token2,token3) is "{ token1 token2 token3 }"\r
- . Or(token1,token2,token3) is "{ token1 ^ token2 ^ token3 }"\r
- . MatchFirst(token1,token2,token3) is "{ token1 | token2 | token3 }"\r
- . Optional(token) is "[ token ]"\r
- . OneOrMore(token) is "{ token }..."\r
- . ZeroOrMore(token) is "[ token ]..."\r
-\r
-- Fixed an infinite loop in oneOf if the input string contains a duplicated\r
- option. (Thanks Brad Clements)\r
-\r
-- Fixed a bug when specifying a results name on an Optional token. (Thanks\r
- again, Brad Clements)\r
-\r
-- Fixed a bug introduced in 1.0.6 when I converted quotedString to use\r
- CharsNotIn; I accidentally permitted quoted strings to span newlines. I have\r
- fixed this in this version to go back to the original behavior, in which\r
- quoted strings do *not* span newlines.\r
-\r
-- Fixed minor bug in HTTP server log parser. (Thanks Jim Richardson)\r
-\r
-\r
-Version 1.0.6 - 13 Feb 2004\r
-----------------------------\r
-- Added CharsNotIn class (Thanks, Lee SangYeong). This is the opposite of\r
- Word, in that it is constructed with a set of characters *not* to be matched.\r
- (This enhancement also allowed me to clean up and simplify some of the\r
- definitions for quoted strings, cStyleComment, and restOfLine.)\r
-\r
-- **MINOR API CHANGE** - Added joinString argument to the __init__ method of\r
- Combine (Thanks, Thomas Kalka). joinString defaults to "", but some\r
- applications might choose some other string to use instead, such as a blank\r
- or newline. joinString was inserted as the second argument to __init__,\r
- so if you have code that specifies an adjacent value, without using\r
- 'adjacent=', this code will break.\r
-\r
-- Modified LineStart to recognize the start of an empty line.\r
-\r
-- Added optional caseless flag to oneOf(), to create a list of CaselessLiteral\r
- tokens instead of Literal tokens.\r
-\r
-- Added some enhancements to the SQL example:\r
- . Oracle-style comments (Thanks to Harald Armin Massa)\r
- . simple WHERE clause\r
-\r
-- Minor performance speedup - 5-15%\r
-\r
-\r
-Version 1.0.5 - 19 Jan 2004\r
-----------------------------\r
-- Added scanString() generator method to ParseElement, to support regex-like\r
- pattern-searching\r
-\r
-- Added items() list to ParseResults, to return named results as a\r
- list of (key,value) pairs\r
-\r
-- Fixed memory overflow in asList() for deeply nested ParseResults (Thanks,\r
- Sverrir Valgeirsson)\r
-\r
-- Minor performance speedup - 10-15%\r
-\r
-\r
-Version 1.0.4 - 8 Jan 2004\r
----------------------------\r
-- Added positional tokens StringStart, StringEnd, LineStart, and LineEnd\r
-\r
-- Added commaSeparatedList to pre-defined global token definitions; also added\r
- commasep.py to the examples directory, to demonstrate the differences between\r
- parsing comma-separated data and simple line-splitting at commas\r
-\r
-- Minor API change: delimitedList does not automatically enclose the\r
- list elements in a Group, but makes this the responsibility of the caller;\r
- also, if invoked using 'combine=True', the list delimiters are also included\r
- in the returned text (good for scoped variables, such as a.b.c or a::b::c, or\r
- for directory paths such as a/b/c)\r
-\r
-- Performance speed-up again, 30-40%\r
-\r
-- Added httpServerLogParser.py to examples directory, as this is\r
- a common parsing task\r
-\r
-\r
-Version 1.0.3 - 23 Dec 2003\r
----------------------------\r
-- Performance speed-up again, 20-40%\r
-\r
-- Added Python distutils installation setup.py, etc. (thanks, Dave Kuhlman)\r
-\r
-\r
-Version 1.0.2 - 18 Dec 2003\r
----------------------------\r
-- **NOTE: Changed API again!!!** (for the last time, I hope)\r
-\r
- + Renamed module from parsing to pyparsing, to better reflect Python\r
- linkage.\r
-\r
-- Also added dictExample.py to examples directory, to illustrate\r
- usage of the Dict class.\r
-\r
-\r
-Version 1.0.1 - 17 Dec 2003\r
----------------------------\r
-- **NOTE: Changed API!**\r
-\r
- + Renamed 'len' argument on Word.__init__() to 'exact'\r
-\r
-- Performance speed-up, 10-30%\r
-\r
-\r
-Version 1.0.0 - 15 Dec 2003\r
----------------------------\r
-- Initial public release\r
-\r
-Version 0.1.1 thru 0.1.17 - October-November, 2003\r
---------------------------------------------------\r
-- initial development iterations:\r
- - added Dict, Group\r
- - added helper methods oneOf, delimitedList\r
- - added helpers quotedString (and double and single), restOfLine, cStyleComment\r
- - added MatchFirst as an alternative to the slower Or\r
- - added UML class diagram\r
- - fixed various logic bugs\r
+++ /dev/null
-<?xml version="1.0" encoding="utf-8" ?>\r
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\r
-<head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r
-<meta name="generator" content="Docutils 0.8: http://docutils.sourceforge.net/" />\r
-<title>Using the pyparsing module</title>\r
-<meta name="author" content="Paul McGuire" />\r
-<meta name="date" content="June, 2011" />\r
-<meta name="copyright" content="Copyright © 2003-2011 Paul McGuire." />\r
-<style type="text/css">\r
-\r
-/*\r
-:Author: David Goodger (goodger@python.org)\r
-:Id: $Id: html4css1.css 6387 2010-08-13 12:23:41Z milde $\r
-:Copyright: This stylesheet has been placed in the public domain.\r
-\r
-Default cascading style sheet for the HTML output of Docutils.\r
-\r
-See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to\r
-customize this style sheet.\r
-*/\r
-\r
-/* used to remove borders from tables and images */\r
-.borderless, table.borderless td, table.borderless th {\r
- border: 0 }\r
-\r
-table.borderless td, table.borderless th {\r
- /* Override padding for "table.docutils td" with "! important".\r
- The right padding separates the table cells. */\r
- padding: 0 0.5em 0 0 ! important }\r
-\r
-.first {\r
- /* Override more specific margin styles with "! important". */\r
- margin-top: 0 ! important }\r
-\r
-.last, .with-subtitle {\r
- margin-bottom: 0 ! important }\r
-\r
-.hidden {\r
- display: none }\r
-\r
-a.toc-backref {\r
- text-decoration: none ;\r
- color: black }\r
-\r
-blockquote.epigraph {\r
- margin: 2em 5em ; }\r
-\r
-dl.docutils dd {\r
- margin-bottom: 0.5em }\r
-\r
-object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {\r
- overflow: hidden;\r
-}\r
-\r
-/* Uncomment (and remove this text!) to get bold-faced definition list terms\r
-dl.docutils dt {\r
- font-weight: bold }\r
-*/\r
-\r
-div.abstract {\r
- margin: 2em 5em }\r
-\r
-div.abstract p.topic-title {\r
- font-weight: bold ;\r
- text-align: center }\r
-\r
-div.admonition, div.attention, div.caution, div.danger, div.error,\r
-div.hint, div.important, div.note, div.tip, div.warning {\r
- margin: 2em ;\r
- border: medium outset ;\r
- padding: 1em }\r
-\r
-div.admonition p.admonition-title, div.hint p.admonition-title,\r
-div.important p.admonition-title, div.note p.admonition-title,\r
-div.tip p.admonition-title {\r
- font-weight: bold ;\r
- font-family: sans-serif }\r
-\r
-div.attention p.admonition-title, div.caution p.admonition-title,\r
-div.danger p.admonition-title, div.error p.admonition-title,\r
-div.warning p.admonition-title {\r
- color: red ;\r
- font-weight: bold ;\r
- font-family: sans-serif }\r
-\r
-/* Uncomment (and remove this text!) to get reduced vertical space in\r
- compound paragraphs.\r
-div.compound .compound-first, div.compound .compound-middle {\r
- margin-bottom: 0.5em }\r
-\r
-div.compound .compound-last, div.compound .compound-middle {\r
- margin-top: 0.5em }\r
-*/\r
-\r
-div.dedication {\r
- margin: 2em 5em ;\r
- text-align: center ;\r
- font-style: italic }\r
-\r
-div.dedication p.topic-title {\r
- font-weight: bold ;\r
- font-style: normal }\r
-\r
-div.figure {\r
- margin-left: 2em ;\r
- margin-right: 2em }\r
-\r
-div.footer, div.header {\r
- clear: both;\r
- font-size: smaller }\r
-\r
-div.line-block {\r
- display: block ;\r
- margin-top: 1em ;\r
- margin-bottom: 1em }\r
-\r
-div.line-block div.line-block {\r
- margin-top: 0 ;\r
- margin-bottom: 0 ;\r
- margin-left: 1.5em }\r
-\r
-div.sidebar {\r
- margin: 0 0 0.5em 1em ;\r
- border: medium outset ;\r
- padding: 1em ;\r
- background-color: #ffffee ;\r
- width: 40% ;\r
- float: right ;\r
- clear: right }\r
-\r
-div.sidebar p.rubric {\r
- font-family: sans-serif ;\r
- font-size: medium }\r
-\r
-div.system-messages {\r
- margin: 5em }\r
-\r
-div.system-messages h1 {\r
- color: red }\r
-\r
-div.system-message {\r
- border: medium outset ;\r
- padding: 1em }\r
-\r
-div.system-message p.system-message-title {\r
- color: red ;\r
- font-weight: bold }\r
-\r
-div.topic {\r
- margin: 2em }\r
-\r
-h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,\r
-h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {\r
- margin-top: 0.4em }\r
-\r
-h1.title {\r
- text-align: center }\r
-\r
-h2.subtitle {\r
- text-align: center }\r
-\r
-hr.docutils {\r
- width: 75% }\r
-\r
-img.align-left, .figure.align-left, object.align-left {\r
- clear: left ;\r
- float: left ;\r
- margin-right: 1em }\r
-\r
-img.align-right, .figure.align-right, object.align-right {\r
- clear: right ;\r
- float: right ;\r
- margin-left: 1em }\r
-\r
-img.align-center, .figure.align-center, object.align-center {\r
- display: block;\r
- margin-left: auto;\r
- margin-right: auto;\r
-}\r
-\r
-.align-left {\r
- text-align: left }\r
-\r
-.align-center {\r
- clear: both ;\r
- text-align: center }\r
-\r
-.align-right {\r
- text-align: right }\r
-\r
-/* reset inner alignment in figures */\r
-div.align-right {\r
- text-align: left }\r
-\r
-/* div.align-center * { */\r
-/* text-align: left } */\r
-\r
-ol.simple, ul.simple {\r
- margin-bottom: 1em }\r
-\r
-ol.arabic {\r
- list-style: decimal }\r
-\r
-ol.loweralpha {\r
- list-style: lower-alpha }\r
-\r
-ol.upperalpha {\r
- list-style: upper-alpha }\r
-\r
-ol.lowerroman {\r
- list-style: lower-roman }\r
-\r
-ol.upperroman {\r
- list-style: upper-roman }\r
-\r
-p.attribution {\r
- text-align: right ;\r
- margin-left: 50% }\r
-\r
-p.caption {\r
- font-style: italic }\r
-\r
-p.credits {\r
- font-style: italic ;\r
- font-size: smaller }\r
-\r
-p.label {\r
- white-space: nowrap }\r
-\r
-p.rubric {\r
- font-weight: bold ;\r
- font-size: larger ;\r
- color: maroon ;\r
- text-align: center }\r
-\r
-p.sidebar-title {\r
- font-family: sans-serif ;\r
- font-weight: bold ;\r
- font-size: larger }\r
-\r
-p.sidebar-subtitle {\r
- font-family: sans-serif ;\r
- font-weight: bold }\r
-\r
-p.topic-title {\r
- font-weight: bold }\r
-\r
-pre.address {\r
- margin-bottom: 0 ;\r
- margin-top: 0 ;\r
- font: inherit }\r
-\r
-pre.literal-block, pre.doctest-block {\r
- margin-left: 2em ;\r
- margin-right: 2em }\r
-\r
-span.classifier {\r
- font-family: sans-serif ;\r
- font-style: oblique }\r
-\r
-span.classifier-delimiter {\r
- font-family: sans-serif ;\r
- font-weight: bold }\r
-\r
-span.interpreted {\r
- font-family: sans-serif }\r
-\r
-span.option {\r
- white-space: nowrap }\r
-\r
-span.pre {\r
- white-space: pre }\r
-\r
-span.problematic {\r
- color: red }\r
-\r
-span.section-subtitle {\r
- /* font-size relative to parent (h1..h6 element) */\r
- font-size: 80% }\r
-\r
-table.citation {\r
- border-left: solid 1px gray;\r
- margin-left: 1px }\r
-\r
-table.docinfo {\r
- margin: 2em 4em }\r
-\r
-table.docutils {\r
- margin-top: 0.5em ;\r
- margin-bottom: 0.5em }\r
-\r
-table.footnote {\r
- border-left: solid 1px black;\r
- margin-left: 1px }\r
-\r
-table.docutils td, table.docutils th,\r
-table.docinfo td, table.docinfo th {\r
- padding-left: 0.5em ;\r
- padding-right: 0.5em ;\r
- vertical-align: top }\r
-\r
-table.docutils th.field-name, table.docinfo th.docinfo-name {\r
- font-weight: bold ;\r
- text-align: left ;\r
- white-space: nowrap ;\r
- padding-left: 0 }\r
-\r
-h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,\r
-h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {\r
- font-size: 100% }\r
-\r
-ul.auto-toc {\r
- list-style-type: none }\r
-\r
-</style>\r
-</head>\r
-<body>\r
-<div class="document" id="using-the-pyparsing-module">\r
-<h1 class="title">Using the pyparsing module</h1>\r
-<table class="docinfo" frame="void" rules="none">\r
-<col class="docinfo-name" />\r
-<col class="docinfo-content" />\r
-<tbody valign="top">\r
-<tr><th class="docinfo-name">Author:</th>\r
-<td>Paul McGuire</td></tr>\r
-<tr><th class="docinfo-name">Address:</th>\r
-<td><pre class="address">\r
-<a class="first last reference external" href="mailto:ptmcg@users.sourceforge.net">ptmcg@users.sourceforge.net</a>\r
-</pre>\r
-</td></tr>\r
-<tr><th class="docinfo-name">Revision:</th>\r
-<td>2.0.1</td></tr>\r
-<tr><th class="docinfo-name">Date:</th>\r
-<td>July, 2013</td></tr>\r
-<tr><th class="docinfo-name">Copyright:</th>\r
-<td>Copyright © 2003-2013 Paul McGuire.</td></tr>\r
-</tbody>\r
-</table>\r
-<table class="docutils field-list" frame="void" rules="none">\r
-<col class="field-name" />\r
-<col class="field-body" />\r
-<tbody valign="top">\r
-<tr class="field"><th class="field-name">abstract:</th><td class="field-body">This document provides how-to instructions for the\r
-pyparsing library, an easy-to-use Python module for constructing\r
-and executing basic text parsers. The pyparsing module is useful\r
-for evaluating user-definable\r
-expressions, processing custom application language commands, or\r
-extracting data from formatted reports.</td>\r
-</tr>\r
-</tbody>\r
-</table>\r
-<div class="contents topic" id="contents">\r
-<p class="topic-title first">Contents</p>\r
-<ul class="auto-toc simple">\r
-<li><a class="reference internal" href="#steps-to-follow" id="id1">1 Steps to follow</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#hello-world" id="id2">1.1 Hello, World!</a></li>\r
-<li><a class="reference internal" href="#usage-notes" id="id3">1.2 Usage notes</a></li>\r
-</ul>\r
-</li>\r
-<li><a class="reference internal" href="#classes" id="id4">2 Classes</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#classes-in-the-pyparsing-module" id="id5">2.1 Classes in the pyparsing module</a></li>\r
-<li><a class="reference internal" href="#basic-parserelement-subclasses" id="id6">2.2 Basic ParserElement subclasses</a></li>\r
-<li><a class="reference internal" href="#expression-subclasses" id="id7">2.3 Expression subclasses</a></li>\r
-<li><a class="reference internal" href="#expression-operators" id="id8">2.4 Expression operators</a></li>\r
-<li><a class="reference internal" href="#positional-subclasses" id="id9">2.5 Positional subclasses</a></li>\r
-<li><a class="reference internal" href="#converter-subclasses" id="id10">2.6 Converter subclasses</a></li>\r
-<li><a class="reference internal" href="#special-subclasses" id="id11">2.7 Special subclasses</a></li>\r
-<li><a class="reference internal" href="#other-classes" id="id12">2.8 Other classes</a></li>\r
-<li><a class="reference internal" href="#exception-classes-and-troubleshooting" id="id13">2.9 Exception classes and Troubleshooting</a></li>\r
-</ul>\r
-</li>\r
-<li><a class="reference internal" href="#miscellaneous-attributes-and-methods" id="id14">3 Miscellaneous attributes and methods</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#helper-methods" id="id15">3.1 Helper methods</a></li>\r
-<li><a class="reference internal" href="#helper-parse-actions" id="id16">3.2 Helper parse actions</a></li>\r
-<li><a class="reference internal" href="#common-string-and-token-constants" id="id17">3.3 Common string and token constants</a></li>\r
-</ul>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="steps-to-follow">\r
-<h1><a class="toc-backref" href="#id1">1 Steps to follow</a></h1>\r
-<p>To parse an incoming data string, the client code must follow these steps:</p>\r
-<ol class="arabic simple">\r
-<li>First define the tokens and patterns to be matched, and assign\r
-this to a program variable. Optional results names or parsing\r
-actions can also be defined at this time.</li>\r
-<li>Call <tt class="docutils literal">parseString()</tt> or <tt class="docutils literal">scanString()</tt> on this variable, passing in\r
-the string to\r
-be parsed. During the matching process, whitespace between\r
-tokens is skipped by default (although this can be changed).\r
-When token matches occur, any defined parse action methods are\r
-called.</li>\r
-<li>Process the parsed results, returned as a list of strings.\r
-Matching results may also be accessed as named attributes of\r
-the returned results, if names are defined in the definition of\r
-the token pattern, using <tt class="docutils literal">setResultsName()</tt>.</li>\r
-</ol>\r
-<div class="section" id="hello-world">\r
-<h2><a class="toc-backref" href="#id2">1.1 Hello, World!</a></h2>\r
-<p>The following complete Python program will parse the greeting "Hello, World!",\r
-or any other greeting of the form "<salutation>, <addressee>!":</p>\r
-<pre class="literal-block">\r
-from pyparsing import Word, alphas\r
-\r
-greet = Word( alphas ) + "," + Word( alphas ) + "!"\r
-greeting = greet.parseString( "Hello, World!" )\r
-print greeting\r
-</pre>\r
-<p>The parsed tokens are returned in the following form:</p>\r
-<pre class="literal-block">\r
-['Hello', ',', 'World', '!']\r
-</pre>\r
-</div>\r
-<div class="section" id="usage-notes">\r
-<h2><a class="toc-backref" href="#id3">1.2 Usage notes</a></h2>\r
-<ul>\r
-<li><p class="first">The pyparsing module can be used to interpret simple command\r
-strings or algebraic expressions, or can be used to extract data\r
-from text reports with complicated format and structure ("screen\r
-or report scraping"). However, it is possible that your defined\r
-matching patterns may accept invalid inputs. Use pyparsing to\r
-extract data from strings assumed to be well-formatted.</p>\r
-</li>\r
-<li><p class="first">To keep up the readability of your code, use <a class="reference internal" href="#operators">operators</a> such as <tt class="docutils literal">+</tt>, <tt class="docutils literal">|</tt>,\r
-<tt class="docutils literal">^</tt>, and <tt class="docutils literal">~</tt> to combine expressions. You can also combine\r
-string literals with ParseExpressions - they will be\r
-automatically converted to Literal objects. For example:</p>\r
-<pre class="literal-block">\r
-integer = Word( nums ) # simple unsigned integer\r
-variable = Word( alphas, max=1 ) # single letter variable, such as x, z, m, etc.\r
-arithOp = Word( "+-*/", max=1 ) # arithmetic operators\r
-equation = variable + "=" + integer + arithOp + integer # will match "x=2+2", etc.\r
-</pre>\r
-<p>In the definition of <tt class="docutils literal">equation</tt>, the string <tt class="docutils literal">"="</tt> will get added as\r
-a <tt class="docutils literal"><span class="pre">Literal("=")</span></tt>, but in a more readable way.</p>\r
-</li>\r
-<li><p class="first">The pyparsing module's default behavior is to ignore whitespace. This is the\r
-case for 99% of all parsers ever written. This allows you to write simple, clean,\r
-grammars, such as the above <tt class="docutils literal">equation</tt>, without having to clutter it up with\r
-extraneous <tt class="docutils literal">ws</tt> markers. The <tt class="docutils literal">equation</tt> grammar will successfully parse all of the\r
-following statements:</p>\r
-<pre class="literal-block">\r
-x=2+2\r
-x = 2+2\r
-a = 10 * 4\r
-r= 1234/ 100000\r
-</pre>\r
-<p>Of course, it is quite simple to extend this example to support more elaborate expressions, with\r
-nesting with parentheses, floating point numbers, scientific notation, and named constants\r
-(such as <tt class="docutils literal">e</tt> or <tt class="docutils literal">pi</tt>). See <tt class="docutils literal">fourFn.py</tt>, included in the examples directory.</p>\r
-</li>\r
-<li><p class="first">To modify pyparsing's default whitespace skipping, you can use one or\r
-more of the following methods:</p>\r
-<ul>\r
-<li><p class="first">use the static method <tt class="docutils literal">ParserElement.setDefaultWhitespaceChars</tt>\r
-to override the normal set of whitespace chars (' tn'). For instance\r
-when defining a grammar in which newlines are significant, you should\r
-call <tt class="docutils literal">ParserElement.setDefaultWhitespaceChars(' \t')</tt> to remove\r
-newline from the set of skippable whitespace characters. Calling\r
-this method will affect all pyparsing expressions defined afterward.</p>\r
-</li>\r
-<li><p class="first">call <tt class="docutils literal">leaveWhitespace()</tt> on individual expressions, to suppress the\r
-skipping of whitespace before trying to match the expression</p>\r
-</li>\r
-<li><p class="first">use <tt class="docutils literal">Combine</tt> to require that successive expressions must be\r
-adjacent in the input string. For instance, this expression:</p>\r
-<pre class="literal-block">\r
-real = Word(nums) + '.' + Word(nums)\r
-</pre>\r
-<p>will match "3.14159", but will also match "3 . 12". It will also\r
-return the matched results as ['3', '.', '14159']. By changing this\r
-expression to:</p>\r
-<pre class="literal-block">\r
-real = Combine( Word(nums) + '.' + Word(nums) )\r
-</pre>\r
-<p>it will not match numbers with embedded spaces, and it will return a\r
-single concatenated string '3.14159' as the parsed token.</p>\r
-</li>\r
-</ul>\r
-</li>\r
-<li><p class="first">Repetition of expressions can be indicated using the '*' operator. An\r
-expression may be multiplied by an integer value (to indicate an exact\r
-repetition count), or by a tuple containing\r
-two integers, or None and an integer, representing min and max repetitions\r
-(with None representing no min or no max, depending whether it is the first or\r
-second tuple element). See the following examples, where n is used to\r
-indicate an integer value:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">expr*3</tt> is equivalent to <tt class="docutils literal">expr + expr + expr</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(2,3)</span></tt> is equivalent to <tt class="docutils literal">expr + expr + Optional(expr)</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(n,None)</span></tt> or <tt class="docutils literal"><span class="pre">expr*(n,)</span></tt> is equivalent\r
-to <tt class="docutils literal">expr*n + ZeroOrMore(expr)</tt> (read as "at least n instances of expr")</li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">expr*(0,n)</span></tt>\r
-(read as "0 to n instances of expr")</li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(None,None)</span></tt> is equivalent to <tt class="docutils literal">ZeroOrMore(expr)</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(1,None)</span></tt> is equivalent to <tt class="docutils literal">OneOrMore(expr)</tt></li>\r
-</ul>\r
-<p>Note that <tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> does not raise an exception if\r
-more than n exprs exist in the input stream; that is,\r
-<tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> does not enforce a maximum number of expr\r
-occurrences. If this behavior is desired, then write\r
-<tt class="docutils literal"><span class="pre">expr*(None,n)</span> + ~expr</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">MatchFirst</tt> expressions are matched left-to-right, and the first\r
-match found will skip all later expressions within, so be sure\r
-to define less-specific patterns after more-specific patterns.\r
-If you are not sure which expressions are most specific, use Or\r
-expressions (defined using the <tt class="docutils literal">^</tt> operator) - they will always\r
-match the longest expression, although they are more\r
-compute-intensive.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Or</tt> expressions will evaluate all of the specified subexpressions\r
-to determine which is the "best" match, that is, which matches\r
-the longest string in the input data. In case of a tie, the\r
-left-most expression in the <tt class="docutils literal">Or</tt> list will win.</p>\r
-</li>\r
-<li><p class="first">If parsing the contents of an entire file, pass it to the\r
-<tt class="docutils literal">parseFile</tt> method using:</p>\r
-<pre class="literal-block">\r
-expr.parseFile( sourceFile )\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseExceptions</tt> will report the location where an expected token\r
-or expression failed to match. For example, if we tried to use our\r
-"Hello, World!" parser to parse "Hello World!" (leaving out the separating\r
-comma), we would get an exception, with the message:</p>\r
-<pre class="literal-block">\r
-pyparsing.ParseException: Expected "," (6), (1,7)\r
-</pre>\r
-<p>In the case of complex\r
-expressions, the reported location may not be exactly where you\r
-would expect. See more information under <a class="reference internal" href="#parseexception">ParseException</a> .</p>\r
-</li>\r
-<li><p class="first">Use the <tt class="docutils literal">Group</tt> class to enclose logical groups of tokens within a\r
-sublist. This will help organize your results into more\r
-hierarchical form (the default behavior is to return matching\r
-tokens as a flat list of matching input strings).</p>\r
-</li>\r
-<li><p class="first">Punctuation may be significant for matching, but is rarely of\r
-much interest in the parsed results. Use the <tt class="docutils literal">suppress()</tt> method\r
-to keep these tokens from cluttering up your returned lists of\r
-tokens. For example, <tt class="docutils literal">delimitedList()</tt> matches a succession of\r
-one or more expressions, separated by delimiters (commas by\r
-default), but only returns a list of the actual expressions -\r
-the delimiters are used for parsing, but are suppressed from the\r
-returned output.</p>\r
-</li>\r
-<li><p class="first">Parse actions can be used to convert values from strings to\r
-other data types (ints, floats, booleans, etc.).</p>\r
-</li>\r
-<li><p class="first">Results names are recommended for retrieving tokens from complex\r
-expressions. It is much easier to access a token using its field\r
-name than using a positional index, especially if the expression\r
-contains optional elements. You can also shortcut\r
-the <tt class="docutils literal">setResultsName</tt> call:</p>\r
-<pre class="literal-block">\r
-stats = "AVE:" + realNum.setResultsName("average") + \\r
- "MIN:" + realNum.setResultsName("min") + \\r
- "MAX:" + realNum.setResultsName("max")\r
-</pre>\r
-<p>can now be written as this:</p>\r
-<pre class="literal-block">\r
-stats = "AVE:" + realNum("average") + \\r
- "MIN:" + realNum("min") + \\r
- "MAX:" + realNum("max")\r
-</pre>\r
-</li>\r
-<li><p class="first">Be careful when defining parse actions that modify global variables or\r
-data structures (as in <tt class="docutils literal">fourFn.py</tt>), especially for low level tokens\r
-or expressions that may occur within an <tt class="docutils literal">And</tt> expression; an early element\r
-of an <tt class="docutils literal">And</tt> may match, but the overall expression may fail.</p>\r
-</li>\r
-<li><p class="first">Performance of pyparsing may be slow for complex grammars and/or large\r
-input strings. The <a class="reference external" href="http://psyco.sourceforge.net/">psyco</a> package can be used to improve the speed of the\r
-pyparsing module with no changes to grammar or program logic - observed\r
-improvments have been in the 20-50% range.</p>\r
-</li>\r
-</ul>\r
-</div>\r
-</div>\r
-<div class="section" id="classes">\r
-<h1><a class="toc-backref" href="#id4">2 Classes</a></h1>\r
-<div class="section" id="classes-in-the-pyparsing-module">\r
-<h2><a class="toc-backref" href="#id5">2.1 Classes in the pyparsing module</a></h2>\r
-<p><tt class="docutils literal">ParserElement</tt> - abstract base class for all pyparsing classes;\r
-methods for code to use are:</p>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">parseString( sourceString, parseAll=False )</tt> - only called once, on the overall\r
-matching pattern; returns a <a class="reference internal" href="#parseresults">ParseResults</a> object that makes the\r
-matched tokens available as a list, and optionally as a dictionary,\r
-or as an object with named attributes; if parseAll is set to True, then\r
-parseString will raise a ParseException if the grammar does not process\r
-the complete input string.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">parseFile( sourceFile )</tt> - a convenience function, that accepts an\r
-input file object or filename. The file contents are passed as a\r
-string to <tt class="docutils literal">parseString()</tt>. <tt class="docutils literal">parseFile</tt> also supports the <tt class="docutils literal">parseAll</tt> argument.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">scanString( sourceString )</tt> - generator function, used to find and\r
-extract matching text in the given source string; for each matched text,\r
-returns a tuple of:</p>\r
-<ul class="simple">\r
-<li>matched tokens (packaged as a <a class="reference internal" href="#parseresults">ParseResults</a> object)</li>\r
-<li>start location of the matched text in the given source string</li>\r
-<li>end location in the given source string</li>\r
-</ul>\r
-<p><tt class="docutils literal">scanString</tt> allows you to scan through the input source string for\r
-random matches, instead of exhaustively defining the grammar for the entire\r
-source text (as would be required with <tt class="docutils literal">parseString</tt>).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">transformString( sourceString )</tt> - convenience wrapper function for\r
-<tt class="docutils literal">scanString</tt>, to process the input source string, and replace matching\r
-text with the tokens returned from parse actions defined in the grammar\r
-(see <a class="reference internal" href="#setparseaction">setParseAction</a>).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">searchString( sourceString )</tt> - another convenience wrapper function for\r
-<tt class="docutils literal">scanString</tt>, returns a list of the matching tokens returned from each\r
-call to <tt class="docutils literal">scanString</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setName( name )</tt> - associate a short descriptive name for this\r
-element, useful in displaying exceptions and trace information</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setResultsName( string, listAllMatches=False )</tt> - name to be given\r
-to tokens matching\r
-the element; if multiple tokens within\r
-a repetition group (such as <tt class="docutils literal">ZeroOrMore</tt> or <tt class="docutils literal">delimitedList</tt>) the\r
-default is to return only the last matching token - if listAllMatches\r
-is set to True, then a list of all the matching tokens is returned.\r
-(New in 1.5.6 - a results name with a trailing '*' character will be\r
-interpreted as setting listAllMatches to True.)\r
-Note:\r
-<tt class="docutils literal">setResultsName</tt> returns a <em>copy</em> of the element so that a single\r
-basic element can be referenced multiple times and given\r
-different names within a complex grammar.</p>\r
-</li>\r
-</ul>\r
-<ul id="setparseaction">\r
-<li><p class="first"><tt class="docutils literal">setParseAction( *fn )</tt> - specify one or more functions to call after successful\r
-matching of the element; each function is defined as <tt class="docutils literal">fn( s,\r
-loc, toks )</tt>, where:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">s</tt> is the original parse string</li>\r
-<li><tt class="docutils literal">loc</tt> is the location in the string where matching started</li>\r
-<li><tt class="docutils literal">toks</tt> is the list of the matched tokens, packaged as a <a class="reference internal" href="#parseresults">ParseResults</a> object</li>\r
-</ul>\r
-<p>Multiple functions can be attached to a ParserElement by specifying multiple\r
-arguments to setParseAction, or by calling setParseAction multiple times.</p>\r
-<p>Each parse action function can return a modified <tt class="docutils literal">toks</tt> list, to perform conversion, or\r
-string modifications. For brevity, <tt class="docutils literal">fn</tt> may also be a\r
-lambda - here is an example of using a parse action to convert matched\r
-integer tokens from strings to integers:</p>\r
-<pre class="literal-block">\r
-intNumber = Word(nums).setParseAction( lambda s,l,t: [ int(t[0]) ] )\r
-</pre>\r
-<p>If <tt class="docutils literal">fn</tt> does not modify the <tt class="docutils literal">toks</tt> list, it does not need to return\r
-anything at all.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setBreak( breakFlag=True )</tt> - if breakFlag is True, calls pdb.set_break()\r
-as this expression is about to be parsed</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">copy()</tt> - returns a copy of a ParserElement; can be used to use the same\r
-parse expression in different places in a grammar, with different parse actions\r
-attached to each</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">leaveWhitespace()</tt> - change default behavior of skipping\r
-whitespace before starting matching (mostly used internally to the\r
-pyparsing module, rarely used by client code)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setWhitespaceChars( chars )</tt> - define the set of chars to be ignored\r
-as whitespace before trying to match a specific ParserElement, in place of the\r
-default set of whitespace (space, tab, newline, and return)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setDefaultWhitespaceChars( chars )</tt> - class-level method to override\r
-the default set of whitespace chars for all subsequently created ParserElements\r
-(including copies); useful when defining grammars that treat one or more of the\r
-default whitespace characters as significant (such as a line-sensitive grammar, to\r
-omit newline from the list of ignorable whitespace)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">suppress()</tt> - convenience function to suppress the output of the\r
-given element, instead of wrapping it with a Suppress object.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ignore( expr )</tt> - function to specify parse expression to be\r
-ignored while matching defined patterns; can be called\r
-repeatedly to specify multiple expressions; useful to specify\r
-patterns of comment syntax, for example</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setDebug( dbgFlag=True )</tt> - function to enable/disable tracing output\r
-when trying to match this element</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">validate()</tt> - function to verify that the defined grammar does not\r
-contain infinitely recursive constructs</p>\r
-</li>\r
-</ul>\r
-<ul class="simple" id="parsewithtabs">\r
-<li><tt class="docutils literal">parseWithTabs()</tt> - function to override default behavior of converting\r
-tabs to spaces before parsing the input string; rarely used, except when\r
-specifying whitespace-significant grammars using the <a class="reference internal" href="#white">White</a> class.</li>\r
-<li><tt class="docutils literal">enablePackrat()</tt> - a class-level static method to enable a memoizing\r
-performance enhancement, known as "packrat parsing". packrat parsing is\r
-disabled by default, since it may conflict with some user programs that use\r
-parse actions. To activate the packrat feature, your\r
-program must call the class method ParserElement.enablePackrat(). If\r
-your program uses psyco to "compile as you go", you must call\r
-enablePackrat before calling psyco.full(). If you do not do this,\r
-Python will crash. For best results, call enablePackrat() immediately\r
-after importing pyparsing.</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="basic-parserelement-subclasses">\r
-<h2><a class="toc-backref" href="#id6">2.2 Basic ParserElement subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Literal</tt> - construct with a string to be matched exactly</li>\r
-<li><tt class="docutils literal">CaselessLiteral</tt> - construct with a string to be matched, but\r
-without case checking; results are always returned as the\r
-defining literal, NOT as they are found in the input string</li>\r
-<li><tt class="docutils literal">Keyword</tt> - similar to Literal, but must be immediately followed by\r
-whitespace, punctuation, or other non-keyword characters; prevents\r
-accidental matching of a non-keyword that happens to begin with a\r
-defined keyword</li>\r
-<li><tt class="docutils literal">CaselessKeyword</tt> - similar to Keyword, but with caseless matching\r
-behavior</li>\r
-</ul>\r
-<ul id="word">\r
-<li><p class="first"><tt class="docutils literal">Word</tt> - one or more contiguous characters; construct with a\r
-string containing the set of allowed initial characters, and an\r
-optional second string of allowed body characters; for instance,\r
-a common Word construct is to match a code identifier - in C, a\r
-valid identifier must start with an alphabetic character or an\r
-underscore ('_'), followed by a body that can also include numeric\r
-digits. That is, <tt class="docutils literal">a</tt>, <tt class="docutils literal">i</tt>, <tt class="docutils literal">MAX_LENGTH</tt>, <tt class="docutils literal">_a1</tt>, <tt class="docutils literal">b_109_</tt>, and\r
-<tt class="docutils literal">plan9FromOuterSpace</tt>\r
-are all valid identifiers; <tt class="docutils literal">9b7z</tt>, <tt class="docutils literal">$a</tt>, <tt class="docutils literal">.section</tt>, and <tt class="docutils literal">0debug</tt>\r
-are not. To\r
-define an identifier using a Word, use either of the following:</p>\r
-<pre class="literal-block">\r
-- Word( alphas+"_", alphanums+"_" )\r
-- Word( srange("[a-zA-Z_]"), srange("[a-zA-Z0-9_]") )\r
-</pre>\r
-<p>If only one\r
-string given, it specifies that the same character set defined\r
-for the initial character is used for the word body; for instance, to\r
-define an identifier that can only be composed of capital letters and\r
-underscores, use:</p>\r
-<pre class="literal-block">\r
-- Word( "ABCDEFGHIJKLMNOPQRSTUVWXYZ_" )\r
-- Word( srange("[A-Z_]") )\r
-</pre>\r
-<p>A Word may\r
-also be constructed with any of the following optional parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">min</tt> - indicating a minimum length of matching characters</li>\r
-<li><tt class="docutils literal">max</tt> - indicating a maximum length of matching characters</li>\r
-<li><tt class="docutils literal">exact</tt> - indicating an exact length of matching characters</li>\r
-</ul>\r
-<p>If exact is specified, it will override any values for min or max.</p>\r
-<p>New in 1.5.6 - Sometimes you want to define a word using all\r
-characters in a range except for one or two of them; you can do this\r
-with the new <tt class="docutils literal">excludeChars</tt> argument. This is helpful if you want to define\r
-a word with all printables except for a single delimiter character, such\r
-as '.'. Previously, you would have to create a custom string to pass to <tt class="docutils literal">Word</tt>.\r
-With this change, you can just create <tt class="docutils literal">Word(printables, <span class="pre">excludeChars='.')</span></tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">CharsNotIn</tt> - similar to <a class="reference internal" href="#word">Word</a>, but matches characters not\r
-in the given constructor string (accepts only one string for both\r
-initial and body characters); also supports min, max, and exact\r
-optional parameters.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Regex</tt> - a powerful construct, that accepts a regular expression\r
-to be matched at the current parse position; accepts an optional\r
-flags parameter, corresponding to the flags parameter in the re.compile\r
-method; if the expression includes named sub-fields, they will be\r
-represented in the returned <a class="reference internal" href="#parseresults">ParseResults</a></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">QuotedString</tt> - supports the definition of custom quoted string\r
-formats, in addition to pyparsing's built-in dblQuotedString and\r
-sglQuotedString. QuotedString allows you to specify the following\r
-parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">quoteChar</tt> - string of one or more characters defining the quote delimiting string</li>\r
-<li><tt class="docutils literal">escChar</tt> - character to escape quotes, typically backslash (default=None)</li>\r
-<li><tt class="docutils literal">escQuote</tt> - special quote sequence to escape an embedded quote string (such as SQL's "" to escape an embedded ") (default=None)</li>\r
-<li><tt class="docutils literal">multiline</tt> - boolean indicating whether quotes can span multiple lines (default=<tt class="docutils literal">False</tt>)</li>\r
-<li><tt class="docutils literal">unquoteResults</tt> - boolean indicating whether the matched text should be unquoted (default=<tt class="docutils literal">True</tt>)</li>\r
-<li><tt class="docutils literal">endQuoteChar</tt> - string of one or more characters defining the end of the quote delimited string (default=None => same as quoteChar)</li>\r
-</ul>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">SkipTo</tt> - skips ahead in the input string, accepting any\r
-characters up to the specified pattern; may be constructed with\r
-the following optional parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">include</tt> - if set to true, also consumes the match expression\r
-(default is <tt class="docutils literal">False</tt>)</li>\r
-<li><tt class="docutils literal">ignore</tt> - allows the user to specify patterns to not be matched,\r
-to prevent false matches</li>\r
-<li><tt class="docutils literal">failOn</tt> - if a literal string or expression is given for this argument, it defines an expression that\r
-should cause the <tt class="docutils literal">SkipTo</tt> expression to fail, and not skip over that expression</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<ul class="simple" id="white">\r
-<li><tt class="docutils literal">White</tt> - also similar to <a class="reference internal" href="#word">Word</a>, but matches whitespace\r
-characters. Not usually needed, as whitespace is implicitly\r
-ignored by pyparsing. However, some grammars are whitespace-sensitive,\r
-such as those that use leading tabs or spaces to indicating grouping\r
-or hierarchy. (If matching on tab characters, be sure to call\r
-<a class="reference internal" href="#parsewithtabs">parseWithTabs</a> on the top-level parse element.)</li>\r
-<li><tt class="docutils literal">Empty</tt> - a null expression, requiring no characters - will always\r
-match; useful for debugging and for specialized grammars</li>\r
-<li><tt class="docutils literal">NoMatch</tt> - opposite of Empty, will never match; useful for debugging\r
-and for specialized grammars</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="expression-subclasses">\r
-<h2><a class="toc-backref" href="#id7">2.3 Expression subclasses</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">And</tt> - construct with a list of ParserElements, all of which must\r
-match for And to match; can also be created using the '+'\r
-operator; multiple expressions can be Anded together using the '*'\r
-operator as in:</p>\r
-<pre class="literal-block">\r
-ipAddress = Word(nums) + ('.'+Word(nums))*3\r
-</pre>\r
-<p>A tuple can be used as the multiplier, indicating a min/max:</p>\r
-<pre class="literal-block">\r
-usPhoneNumber = Word(nums) + ('-'+Word(nums))*(1,2)\r
-</pre>\r
-<p>A special form of <tt class="docutils literal">And</tt> is created if the '-' operator is used\r
-instead of the '+' operator. In the ipAddress example above, if\r
-no trailing '.' and Word(nums) are found after matching the initial\r
-Word(nums), then pyparsing will back up in the grammar and try other\r
-alternatives to ipAddress. However, if ipAddress is defined as:</p>\r
-<pre class="literal-block">\r
-strictIpAddress = Word(nums) - ('.'+Word(nums))*3\r
-</pre>\r
-<p>then no backing up is done. If the first Word(nums) of strictIpAddress\r
-is matched, then any mismatch after that will raise a ParseSyntaxException,\r
-which will halt the parsing process immediately. By careful use of the\r
-'-' operator, grammars can provide meaningful error messages close to\r
-the location where the incoming text does not match the specified\r
-grammar.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Or</tt> - construct with a list of ParserElements, any of which must\r
-match for Or to match; if more than one expression matches, the\r
-expression that makes the longest match will be used; can also\r
-be created using the '^' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">MatchFirst</tt> - construct with a list of ParserElements, any of\r
-which must match for MatchFirst to match; matching is done\r
-left-to-right, taking the first expression that matches; can\r
-also be created using the '|' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Each</tt> - similar to And, in that all of the provided expressions\r
-must match; however, Each permits matching to be done in any order;\r
-can also be created using the '&' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Optional</tt> - construct with a ParserElement, but this element is\r
-not required to match; can be constructed with an optional <tt class="docutils literal">default</tt> argument,\r
-containing a default string or object to be supplied if the given optional\r
-parse element is not found in the input string; parse action will only\r
-be called if a match is found, or if a default is specified</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ZeroOrMore</tt> - similar to Optional, but can be repeated</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">OneOrMore</tt> - similar to ZeroOrMore, but at least one match must\r
-be present</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">FollowedBy</tt> - a lookahead expression, requires matching of the given\r
-expressions, but does not advance the parsing position within the input string</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">NotAny</tt> - a negative lookahead expression, prevents matching of named\r
-expressions, does not advance the parsing position within the input string;\r
-can also be created using the unary '~' operator</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="expression-operators">\r
-<span id="operators"></span><h2><a class="toc-backref" href="#id8">2.4 Expression operators</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">~</tt> - creates NotAny using the expression after the operator</li>\r
-<li><tt class="docutils literal">+</tt> - creates And using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">|</tt> - creates MatchFirst (first left-to-right match) using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">^</tt> - creates Or (longest match) using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">&</tt> - creates Each using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">*</tt> - creates And by multiplying the expression by the integer operand; if\r
-expression is multiplied by a 2-tuple, creates an And of (min,max)\r
-expressions (similar to "{min,max}" form in regular expressions); if\r
-min is None, intepret as (0,max); if max is None, interpret as\r
-expr*min + ZeroOrMore(expr)</li>\r
-<li><tt class="docutils literal">-</tt> - like <tt class="docutils literal">+</tt> but with no backup and retry of alternatives</li>\r
-<li><tt class="docutils literal">*</tt> - repetition of expression</li>\r
-<li><tt class="docutils literal">==</tt> - matching expression to string; returns True if the string matches the given expression</li>\r
-<li><tt class="docutils literal"><<=</tt> - inserts the expression following the operator as the body of the\r
-Forward expression before the operator (formerly <<, which is now deprecated)</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="positional-subclasses">\r
-<h2><a class="toc-backref" href="#id9">2.5 Positional subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">StringStart</tt> - matches beginning of the text</li>\r
-<li><tt class="docutils literal">StringEnd</tt> - matches the end of the text</li>\r
-<li><tt class="docutils literal">LineStart</tt> - matches beginning of a line (lines delimited by <tt class="docutils literal">\n</tt> characters)</li>\r
-<li><tt class="docutils literal">LineEnd</tt> - matches the end of a line</li>\r
-<li><tt class="docutils literal">WordStart</tt> - matches a leading word boundary</li>\r
-<li><tt class="docutils literal">WordEnd</tt> - matches a trailing word boundary</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="converter-subclasses">\r
-<h2><a class="toc-backref" href="#id10">2.6 Converter subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Upcase</tt> - converts matched tokens to uppercase (deprecated -\r
-use <tt class="docutils literal">upcaseTokens</tt> parse action instead)</li>\r
-<li><tt class="docutils literal">Combine</tt> - joins all matched tokens into a single string, using\r
-specified joinString (default <tt class="docutils literal"><span class="pre">joinString=""</span></tt>); expects\r
-all matching tokens to be adjacent, with no intervening\r
-whitespace (can be overridden by specifying <tt class="docutils literal">adjacent=False</tt> in constructor)</li>\r
-<li><tt class="docutils literal">Suppress</tt> - clears matched tokens; useful to keep returned\r
-results from being cluttered with required but uninteresting\r
-tokens (such as list delimiters)</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="special-subclasses">\r
-<h2><a class="toc-backref" href="#id11">2.7 Special subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Group</tt> - causes the matched tokens to be enclosed in a list;\r
-useful in repeated elements like <tt class="docutils literal">ZeroOrMore</tt> and <tt class="docutils literal">OneOrMore</tt> to\r
-break up matched tokens into groups for each repeated pattern</li>\r
-<li><tt class="docutils literal">Dict</tt> - like <tt class="docutils literal">Group</tt>, but also constructs a dictionary, using the\r
-[0]'th elements of all enclosed token lists as the keys, and\r
-each token list as the value</li>\r
-<li><tt class="docutils literal">SkipTo</tt> - catch-all matching expression that accepts all characters\r
-up until the given pattern is found to match; useful for specifying\r
-incomplete grammars</li>\r
-<li><tt class="docutils literal">Forward</tt> - placeholder token used to define recursive token\r
-patterns; when defining the actual expression later in the\r
-program, insert it into the <tt class="docutils literal">Forward</tt> object using the <tt class="docutils literal"><<=</tt>\r
-operator (see <tt class="docutils literal">fourFn.py</tt> for an example).</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="other-classes">\r
-<h2><a class="toc-backref" href="#id12">2.8 Other classes</a></h2>\r
-<ul id="parseresults">\r
-<li><p class="first"><tt class="docutils literal">ParseResults</tt> - class used to contain and manage the lists of tokens\r
-created from parsing the input using the user-defined parse\r
-expression. ParseResults can be accessed in a number of ways:</p>\r
-<ul class="simple">\r
-<li>as a list<ul>\r
-<li>total list of elements can be found using len()</li>\r
-<li>individual elements can be found using [0], [1], [-1], etc.</li>\r
-<li>elements can be deleted using <tt class="docutils literal">del</tt></li>\r
-<li>the -1th element can be extracted and removed in a single operation\r
-using <tt class="docutils literal">pop()</tt>, or any element can be extracted and removed\r
-using <tt class="docutils literal">pop(n)</tt></li>\r
-</ul>\r
-</li>\r
-<li>as a dictionary<ul>\r
-<li>if <tt class="docutils literal">setResultsName()</tt> is used to name elements within the\r
-overall parse expression, then these fields can be referenced\r
-as dictionary elements or as attributes</li>\r
-<li>the Dict class generates dictionary entries using the data of the\r
-input text - in addition to ParseResults listed as <tt class="docutils literal">[ [ a1, b1, c1, <span class="pre">...],</span> [ a2, b2, c2, <span class="pre">...]</span> ]</tt>\r
-it also acts as a dictionary with entries defined as <tt class="docutils literal">{ a1 : [ b1, c1, ... ] }, { a2 : [ b2, c2, ... ] }</tt>;\r
-this is especially useful when processing tabular data where the first column contains a key\r
-value for that line of data</li>\r
-<li>list elements that are deleted using <tt class="docutils literal">del</tt> will still be accessible by their\r
-dictionary keys</li>\r
-<li>supports <tt class="docutils literal">get()</tt>, <tt class="docutils literal">items()</tt> and <tt class="docutils literal">keys()</tt> methods, similar to a dictionary</li>\r
-<li>a keyed item can be extracted and removed using <tt class="docutils literal">pop(key)</tt>. Here\r
-key must be non-numeric (such as a string), in order to use dict\r
-extraction instead of list extraction.</li>\r
-<li>new named elements can be added (in a parse action, for instance), using the same\r
-syntax as adding an item to a dict (<tt class="docutils literal"><span class="pre">parseResults["X"]="new</span> item"</tt>); named elements can be removed using <tt class="docutils literal">del <span class="pre">parseResults["X"]</span></tt></li>\r
-</ul>\r
-</li>\r
-<li>as a nested list<ul>\r
-<li>results returned from the Group class are encapsulated within their\r
-own list structure, so that the tokens can be handled as a hierarchical\r
-tree</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<p>ParseResults can also be converted to an ordinary list of strings\r
-by calling <tt class="docutils literal">asList()</tt>. Note that this will strip the results of any\r
-field names that have been defined for any embedded parse elements.\r
-(The <tt class="docutils literal">pprint</tt> module is especially good at printing out the nested contents\r
-given by <tt class="docutils literal">asList()</tt>.)</p>\r
-<p>Finally, ParseResults can be converted to an XML string by calling <tt class="docutils literal">asXML()</tt>. Where\r
-possible, results will be tagged using the results names defined for the respective\r
-ParseExpressions. <tt class="docutils literal">asXML()</tt> takes two optional arguments:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">doctagname</tt> - for ParseResults that do not have a defined name, this argument\r
-will wrap the resulting XML in a set of opening and closing tags <tt class="docutils literal"><doctagname></tt>\r
-and <tt class="docutils literal"></doctagname></tt>.</li>\r
-<li><tt class="docutils literal">namedItemsOnly</tt> (default=<tt class="docutils literal">False</tt>) - flag to indicate if the generated XML should\r
-skip items that do not have defined names. If a nested group item is named, then all\r
-embedded items will be included, whether they have names or not.</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="exception-classes-and-troubleshooting">\r
-<h2><a class="toc-backref" href="#id13">2.9 Exception classes and Troubleshooting</a></h2>\r
-<ul id="parseexception">\r
-<li><p class="first"><tt class="docutils literal">ParseException</tt> - exception returned when a grammar parse fails;\r
-ParseExceptions have attributes loc, msg, line, lineno, and column; to view the\r
-text line and location where the reported ParseException occurs, use:</p>\r
-<pre class="literal-block">\r
-except ParseException, err:\r
- print err.line\r
- print " "*(err.column-1) + "^"\r
- print err\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">RecursiveGrammarException</tt> - exception returned by <tt class="docutils literal">validate()</tt> if\r
-the grammar contains a recursive infinite loop, such as:</p>\r
-<pre class="literal-block">\r
-badGrammar = Forward()\r
-goodToken = Literal("A")\r
-badGrammar <<= Optional(goodToken) + badGrammar\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseFatalException</tt> - exception that parse actions can raise to stop parsing\r
-immediately. Should be used when a semantic error is found in the input text, such\r
-as a mismatched XML tag.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseSyntaxException</tt> - subclass of <tt class="docutils literal">ParseFatalException</tt> raised when a\r
-syntax error is found, based on the use of the '-' operator when defining\r
-a sequence of expressions in an <tt class="docutils literal">And</tt> expression.</p>\r
-</li>\r
-</ul>\r
-<p>You can also get some insights into the parsing logic using diagnostic parse actions,\r
-and setDebug(), or test the matching of expression fragments by testing them using\r
-scanString().</p>\r
-</div>\r
-</div>\r
-<div class="section" id="miscellaneous-attributes-and-methods">\r
-<h1><a class="toc-backref" href="#id14">3 Miscellaneous attributes and methods</a></h1>\r
-<div class="section" id="helper-methods">\r
-<h2><a class="toc-backref" href="#id15">3.1 Helper methods</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">delimitedList( expr, <span class="pre">delim=',')</span></tt> - convenience function for\r
-matching one or more occurrences of expr, separated by delim.\r
-By default, the delimiters are suppressed, so the returned results contain\r
-only the separate list elements. Can optionally specify <tt class="docutils literal">combine=True</tt>,\r
-indicating that the expressions and delimiters should be returned as one\r
-combined value (useful for scoped variables, such as "a.b.c", or\r
-"a::b::c", or paths such as "a/b/c").</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">countedArray( expr )</tt> - convenience function for a pattern where an list of\r
-instances of the given expression are preceded by an integer giving the count of\r
-elements in the list. Returns an expression that parses the leading integer,\r
-reads exactly that many expressions, and returns the array of expressions in the\r
-parse results - the leading integer is suppressed from the results (although it\r
-is easily reconstructed by using len on the returned array).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">oneOf( string, caseless=False )</tt> - convenience function for quickly declaring an\r
-alternative set of <tt class="docutils literal">Literal</tt> tokens, by splitting the given string on\r
-whitespace boundaries. The tokens are sorted so that longer\r
-matches are attempted first; this ensures that a short token does\r
-not mask a longer one that starts with the same characters. If <tt class="docutils literal">caseless=True</tt>,\r
-will create an alternative set of CaselessLiteral tokens.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">dictOf( key, value )</tt> - convenience function for quickly declaring a\r
-dictionary pattern of <tt class="docutils literal">Dict( ZeroOrMore( Group( key + value ) ) )</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">makeHTMLTags( tagName )</tt> and <tt class="docutils literal">makeXMLTags( tagName )</tt> - convenience\r
-functions to create definitions of opening and closing tag expressions. Returns\r
-a pair of expressions, for the corresponding <tag> and </tag> strings. Includes\r
-support for attributes in the opening tag, such as <tag attr1="abc"> - attributes\r
-are returned as keyed tokens in the returned ParseResults. <tt class="docutils literal">makeHTMLTags</tt> is less\r
-restrictive than <tt class="docutils literal">makeXMLTags</tt>, especially with respect to case sensitivity.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">infixNotation(baseOperand, operatorList)</tt> - (formerly named <tt class="docutils literal">operatorPrecedence</tt>) convenience function to define a\r
-grammar for parsing infix notation\r
-expressions with a hierarchical precedence of operators. To use the <tt class="docutils literal">infixNotation</tt>\r
-helper:</p>\r
-<ol class="arabic simple">\r
-<li>Define the base "atom" operand term of the grammar.\r
-For this simple grammar, the smallest operand is either\r
-and integer or a variable. This will be the first argument\r
-to the <tt class="docutils literal">infixNotation</tt> method.</li>\r
-<li>Define a list of tuples for each level of operator\r
-precendence. Each tuple is of the form\r
-<tt class="docutils literal">(opExpr, numTerms, rightLeftAssoc, parseAction)</tt>, where:<ul>\r
-<li><tt class="docutils literal">opExpr</tt> is the pyparsing expression for the operator;\r
-may also be a string, which will be converted to a Literal; if\r
-None, indicates an empty operator, such as the implied\r
-multiplication operation between 'm' and 'x' in "y = mx + b".\r
-If <tt class="docutils literal">numTerms</tt> parameter is 3, this must be a 2-tuple containing the 2 delimiting operators.</li>\r
-<li><tt class="docutils literal">numTerms</tt> is the number of terms for this operator (must\r
-be 1,2, or 3)</li>\r
-<li><tt class="docutils literal">rightLeftAssoc</tt> is the indicator whether the operator is\r
-right or left associative, using the pyparsing-defined\r
-constants <tt class="docutils literal">opAssoc.RIGHT</tt> and <tt class="docutils literal">opAssoc.LEFT</tt>.</li>\r
-<li><tt class="docutils literal">parseAction</tt> is the parse action to be associated with\r
-expressions matching this operator expression (the\r
-parse action tuple member may be omitted)</li>\r
-</ul>\r
-</li>\r
-<li>Call <tt class="docutils literal">infixNotation</tt> passing the operand expression and\r
-the operator precedence list, and save the returned value\r
-as the generated pyparsing expression. You can then use\r
-this expression to parse input strings, or incorporate it\r
-into a larger, more complex grammar.</li>\r
-</ol>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">matchPreviousLiteral</tt> and <tt class="docutils literal">matchPreviousExpr</tt> - function to define and\r
-expression that matches the same content\r
-as was parsed in a previous parse expression. For instance:</p>\r
-<pre class="literal-block">\r
-first = Word(nums)\r
-matchExpr = first + ":" + matchPreviousLiteral(first)\r
-</pre>\r
-<p>will match "1:1", but not "1:2". Since this matches at the literal\r
-level, this will also match the leading "1:1" in "1:10".</p>\r
-<p>In contrast:</p>\r
-<pre class="literal-block">\r
-first = Word(nums)\r
-matchExpr = first + ":" + matchPreviousExpr(first)\r
-</pre>\r
-<p>will <em>not</em> match the leading "1:1" in "1:10"; the expressions are\r
-evaluated first, and then compared, so "1" is compared with "10".</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">nestedExpr(opener, closer, content=None, ignoreExpr=quotedString)</tt> - method for defining nested\r
-lists enclosed in opening and closing delimiters.</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">opener</tt> - opening character for a nested list (default="("); can also be a pyparsing expression</li>\r
-<li><tt class="docutils literal">closer</tt> - closing character for a nested list (default=")"); can also be a pyparsing expression</li>\r
-<li><tt class="docutils literal">content</tt> - expression for items within the nested lists (default=None)</li>\r
-<li><tt class="docutils literal">ignoreExpr</tt> - expression for ignoring opening and closing delimiters (default=quotedString)</li>\r
-</ul>\r
-<p>If an expression is not provided for the content argument, the nested\r
-expression will capture all whitespace-delimited content between delimiters\r
-as a list of separate values.</p>\r
-<p>Use the <tt class="docutils literal">ignoreExpr</tt> argument to define expressions that may contain\r
-opening or closing characters that should not be treated as opening\r
-or closing characters for nesting, such as quotedString or a comment\r
-expression. Specify multiple expressions using an Or or MatchFirst.\r
-The default is quotedString, but if no expressions are to be ignored,\r
-then pass None for this argument.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">indentedBlock( statementExpr, indentationStackVar, indent=True)</tt> -\r
-function to define an indented block of statements, similar to\r
-indentation-based blocking in Python source code:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">statementExpr</tt> - the expression defining a statement that\r
-will be found in the indented block; a valid indentedBlock\r
-must contain at least 1 matching statementExpr</li>\r
-<li><tt class="docutils literal">indentationStackVar</tt> - a Python list variable; this variable\r
-should be common to all <tt class="docutils literal">indentedBlock</tt> expressions defined\r
-within the same grammar, and should be reinitialized to [1]\r
-each time the grammar is to be used</li>\r
-<li><tt class="docutils literal">indent</tt> - a boolean flag indicating whether the expressions\r
-within the block must be indented from the current parse\r
-location; if using indentedBlock to define the left-most\r
-statements (all starting in column 1), set indent to False</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<ul id="originaltextfor">\r
-<li><p class="first"><tt class="docutils literal">originalTextFor( expr )</tt> - helper function to preserve the originally parsed text, regardless of any\r
-token processing or conversion done by the contained expression. For instance, the following expression:</p>\r
-<pre class="literal-block">\r
-fullName = Word(alphas) + Word(alphas)\r
-</pre>\r
-<p>will return the parse of "John Smith" as ['John', 'Smith']. In some applications, the actual name as it\r
-was given in the input string is what is desired. To do this, use <tt class="docutils literal">originalTextFor</tt>:</p>\r
-<pre class="literal-block">\r
-fullName = originalTextFor(Word(alphas) + Word(alphas))\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ungroup( expr )</tt> - function to "ungroup" returned tokens; useful\r
-to undo the default behavior of And to always group the returned tokens, even\r
-if there is only one in the list. (New in 1.5.6)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">lineno( loc, string )</tt> - function to give the line number of the\r
-location within the string; the first line is line 1, newlines\r
-start new rows</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">col( loc, string )</tt> - function to give the column number of the\r
-location within the string; the first column is column 1,\r
-newlines reset the column number to 1</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">line( loc, string )</tt> - function to retrieve the line of text\r
-representing <tt class="docutils literal">lineno( loc, string )</tt>; useful when printing out diagnostic\r
-messages for exceptions</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">srange( rangeSpec )</tt> - function to define a string of characters,\r
-given a string of the form used by regexp string ranges, such as <tt class="docutils literal"><span class="pre">"[0-9]"</span></tt> for\r
-all numeric digits, <tt class="docutils literal"><span class="pre">"[A-Z_]"</span></tt> for uppercase characters plus underscore, and\r
-so on (note that rangeSpec does not include support for generic regular\r
-expressions, just string range specs)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">getTokensEndLoc()</tt> - function to call from within a parse action to get\r
-the ending location for the matched tokens</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">traceParseAction(fn)</tt> - decorator function to debug parse actions. Lists\r
-each call, called arguments, and return value or exception</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="helper-parse-actions">\r
-<h2><a class="toc-backref" href="#id16">3.2 Helper parse actions</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">removeQuotes</tt> - removes the first and last characters of a quoted string;\r
-useful to remove the delimiting quotes from quoted strings</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">replaceWith(replString)</tt> - returns a parse action that simply returns the\r
-replString; useful when using transformString, or converting HTML entities, as in:</p>\r
-<pre class="literal-block">\r
-nbsp = Literal("&nbsp;").setParseAction( replaceWith("<BLANK>") )\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">keepOriginalText</tt>- (deprecated, use <a class="reference internal" href="#originaltextfor">originalTextFor</a> instead) restores any internal whitespace or suppressed\r
-text within the tokens for a matched parse\r
-expression. This is especially useful when defining expressions\r
-for scanString or transformString applications.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">withAttribute( *args, **kwargs )</tt> - helper to create a validating parse action to be used with start tags created\r
-with <tt class="docutils literal">makeXMLTags</tt> or <tt class="docutils literal">makeHTMLTags</tt>. Use <tt class="docutils literal">withAttribute</tt> to qualify a starting tag\r
-with a required attribute value, to avoid false matches on common tags such as\r
-<tt class="docutils literal"><TD></tt> or <tt class="docutils literal"><DIV></tt>.</p>\r
-<p><tt class="docutils literal">withAttribute</tt> can be called with:</p>\r
-<ul class="simple">\r
-<li>keyword arguments, as in <tt class="docutils literal"><span class="pre">(class="Customer",align="right")</span></tt>, or</li>\r
-<li>a list of name-value tuples, as in <tt class="docutils literal">( ("ns1:class", <span class="pre">"Customer"),</span> <span class="pre">("ns2:align","right")</span> )</tt></li>\r
-</ul>\r
-<p>An attribute can be specified to have the special value\r
-<tt class="docutils literal">withAttribute.ANY_VALUE</tt>, which will match any value - use this to\r
-ensure that an attribute is present but any attribute value is\r
-acceptable.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">downcaseTokens</tt> - converts all matched tokens to lowercase</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">upcaseTokens</tt> - converts all matched tokens to uppercase</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">matchOnlyAtCol( columnNumber )</tt> - a parse action that verifies that\r
-an expression was matched at a particular column, raising a\r
-ParseException if matching at a different column number; useful when parsing\r
-tabular data</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="common-string-and-token-constants">\r
-<h2><a class="toc-backref" href="#id17">3.3 Common string and token constants</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">alphas</tt> - same as <tt class="docutils literal">string.letters</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">nums</tt> - same as <tt class="docutils literal">string.digits</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">alphanums</tt> - a string containing <tt class="docutils literal">alphas + nums</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">alphas8bit</tt> - a string containing alphabetic 8-bit characters:</p>\r
-<pre class="literal-block">\r
-ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">printables</tt> - same as <tt class="docutils literal">string.printable</tt>, minus the space (<tt class="docutils literal">' '</tt>) character</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">empty</tt> - a global <tt class="docutils literal">Empty()</tt>; will always match</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">sglQuotedString</tt> - a string of characters enclosed in 's; may\r
-include whitespace, but not newlines</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">dblQuotedString</tt> - a string of characters enclosed in "s; may\r
-include whitespace, but not newlines</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">quotedString</tt> - <tt class="docutils literal">sglQuotedString | dblQuotedString</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">cStyleComment</tt> - a comment block delimited by <tt class="docutils literal"><span class="pre">'/*'</span></tt> and <tt class="docutils literal"><span class="pre">'*/'</span></tt> sequences; can span\r
-multiple lines, but does not support nesting of comments</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">htmlComment</tt> - a comment block delimited by <tt class="docutils literal"><span class="pre">'<!--'</span></tt> and <tt class="docutils literal"><span class="pre">'-->'</span></tt> sequences; can span\r
-multiple lines, but does not support nesting of comments</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">commaSeparatedList</tt> - similar to <tt class="docutils literal">delimitedList</tt>, except that the\r
-list expressions can be any text value, or a quoted string; quoted strings can\r
-safely include commas without incorrectly breaking the string into two tokens</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">restOfLine</tt> - all remaining printable characters up to but not including the next\r
-newline</p>\r
-</li>\r
-</ul>\r
-</div>\r
-</div>\r
-</div>\r
-</body>\r
-</html>\r
+++ /dev/null
-Permission is hereby granted, free of charge, to any person obtaining\r
-a copy of this software and associated documentation files (the\r
-"Software"), to deal in the Software without restriction, including\r
-without limitation the rights to use, copy, modify, merge, publish,\r
-distribute, sublicense, and/or sell copies of the Software, and to\r
-permit persons to whom the Software is furnished to do so, subject to\r
-the following conditions:\r
-\r
-The above copyright notice and this permission notice shall be\r
-included in all copies or substantial portions of the Software.\r
-\r
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
+++ /dev/null
-include pyparsing.py
-include HowToUsePyparsing.html pyparsingClassDiagram.*
-include README CHANGES LICENSE
-include examples/*.py examples/Setup.ini examples/*.dfm examples/*.ics examples/*.html\r
-include htmldoc/*.*\r
-include docs/*.*\r
-include robots.txt\r
-Metadata-Version: 1.1\r
-Name: pyparsing\r
-Version: 2.2.0\r
-Summary: Python parsing module\r
-Home-page: http://pyparsing.wikispaces.com/\r
-Author: Paul McGuire\r
-Author-email: ptmcg@users.sourceforge.net\r
-License: MIT License\r
-Download-URL: http://sourceforge.net/project/showfiles.php?group_id=97203\r
-Description: UNKNOWN\r
-Platform: UNKNOWN\r
-Classifier: Development Status :: 5 - Production/Stable\r
-Classifier: Intended Audience :: Developers\r
-Classifier: Intended Audience :: Information Technology\r
-Classifier: License :: OSI Approved :: MIT License\r
-Classifier: Operating System :: OS Independent\r
-Classifier: Programming Language :: Python\r
-Classifier: Programming Language :: Python :: 2.6\r
-Classifier: Programming Language :: Python :: 2.7\r
-Classifier: Programming Language :: Python :: 3\r
-Classifier: Programming Language :: Python :: 3.3\r
-Classifier: Programming Language :: Python :: 3.4\r
-Classifier: Programming Language :: Python :: 3.5\r
+Metadata-Version: 1.2
+Name: pyparsing
+Version: 2.2.1
+Summary: Python parsing module
+Home-page: https://github.com/pyparsing/pyparsing/
+Author: Paul McGuire
+Author-email: ptmcg@users.sourceforge.net
+License: MIT License
+Download-URL: https://pypi.org/project/pyparsing/
+Description: UNKNOWN
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Intended Audience :: Developers
+Classifier: Intended Audience :: Information Technology
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
+++ /dev/null
-====================================
-PyParsing -- A Python Parsing Module
-====================================
-
-Introduction
-============
-\r
-The pyparsing module is an alternative approach to creating and executing \r
-simple grammars, vs. the traditional lex/yacc approach, or the use of \r
-regular expressions. The pyparsing module provides a library of classes \r
-that client code uses to construct the grammar directly in Python code.\r
-\r
-Here is a program to parse "Hello, World!" (or any greeting of the form \r
-"<salutation>, <addressee>!"):\r
-\r
- from pyparsing import Word, alphas\r
- greet = Word( alphas ) + "," + Word( alphas ) + "!"\r
- hello = "Hello, World!"\r
- print hello, "->", greet.parseString( hello )\r
-\r
-The program outputs the following:\r
-\r
- Hello, World! -> ['Hello', ',', 'World', '!']\r
-\r
-The Python representation of the grammar is quite readable, owing to the \r
-self-explanatory class names, and the use of '+', '|' and '^' operator \r
-definitions.\r
-\r
-The parsed results returned from parseString() can be accessed as a \r
-nested list, a dictionary, or an object with named attributes.\r
-\r
-The pyparsing module handles some of the problems that are typically \r
-vexing when writing text parsers:\r
-- extra or missing whitespace (the above program will also handle \r
- "Hello,World!", "Hello , World !", etc.)\r
-- quoted strings\r
-- embedded comments\r
-\r
-The .zip file includes examples of a simple SQL parser, simple CORBA IDL \r
-parser, a config file parser, a chemical formula parser, and a four-\r
-function algebraic notation parser. It also includes a simple how-to \r
-document, and a UML class diagram of the library's classes.
-
-
-
-Installation
-============
-
-Do the usual:
-
- python setup.py install\r
- \r
-(pyparsing requires Python 2.6 or later.)
-\r
-Or corresponding commands using pip, easy_install, or wheel:\r
-\r
- pip install pyparsing\r
- \r
- easy_install pyparsing\r
- \r
- wheel install pyparsing\r
-
-
-Documentation
-=============
-
-See:
-
- HowToUsePyparsing.html
-
-
-License
-=======
-
- MIT License. See header of pyparsing.py
-
-History
-=======
-
- See CHANGES file.\r
--- /dev/null
+PyParsing -- A Python Parsing Module\r
+====================================\r
+[](https://travis-ci.org/pyparsing/pyparsing)\r
+\r
+Introduction\r
+============\r
+\r
+The pyparsing module is an alternative approach to creating and executing \r
+simple grammars, vs. the traditional lex/yacc approach, or the use of \r
+regular expressions. The pyparsing module provides a library of classes \r
+that client code uses to construct the grammar directly in Python code.\r
+\r
+Here is a program to parse "Hello, World!" (or any greeting of the form \r
+"salutation, addressee!"):\r
+\r
+```python\r
+from pyparsing import Word, alphas\r
+greet = Word( alphas ) + "," + Word( alphas ) + "!"\r
+hello = "Hello, World!"\r
+print hello, "->", greet.parseString( hello )\r
+```\r
+\r
+The program outputs the following:\r
+\r
+ Hello, World! -> ['Hello', ',', 'World', '!']\r
+\r
+The Python representation of the grammar is quite readable, owing to the \r
+self-explanatory class names, and the use of '+', '|' and '^' operator \r
+definitions.\r
+\r
+The parsed results returned from parseString() can be accessed as a \r
+nested list, a dictionary, or an object with named attributes.\r
+\r
+The pyparsing module handles some of the problems that are typically \r
+vexing when writing text parsers:\r
+- extra or missing whitespace (the above program will also handle \r
+ "Hello,World!", "Hello , World !", etc.)\r
+- quoted strings\r
+- embedded comments\r
+\r
+The .zip file includes examples of a simple SQL parser, simple CORBA IDL \r
+parser, a config file parser, a chemical formula parser, and a four-\r
+function algebraic notation parser. It also includes a simple how-to \r
+document, and a UML class diagram of the library's classes.\r
+\r
+\r
+\r
+Installation\r
+============\r
+\r
+Do the usual:\r
+\r
+ python setup.py install\r
+ \r
+(pyparsing requires Python 2.6 or later.)\r
+\r
+Or corresponding commands using pip, easy_install, or wheel:\r
+\r
+ pip install pyparsing\r
+ \r
+ easy_install pyparsing\r
+ \r
+ wheel install pyparsing\r
+\r
+\r
+Documentation\r
+=============\r
+\r
+See:\r
+\r
+ HowToUsePyparsing.html\r
+\r
+\r
+License\r
+=======\r
+\r
+ MIT License. See header of pyparsing.py\r
+\r
+History\r
+=======\r
+\r
+ See CHANGES file.\r
+++ /dev/null
-<?xml version="1.0" encoding="utf-8" ?>\r
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\r
-<head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r
-<meta name="generator" content="Docutils 0.8: http://docutils.sourceforge.net/" />\r
-<title>Using the pyparsing module</title>\r
-<meta name="author" content="Paul McGuire" />\r
-<meta name="date" content="June, 2011" />\r
-<meta name="copyright" content="Copyright © 2003-2011 Paul McGuire." />\r
-<style type="text/css">\r
-\r
-/*\r
-:Author: David Goodger (goodger@python.org)\r
-:Id: $Id: html4css1.css 6387 2010-08-13 12:23:41Z milde $\r
-:Copyright: This stylesheet has been placed in the public domain.\r
-\r
-Default cascading style sheet for the HTML output of Docutils.\r
-\r
-See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to\r
-customize this style sheet.\r
-*/\r
-\r
-/* used to remove borders from tables and images */\r
-.borderless, table.borderless td, table.borderless th {\r
- border: 0 }\r
-\r
-table.borderless td, table.borderless th {\r
- /* Override padding for "table.docutils td" with "! important".\r
- The right padding separates the table cells. */\r
- padding: 0 0.5em 0 0 ! important }\r
-\r
-.first {\r
- /* Override more specific margin styles with "! important". */\r
- margin-top: 0 ! important }\r
-\r
-.last, .with-subtitle {\r
- margin-bottom: 0 ! important }\r
-\r
-.hidden {\r
- display: none }\r
-\r
-a.toc-backref {\r
- text-decoration: none ;\r
- color: black }\r
-\r
-blockquote.epigraph {\r
- margin: 2em 5em ; }\r
-\r
-dl.docutils dd {\r
- margin-bottom: 0.5em }\r
-\r
-object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {\r
- overflow: hidden;\r
-}\r
-\r
-/* Uncomment (and remove this text!) to get bold-faced definition list terms\r
-dl.docutils dt {\r
- font-weight: bold }\r
-*/\r
-\r
-div.abstract {\r
- margin: 2em 5em }\r
-\r
-div.abstract p.topic-title {\r
- font-weight: bold ;\r
- text-align: center }\r
-\r
-div.admonition, div.attention, div.caution, div.danger, div.error,\r
-div.hint, div.important, div.note, div.tip, div.warning {\r
- margin: 2em ;\r
- border: medium outset ;\r
- padding: 1em }\r
-\r
-div.admonition p.admonition-title, div.hint p.admonition-title,\r
-div.important p.admonition-title, div.note p.admonition-title,\r
-div.tip p.admonition-title {\r
- font-weight: bold ;\r
- font-family: sans-serif }\r
-\r
-div.attention p.admonition-title, div.caution p.admonition-title,\r
-div.danger p.admonition-title, div.error p.admonition-title,\r
-div.warning p.admonition-title {\r
- color: red ;\r
- font-weight: bold ;\r
- font-family: sans-serif }\r
-\r
-/* Uncomment (and remove this text!) to get reduced vertical space in\r
- compound paragraphs.\r
-div.compound .compound-first, div.compound .compound-middle {\r
- margin-bottom: 0.5em }\r
-\r
-div.compound .compound-last, div.compound .compound-middle {\r
- margin-top: 0.5em }\r
-*/\r
-\r
-div.dedication {\r
- margin: 2em 5em ;\r
- text-align: center ;\r
- font-style: italic }\r
-\r
-div.dedication p.topic-title {\r
- font-weight: bold ;\r
- font-style: normal }\r
-\r
-div.figure {\r
- margin-left: 2em ;\r
- margin-right: 2em }\r
-\r
-div.footer, div.header {\r
- clear: both;\r
- font-size: smaller }\r
-\r
-div.line-block {\r
- display: block ;\r
- margin-top: 1em ;\r
- margin-bottom: 1em }\r
-\r
-div.line-block div.line-block {\r
- margin-top: 0 ;\r
- margin-bottom: 0 ;\r
- margin-left: 1.5em }\r
-\r
-div.sidebar {\r
- margin: 0 0 0.5em 1em ;\r
- border: medium outset ;\r
- padding: 1em ;\r
- background-color: #ffffee ;\r
- width: 40% ;\r
- float: right ;\r
- clear: right }\r
-\r
-div.sidebar p.rubric {\r
- font-family: sans-serif ;\r
- font-size: medium }\r
-\r
-div.system-messages {\r
- margin: 5em }\r
-\r
-div.system-messages h1 {\r
- color: red }\r
-\r
-div.system-message {\r
- border: medium outset ;\r
- padding: 1em }\r
-\r
-div.system-message p.system-message-title {\r
- color: red ;\r
- font-weight: bold }\r
-\r
-div.topic {\r
- margin: 2em }\r
-\r
-h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,\r
-h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {\r
- margin-top: 0.4em }\r
-\r
-h1.title {\r
- text-align: center }\r
-\r
-h2.subtitle {\r
- text-align: center }\r
-\r
-hr.docutils {\r
- width: 75% }\r
-\r
-img.align-left, .figure.align-left, object.align-left {\r
- clear: left ;\r
- float: left ;\r
- margin-right: 1em }\r
-\r
-img.align-right, .figure.align-right, object.align-right {\r
- clear: right ;\r
- float: right ;\r
- margin-left: 1em }\r
-\r
-img.align-center, .figure.align-center, object.align-center {\r
- display: block;\r
- margin-left: auto;\r
- margin-right: auto;\r
-}\r
-\r
-.align-left {\r
- text-align: left }\r
-\r
-.align-center {\r
- clear: both ;\r
- text-align: center }\r
-\r
-.align-right {\r
- text-align: right }\r
-\r
-/* reset inner alignment in figures */\r
-div.align-right {\r
- text-align: left }\r
-\r
-/* div.align-center * { */\r
-/* text-align: left } */\r
-\r
-ol.simple, ul.simple {\r
- margin-bottom: 1em }\r
-\r
-ol.arabic {\r
- list-style: decimal }\r
-\r
-ol.loweralpha {\r
- list-style: lower-alpha }\r
-\r
-ol.upperalpha {\r
- list-style: upper-alpha }\r
-\r
-ol.lowerroman {\r
- list-style: lower-roman }\r
-\r
-ol.upperroman {\r
- list-style: upper-roman }\r
-\r
-p.attribution {\r
- text-align: right ;\r
- margin-left: 50% }\r
-\r
-p.caption {\r
- font-style: italic }\r
-\r
-p.credits {\r
- font-style: italic ;\r
- font-size: smaller }\r
-\r
-p.label {\r
- white-space: nowrap }\r
-\r
-p.rubric {\r
- font-weight: bold ;\r
- font-size: larger ;\r
- color: maroon ;\r
- text-align: center }\r
-\r
-p.sidebar-title {\r
- font-family: sans-serif ;\r
- font-weight: bold ;\r
- font-size: larger }\r
-\r
-p.sidebar-subtitle {\r
- font-family: sans-serif ;\r
- font-weight: bold }\r
-\r
-p.topic-title {\r
- font-weight: bold }\r
-\r
-pre.address {\r
- margin-bottom: 0 ;\r
- margin-top: 0 ;\r
- font: inherit }\r
-\r
-pre.literal-block, pre.doctest-block {\r
- margin-left: 2em ;\r
- margin-right: 2em }\r
-\r
-span.classifier {\r
- font-family: sans-serif ;\r
- font-style: oblique }\r
-\r
-span.classifier-delimiter {\r
- font-family: sans-serif ;\r
- font-weight: bold }\r
-\r
-span.interpreted {\r
- font-family: sans-serif }\r
-\r
-span.option {\r
- white-space: nowrap }\r
-\r
-span.pre {\r
- white-space: pre }\r
-\r
-span.problematic {\r
- color: red }\r
-\r
-span.section-subtitle {\r
- /* font-size relative to parent (h1..h6 element) */\r
- font-size: 80% }\r
-\r
-table.citation {\r
- border-left: solid 1px gray;\r
- margin-left: 1px }\r
-\r
-table.docinfo {\r
- margin: 2em 4em }\r
-\r
-table.docutils {\r
- margin-top: 0.5em ;\r
- margin-bottom: 0.5em }\r
-\r
-table.footnote {\r
- border-left: solid 1px black;\r
- margin-left: 1px }\r
-\r
-table.docutils td, table.docutils th,\r
-table.docinfo td, table.docinfo th {\r
- padding-left: 0.5em ;\r
- padding-right: 0.5em ;\r
- vertical-align: top }\r
-\r
-table.docutils th.field-name, table.docinfo th.docinfo-name {\r
- font-weight: bold ;\r
- text-align: left ;\r
- white-space: nowrap ;\r
- padding-left: 0 }\r
-\r
-h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,\r
-h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {\r
- font-size: 100% }\r
-\r
-ul.auto-toc {\r
- list-style-type: none }\r
-\r
-</style>\r
-</head>\r
-<body>\r
-<div class="document" id="using-the-pyparsing-module">\r
-<h1 class="title">Using the pyparsing module</h1>\r
-<table class="docinfo" frame="void" rules="none">\r
-<col class="docinfo-name" />\r
-<col class="docinfo-content" />\r
-<tbody valign="top">\r
-<tr><th class="docinfo-name">Author:</th>\r
-<td>Paul McGuire</td></tr>\r
-<tr><th class="docinfo-name">Address:</th>\r
-<td><pre class="address">\r
-<a class="first last reference external" href="mailto:ptmcg@users.sourceforge.net">ptmcg@users.sourceforge.net</a>\r
-</pre>\r
-</td></tr>\r
-<tr><th class="docinfo-name">Revision:</th>\r
-<td>2.0.1</td></tr>\r
-<tr><th class="docinfo-name">Date:</th>\r
-<td>July, 2013</td></tr>\r
-<tr><th class="docinfo-name">Copyright:</th>\r
-<td>Copyright © 2003-2013 Paul McGuire.</td></tr>\r
-</tbody>\r
-</table>\r
-<table class="docutils field-list" frame="void" rules="none">\r
-<col class="field-name" />\r
-<col class="field-body" />\r
-<tbody valign="top">\r
-<tr class="field"><th class="field-name">abstract:</th><td class="field-body">This document provides how-to instructions for the\r
-pyparsing library, an easy-to-use Python module for constructing\r
-and executing basic text parsers. The pyparsing module is useful\r
-for evaluating user-definable\r
-expressions, processing custom application language commands, or\r
-extracting data from formatted reports.</td>\r
-</tr>\r
-</tbody>\r
-</table>\r
-<div class="contents topic" id="contents">\r
-<p class="topic-title first">Contents</p>\r
-<ul class="auto-toc simple">\r
-<li><a class="reference internal" href="#steps-to-follow" id="id1">1 Steps to follow</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#hello-world" id="id2">1.1 Hello, World!</a></li>\r
-<li><a class="reference internal" href="#usage-notes" id="id3">1.2 Usage notes</a></li>\r
-</ul>\r
-</li>\r
-<li><a class="reference internal" href="#classes" id="id4">2 Classes</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#classes-in-the-pyparsing-module" id="id5">2.1 Classes in the pyparsing module</a></li>\r
-<li><a class="reference internal" href="#basic-parserelement-subclasses" id="id6">2.2 Basic ParserElement subclasses</a></li>\r
-<li><a class="reference internal" href="#expression-subclasses" id="id7">2.3 Expression subclasses</a></li>\r
-<li><a class="reference internal" href="#expression-operators" id="id8">2.4 Expression operators</a></li>\r
-<li><a class="reference internal" href="#positional-subclasses" id="id9">2.5 Positional subclasses</a></li>\r
-<li><a class="reference internal" href="#converter-subclasses" id="id10">2.6 Converter subclasses</a></li>\r
-<li><a class="reference internal" href="#special-subclasses" id="id11">2.7 Special subclasses</a></li>\r
-<li><a class="reference internal" href="#other-classes" id="id12">2.8 Other classes</a></li>\r
-<li><a class="reference internal" href="#exception-classes-and-troubleshooting" id="id13">2.9 Exception classes and Troubleshooting</a></li>\r
-</ul>\r
-</li>\r
-<li><a class="reference internal" href="#miscellaneous-attributes-and-methods" id="id14">3 Miscellaneous attributes and methods</a><ul class="auto-toc">\r
-<li><a class="reference internal" href="#helper-methods" id="id15">3.1 Helper methods</a></li>\r
-<li><a class="reference internal" href="#helper-parse-actions" id="id16">3.2 Helper parse actions</a></li>\r
-<li><a class="reference internal" href="#common-string-and-token-constants" id="id17">3.3 Common string and token constants</a></li>\r
-</ul>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="steps-to-follow">\r
-<h1><a class="toc-backref" href="#id1">1 Steps to follow</a></h1>\r
-<p>To parse an incoming data string, the client code must follow these steps:</p>\r
-<ol class="arabic simple">\r
-<li>First define the tokens and patterns to be matched, and assign\r
-this to a program variable. Optional results names or parsing\r
-actions can also be defined at this time.</li>\r
-<li>Call <tt class="docutils literal">parseString()</tt> or <tt class="docutils literal">scanString()</tt> on this variable, passing in\r
-the string to\r
-be parsed. During the matching process, whitespace between\r
-tokens is skipped by default (although this can be changed).\r
-When token matches occur, any defined parse action methods are\r
-called.</li>\r
-<li>Process the parsed results, returned as a list of strings.\r
-Matching results may also be accessed as named attributes of\r
-the returned results, if names are defined in the definition of\r
-the token pattern, using <tt class="docutils literal">setResultsName()</tt>.</li>\r
-</ol>\r
-<div class="section" id="hello-world">\r
-<h2><a class="toc-backref" href="#id2">1.1 Hello, World!</a></h2>\r
-<p>The following complete Python program will parse the greeting "Hello, World!",\r
-or any other greeting of the form "<salutation>, <addressee>!":</p>\r
-<pre class="literal-block">\r
-from pyparsing import Word, alphas\r
-\r
-greet = Word( alphas ) + "," + Word( alphas ) + "!"\r
-greeting = greet.parseString( "Hello, World!" )\r
-print greeting\r
-</pre>\r
-<p>The parsed tokens are returned in the following form:</p>\r
-<pre class="literal-block">\r
-['Hello', ',', 'World', '!']\r
-</pre>\r
-</div>\r
-<div class="section" id="usage-notes">\r
-<h2><a class="toc-backref" href="#id3">1.2 Usage notes</a></h2>\r
-<ul>\r
-<li><p class="first">The pyparsing module can be used to interpret simple command\r
-strings or algebraic expressions, or can be used to extract data\r
-from text reports with complicated format and structure ("screen\r
-or report scraping"). However, it is possible that your defined\r
-matching patterns may accept invalid inputs. Use pyparsing to\r
-extract data from strings assumed to be well-formatted.</p>\r
-</li>\r
-<li><p class="first">To keep up the readability of your code, use <a class="reference internal" href="#operators">operators</a> such as <tt class="docutils literal">+</tt>, <tt class="docutils literal">|</tt>,\r
-<tt class="docutils literal">^</tt>, and <tt class="docutils literal">~</tt> to combine expressions. You can also combine\r
-string literals with ParseExpressions - they will be\r
-automatically converted to Literal objects. For example:</p>\r
-<pre class="literal-block">\r
-integer = Word( nums ) # simple unsigned integer\r
-variable = Word( alphas, max=1 ) # single letter variable, such as x, z, m, etc.\r
-arithOp = Word( "+-*/", max=1 ) # arithmetic operators\r
-equation = variable + "=" + integer + arithOp + integer # will match "x=2+2", etc.\r
-</pre>\r
-<p>In the definition of <tt class="docutils literal">equation</tt>, the string <tt class="docutils literal">"="</tt> will get added as\r
-a <tt class="docutils literal"><span class="pre">Literal("=")</span></tt>, but in a more readable way.</p>\r
-</li>\r
-<li><p class="first">The pyparsing module's default behavior is to ignore whitespace. This is the\r
-case for 99% of all parsers ever written. This allows you to write simple, clean,\r
-grammars, such as the above <tt class="docutils literal">equation</tt>, without having to clutter it up with\r
-extraneous <tt class="docutils literal">ws</tt> markers. The <tt class="docutils literal">equation</tt> grammar will successfully parse all of the\r
-following statements:</p>\r
-<pre class="literal-block">\r
-x=2+2\r
-x = 2+2\r
-a = 10 * 4\r
-r= 1234/ 100000\r
-</pre>\r
-<p>Of course, it is quite simple to extend this example to support more elaborate expressions, with\r
-nesting with parentheses, floating point numbers, scientific notation, and named constants\r
-(such as <tt class="docutils literal">e</tt> or <tt class="docutils literal">pi</tt>). See <tt class="docutils literal">fourFn.py</tt>, included in the examples directory.</p>\r
-</li>\r
-<li><p class="first">To modify pyparsing's default whitespace skipping, you can use one or\r
-more of the following methods:</p>\r
-<ul>\r
-<li><p class="first">use the static method <tt class="docutils literal">ParserElement.setDefaultWhitespaceChars</tt>\r
-to override the normal set of whitespace chars (' tn'). For instance\r
-when defining a grammar in which newlines are significant, you should\r
-call <tt class="docutils literal">ParserElement.setDefaultWhitespaceChars(' \t')</tt> to remove\r
-newline from the set of skippable whitespace characters. Calling\r
-this method will affect all pyparsing expressions defined afterward.</p>\r
-</li>\r
-<li><p class="first">call <tt class="docutils literal">leaveWhitespace()</tt> on individual expressions, to suppress the\r
-skipping of whitespace before trying to match the expression</p>\r
-</li>\r
-<li><p class="first">use <tt class="docutils literal">Combine</tt> to require that successive expressions must be\r
-adjacent in the input string. For instance, this expression:</p>\r
-<pre class="literal-block">\r
-real = Word(nums) + '.' + Word(nums)\r
-</pre>\r
-<p>will match "3.14159", but will also match "3 . 12". It will also\r
-return the matched results as ['3', '.', '14159']. By changing this\r
-expression to:</p>\r
-<pre class="literal-block">\r
-real = Combine( Word(nums) + '.' + Word(nums) )\r
-</pre>\r
-<p>it will not match numbers with embedded spaces, and it will return a\r
-single concatenated string '3.14159' as the parsed token.</p>\r
-</li>\r
-</ul>\r
-</li>\r
-<li><p class="first">Repetition of expressions can be indicated using the '*' operator. An\r
-expression may be multiplied by an integer value (to indicate an exact\r
-repetition count), or by a tuple containing\r
-two integers, or None and an integer, representing min and max repetitions\r
-(with None representing no min or no max, depending whether it is the first or\r
-second tuple element). See the following examples, where n is used to\r
-indicate an integer value:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">expr*3</tt> is equivalent to <tt class="docutils literal">expr + expr + expr</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(2,3)</span></tt> is equivalent to <tt class="docutils literal">expr + expr + Optional(expr)</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(n,None)</span></tt> or <tt class="docutils literal"><span class="pre">expr*(n,)</span></tt> is equivalent\r
-to <tt class="docutils literal">expr*n + ZeroOrMore(expr)</tt> (read as "at least n instances of expr")</li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">expr*(0,n)</span></tt>\r
-(read as "0 to n instances of expr")</li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(None,None)</span></tt> is equivalent to <tt class="docutils literal">ZeroOrMore(expr)</tt></li>\r
-<li><tt class="docutils literal"><span class="pre">expr*(1,None)</span></tt> is equivalent to <tt class="docutils literal">OneOrMore(expr)</tt></li>\r
-</ul>\r
-<p>Note that <tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> does not raise an exception if\r
-more than n exprs exist in the input stream; that is,\r
-<tt class="docutils literal"><span class="pre">expr*(None,n)</span></tt> does not enforce a maximum number of expr\r
-occurrences. If this behavior is desired, then write\r
-<tt class="docutils literal"><span class="pre">expr*(None,n)</span> + ~expr</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">MatchFirst</tt> expressions are matched left-to-right, and the first\r
-match found will skip all later expressions within, so be sure\r
-to define less-specific patterns after more-specific patterns.\r
-If you are not sure which expressions are most specific, use Or\r
-expressions (defined using the <tt class="docutils literal">^</tt> operator) - they will always\r
-match the longest expression, although they are more\r
-compute-intensive.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Or</tt> expressions will evaluate all of the specified subexpressions\r
-to determine which is the "best" match, that is, which matches\r
-the longest string in the input data. In case of a tie, the\r
-left-most expression in the <tt class="docutils literal">Or</tt> list will win.</p>\r
-</li>\r
-<li><p class="first">If parsing the contents of an entire file, pass it to the\r
-<tt class="docutils literal">parseFile</tt> method using:</p>\r
-<pre class="literal-block">\r
-expr.parseFile( sourceFile )\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseExceptions</tt> will report the location where an expected token\r
-or expression failed to match. For example, if we tried to use our\r
-"Hello, World!" parser to parse "Hello World!" (leaving out the separating\r
-comma), we would get an exception, with the message:</p>\r
-<pre class="literal-block">\r
-pyparsing.ParseException: Expected "," (6), (1,7)\r
-</pre>\r
-<p>In the case of complex\r
-expressions, the reported location may not be exactly where you\r
-would expect. See more information under <a class="reference internal" href="#parseexception">ParseException</a> .</p>\r
-</li>\r
-<li><p class="first">Use the <tt class="docutils literal">Group</tt> class to enclose logical groups of tokens within a\r
-sublist. This will help organize your results into more\r
-hierarchical form (the default behavior is to return matching\r
-tokens as a flat list of matching input strings).</p>\r
-</li>\r
-<li><p class="first">Punctuation may be significant for matching, but is rarely of\r
-much interest in the parsed results. Use the <tt class="docutils literal">suppress()</tt> method\r
-to keep these tokens from cluttering up your returned lists of\r
-tokens. For example, <tt class="docutils literal">delimitedList()</tt> matches a succession of\r
-one or more expressions, separated by delimiters (commas by\r
-default), but only returns a list of the actual expressions -\r
-the delimiters are used for parsing, but are suppressed from the\r
-returned output.</p>\r
-</li>\r
-<li><p class="first">Parse actions can be used to convert values from strings to\r
-other data types (ints, floats, booleans, etc.).</p>\r
-</li>\r
-<li><p class="first">Results names are recommended for retrieving tokens from complex\r
-expressions. It is much easier to access a token using its field\r
-name than using a positional index, especially if the expression\r
-contains optional elements. You can also shortcut\r
-the <tt class="docutils literal">setResultsName</tt> call:</p>\r
-<pre class="literal-block">\r
-stats = "AVE:" + realNum.setResultsName("average") + \\r
- "MIN:" + realNum.setResultsName("min") + \\r
- "MAX:" + realNum.setResultsName("max")\r
-</pre>\r
-<p>can now be written as this:</p>\r
-<pre class="literal-block">\r
-stats = "AVE:" + realNum("average") + \\r
- "MIN:" + realNum("min") + \\r
- "MAX:" + realNum("max")\r
-</pre>\r
-</li>\r
-<li><p class="first">Be careful when defining parse actions that modify global variables or\r
-data structures (as in <tt class="docutils literal">fourFn.py</tt>), especially for low level tokens\r
-or expressions that may occur within an <tt class="docutils literal">And</tt> expression; an early element\r
-of an <tt class="docutils literal">And</tt> may match, but the overall expression may fail.</p>\r
-</li>\r
-<li><p class="first">Performance of pyparsing may be slow for complex grammars and/or large\r
-input strings. The <a class="reference external" href="http://psyco.sourceforge.net/">psyco</a> package can be used to improve the speed of the\r
-pyparsing module with no changes to grammar or program logic - observed\r
-improvments have been in the 20-50% range.</p>\r
-</li>\r
-</ul>\r
-</div>\r
-</div>\r
-<div class="section" id="classes">\r
-<h1><a class="toc-backref" href="#id4">2 Classes</a></h1>\r
-<div class="section" id="classes-in-the-pyparsing-module">\r
-<h2><a class="toc-backref" href="#id5">2.1 Classes in the pyparsing module</a></h2>\r
-<p><tt class="docutils literal">ParserElement</tt> - abstract base class for all pyparsing classes;\r
-methods for code to use are:</p>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">parseString( sourceString, parseAll=False )</tt> - only called once, on the overall\r
-matching pattern; returns a <a class="reference internal" href="#parseresults">ParseResults</a> object that makes the\r
-matched tokens available as a list, and optionally as a dictionary,\r
-or as an object with named attributes; if parseAll is set to True, then\r
-parseString will raise a ParseException if the grammar does not process\r
-the complete input string.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">parseFile( sourceFile )</tt> - a convenience function, that accepts an\r
-input file object or filename. The file contents are passed as a\r
-string to <tt class="docutils literal">parseString()</tt>. <tt class="docutils literal">parseFile</tt> also supports the <tt class="docutils literal">parseAll</tt> argument.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">scanString( sourceString )</tt> - generator function, used to find and\r
-extract matching text in the given source string; for each matched text,\r
-returns a tuple of:</p>\r
-<ul class="simple">\r
-<li>matched tokens (packaged as a <a class="reference internal" href="#parseresults">ParseResults</a> object)</li>\r
-<li>start location of the matched text in the given source string</li>\r
-<li>end location in the given source string</li>\r
-</ul>\r
-<p><tt class="docutils literal">scanString</tt> allows you to scan through the input source string for\r
-random matches, instead of exhaustively defining the grammar for the entire\r
-source text (as would be required with <tt class="docutils literal">parseString</tt>).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">transformString( sourceString )</tt> - convenience wrapper function for\r
-<tt class="docutils literal">scanString</tt>, to process the input source string, and replace matching\r
-text with the tokens returned from parse actions defined in the grammar\r
-(see <a class="reference internal" href="#setparseaction">setParseAction</a>).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">searchString( sourceString )</tt> - another convenience wrapper function for\r
-<tt class="docutils literal">scanString</tt>, returns a list of the matching tokens returned from each\r
-call to <tt class="docutils literal">scanString</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setName( name )</tt> - associate a short descriptive name for this\r
-element, useful in displaying exceptions and trace information</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setResultsName( string, listAllMatches=False )</tt> - name to be given\r
-to tokens matching\r
-the element; if multiple tokens within\r
-a repetition group (such as <tt class="docutils literal">ZeroOrMore</tt> or <tt class="docutils literal">delimitedList</tt>) the\r
-default is to return only the last matching token - if listAllMatches\r
-is set to True, then a list of all the matching tokens is returned.\r
-(New in 1.5.6 - a results name with a trailing '*' character will be\r
-interpreted as setting listAllMatches to True.)\r
-Note:\r
-<tt class="docutils literal">setResultsName</tt> returns a <em>copy</em> of the element so that a single\r
-basic element can be referenced multiple times and given\r
-different names within a complex grammar.</p>\r
-</li>\r
-</ul>\r
-<ul id="setparseaction">\r
-<li><p class="first"><tt class="docutils literal">setParseAction( *fn )</tt> - specify one or more functions to call after successful\r
-matching of the element; each function is defined as <tt class="docutils literal">fn( s,\r
-loc, toks )</tt>, where:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">s</tt> is the original parse string</li>\r
-<li><tt class="docutils literal">loc</tt> is the location in the string where matching started</li>\r
-<li><tt class="docutils literal">toks</tt> is the list of the matched tokens, packaged as a <a class="reference internal" href="#parseresults">ParseResults</a> object</li>\r
-</ul>\r
-<p>Multiple functions can be attached to a ParserElement by specifying multiple\r
-arguments to setParseAction, or by calling setParseAction multiple times.</p>\r
-<p>Each parse action function can return a modified <tt class="docutils literal">toks</tt> list, to perform conversion, or\r
-string modifications. For brevity, <tt class="docutils literal">fn</tt> may also be a\r
-lambda - here is an example of using a parse action to convert matched\r
-integer tokens from strings to integers:</p>\r
-<pre class="literal-block">\r
-intNumber = Word(nums).setParseAction( lambda s,l,t: [ int(t[0]) ] )\r
-</pre>\r
-<p>If <tt class="docutils literal">fn</tt> does not modify the <tt class="docutils literal">toks</tt> list, it does not need to return\r
-anything at all.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setBreak( breakFlag=True )</tt> - if breakFlag is True, calls pdb.set_break()\r
-as this expression is about to be parsed</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">copy()</tt> - returns a copy of a ParserElement; can be used to use the same\r
-parse expression in different places in a grammar, with different parse actions\r
-attached to each</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">leaveWhitespace()</tt> - change default behavior of skipping\r
-whitespace before starting matching (mostly used internally to the\r
-pyparsing module, rarely used by client code)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setWhitespaceChars( chars )</tt> - define the set of chars to be ignored\r
-as whitespace before trying to match a specific ParserElement, in place of the\r
-default set of whitespace (space, tab, newline, and return)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setDefaultWhitespaceChars( chars )</tt> - class-level method to override\r
-the default set of whitespace chars for all subsequently created ParserElements\r
-(including copies); useful when defining grammars that treat one or more of the\r
-default whitespace characters as significant (such as a line-sensitive grammar, to\r
-omit newline from the list of ignorable whitespace)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">suppress()</tt> - convenience function to suppress the output of the\r
-given element, instead of wrapping it with a Suppress object.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ignore( expr )</tt> - function to specify parse expression to be\r
-ignored while matching defined patterns; can be called\r
-repeatedly to specify multiple expressions; useful to specify\r
-patterns of comment syntax, for example</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">setDebug( dbgFlag=True )</tt> - function to enable/disable tracing output\r
-when trying to match this element</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">validate()</tt> - function to verify that the defined grammar does not\r
-contain infinitely recursive constructs</p>\r
-</li>\r
-</ul>\r
-<ul class="simple" id="parsewithtabs">\r
-<li><tt class="docutils literal">parseWithTabs()</tt> - function to override default behavior of converting\r
-tabs to spaces before parsing the input string; rarely used, except when\r
-specifying whitespace-significant grammars using the <a class="reference internal" href="#white">White</a> class.</li>\r
-<li><tt class="docutils literal">enablePackrat()</tt> - a class-level static method to enable a memoizing\r
-performance enhancement, known as "packrat parsing". packrat parsing is\r
-disabled by default, since it may conflict with some user programs that use\r
-parse actions. To activate the packrat feature, your\r
-program must call the class method ParserElement.enablePackrat(). If\r
-your program uses psyco to "compile as you go", you must call\r
-enablePackrat before calling psyco.full(). If you do not do this,\r
-Python will crash. For best results, call enablePackrat() immediately\r
-after importing pyparsing.</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="basic-parserelement-subclasses">\r
-<h2><a class="toc-backref" href="#id6">2.2 Basic ParserElement subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Literal</tt> - construct with a string to be matched exactly</li>\r
-<li><tt class="docutils literal">CaselessLiteral</tt> - construct with a string to be matched, but\r
-without case checking; results are always returned as the\r
-defining literal, NOT as they are found in the input string</li>\r
-<li><tt class="docutils literal">Keyword</tt> - similar to Literal, but must be immediately followed by\r
-whitespace, punctuation, or other non-keyword characters; prevents\r
-accidental matching of a non-keyword that happens to begin with a\r
-defined keyword</li>\r
-<li><tt class="docutils literal">CaselessKeyword</tt> - similar to Keyword, but with caseless matching\r
-behavior</li>\r
-</ul>\r
-<ul id="word">\r
-<li><p class="first"><tt class="docutils literal">Word</tt> - one or more contiguous characters; construct with a\r
-string containing the set of allowed initial characters, and an\r
-optional second string of allowed body characters; for instance,\r
-a common Word construct is to match a code identifier - in C, a\r
-valid identifier must start with an alphabetic character or an\r
-underscore ('_'), followed by a body that can also include numeric\r
-digits. That is, <tt class="docutils literal">a</tt>, <tt class="docutils literal">i</tt>, <tt class="docutils literal">MAX_LENGTH</tt>, <tt class="docutils literal">_a1</tt>, <tt class="docutils literal">b_109_</tt>, and\r
-<tt class="docutils literal">plan9FromOuterSpace</tt>\r
-are all valid identifiers; <tt class="docutils literal">9b7z</tt>, <tt class="docutils literal">$a</tt>, <tt class="docutils literal">.section</tt>, and <tt class="docutils literal">0debug</tt>\r
-are not. To\r
-define an identifier using a Word, use either of the following:</p>\r
-<pre class="literal-block">\r
-- Word( alphas+"_", alphanums+"_" )\r
-- Word( srange("[a-zA-Z_]"), srange("[a-zA-Z0-9_]") )\r
-</pre>\r
-<p>If only one\r
-string given, it specifies that the same character set defined\r
-for the initial character is used for the word body; for instance, to\r
-define an identifier that can only be composed of capital letters and\r
-underscores, use:</p>\r
-<pre class="literal-block">\r
-- Word( "ABCDEFGHIJKLMNOPQRSTUVWXYZ_" )\r
-- Word( srange("[A-Z_]") )\r
-</pre>\r
-<p>A Word may\r
-also be constructed with any of the following optional parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">min</tt> - indicating a minimum length of matching characters</li>\r
-<li><tt class="docutils literal">max</tt> - indicating a maximum length of matching characters</li>\r
-<li><tt class="docutils literal">exact</tt> - indicating an exact length of matching characters</li>\r
-</ul>\r
-<p>If exact is specified, it will override any values for min or max.</p>\r
-<p>New in 1.5.6 - Sometimes you want to define a word using all\r
-characters in a range except for one or two of them; you can do this\r
-with the new <tt class="docutils literal">excludeChars</tt> argument. This is helpful if you want to define\r
-a word with all printables except for a single delimiter character, such\r
-as '.'. Previously, you would have to create a custom string to pass to <tt class="docutils literal">Word</tt>.\r
-With this change, you can just create <tt class="docutils literal">Word(printables, <span class="pre">excludeChars='.')</span></tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">CharsNotIn</tt> - similar to <a class="reference internal" href="#word">Word</a>, but matches characters not\r
-in the given constructor string (accepts only one string for both\r
-initial and body characters); also supports min, max, and exact\r
-optional parameters.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Regex</tt> - a powerful construct, that accepts a regular expression\r
-to be matched at the current parse position; accepts an optional\r
-flags parameter, corresponding to the flags parameter in the re.compile\r
-method; if the expression includes named sub-fields, they will be\r
-represented in the returned <a class="reference internal" href="#parseresults">ParseResults</a></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">QuotedString</tt> - supports the definition of custom quoted string\r
-formats, in addition to pyparsing's built-in dblQuotedString and\r
-sglQuotedString. QuotedString allows you to specify the following\r
-parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">quoteChar</tt> - string of one or more characters defining the quote delimiting string</li>\r
-<li><tt class="docutils literal">escChar</tt> - character to escape quotes, typically backslash (default=None)</li>\r
-<li><tt class="docutils literal">escQuote</tt> - special quote sequence to escape an embedded quote string (such as SQL's "" to escape an embedded ") (default=None)</li>\r
-<li><tt class="docutils literal">multiline</tt> - boolean indicating whether quotes can span multiple lines (default=<tt class="docutils literal">False</tt>)</li>\r
-<li><tt class="docutils literal">unquoteResults</tt> - boolean indicating whether the matched text should be unquoted (default=<tt class="docutils literal">True</tt>)</li>\r
-<li><tt class="docutils literal">endQuoteChar</tt> - string of one or more characters defining the end of the quote delimited string (default=None => same as quoteChar)</li>\r
-</ul>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">SkipTo</tt> - skips ahead in the input string, accepting any\r
-characters up to the specified pattern; may be constructed with\r
-the following optional parameters:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">include</tt> - if set to true, also consumes the match expression\r
-(default is <tt class="docutils literal">False</tt>)</li>\r
-<li><tt class="docutils literal">ignore</tt> - allows the user to specify patterns to not be matched,\r
-to prevent false matches</li>\r
-<li><tt class="docutils literal">failOn</tt> - if a literal string or expression is given for this argument, it defines an expression that\r
-should cause the <tt class="docutils literal">SkipTo</tt> expression to fail, and not skip over that expression</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<ul class="simple" id="white">\r
-<li><tt class="docutils literal">White</tt> - also similar to <a class="reference internal" href="#word">Word</a>, but matches whitespace\r
-characters. Not usually needed, as whitespace is implicitly\r
-ignored by pyparsing. However, some grammars are whitespace-sensitive,\r
-such as those that use leading tabs or spaces to indicating grouping\r
-or hierarchy. (If matching on tab characters, be sure to call\r
-<a class="reference internal" href="#parsewithtabs">parseWithTabs</a> on the top-level parse element.)</li>\r
-<li><tt class="docutils literal">Empty</tt> - a null expression, requiring no characters - will always\r
-match; useful for debugging and for specialized grammars</li>\r
-<li><tt class="docutils literal">NoMatch</tt> - opposite of Empty, will never match; useful for debugging\r
-and for specialized grammars</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="expression-subclasses">\r
-<h2><a class="toc-backref" href="#id7">2.3 Expression subclasses</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">And</tt> - construct with a list of ParserElements, all of which must\r
-match for And to match; can also be created using the '+'\r
-operator; multiple expressions can be Anded together using the '*'\r
-operator as in:</p>\r
-<pre class="literal-block">\r
-ipAddress = Word(nums) + ('.'+Word(nums))*3\r
-</pre>\r
-<p>A tuple can be used as the multiplier, indicating a min/max:</p>\r
-<pre class="literal-block">\r
-usPhoneNumber = Word(nums) + ('-'+Word(nums))*(1,2)\r
-</pre>\r
-<p>A special form of <tt class="docutils literal">And</tt> is created if the '-' operator is used\r
-instead of the '+' operator. In the ipAddress example above, if\r
-no trailing '.' and Word(nums) are found after matching the initial\r
-Word(nums), then pyparsing will back up in the grammar and try other\r
-alternatives to ipAddress. However, if ipAddress is defined as:</p>\r
-<pre class="literal-block">\r
-strictIpAddress = Word(nums) - ('.'+Word(nums))*3\r
-</pre>\r
-<p>then no backing up is done. If the first Word(nums) of strictIpAddress\r
-is matched, then any mismatch after that will raise a ParseSyntaxException,\r
-which will halt the parsing process immediately. By careful use of the\r
-'-' operator, grammars can provide meaningful error messages close to\r
-the location where the incoming text does not match the specified\r
-grammar.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Or</tt> - construct with a list of ParserElements, any of which must\r
-match for Or to match; if more than one expression matches, the\r
-expression that makes the longest match will be used; can also\r
-be created using the '^' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">MatchFirst</tt> - construct with a list of ParserElements, any of\r
-which must match for MatchFirst to match; matching is done\r
-left-to-right, taking the first expression that matches; can\r
-also be created using the '|' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Each</tt> - similar to And, in that all of the provided expressions\r
-must match; however, Each permits matching to be done in any order;\r
-can also be created using the '&' operator</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">Optional</tt> - construct with a ParserElement, but this element is\r
-not required to match; can be constructed with an optional <tt class="docutils literal">default</tt> argument,\r
-containing a default string or object to be supplied if the given optional\r
-parse element is not found in the input string; parse action will only\r
-be called if a match is found, or if a default is specified</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ZeroOrMore</tt> - similar to Optional, but can be repeated</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">OneOrMore</tt> - similar to ZeroOrMore, but at least one match must\r
-be present</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">FollowedBy</tt> - a lookahead expression, requires matching of the given\r
-expressions, but does not advance the parsing position within the input string</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">NotAny</tt> - a negative lookahead expression, prevents matching of named\r
-expressions, does not advance the parsing position within the input string;\r
-can also be created using the unary '~' operator</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="expression-operators">\r
-<span id="operators"></span><h2><a class="toc-backref" href="#id8">2.4 Expression operators</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">~</tt> - creates NotAny using the expression after the operator</li>\r
-<li><tt class="docutils literal">+</tt> - creates And using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">|</tt> - creates MatchFirst (first left-to-right match) using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">^</tt> - creates Or (longest match) using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">&</tt> - creates Each using the expressions before and after the operator</li>\r
-<li><tt class="docutils literal">*</tt> - creates And by multiplying the expression by the integer operand; if\r
-expression is multiplied by a 2-tuple, creates an And of (min,max)\r
-expressions (similar to "{min,max}" form in regular expressions); if\r
-min is None, intepret as (0,max); if max is None, interpret as\r
-expr*min + ZeroOrMore(expr)</li>\r
-<li><tt class="docutils literal">-</tt> - like <tt class="docutils literal">+</tt> but with no backup and retry of alternatives</li>\r
-<li><tt class="docutils literal">*</tt> - repetition of expression</li>\r
-<li><tt class="docutils literal">==</tt> - matching expression to string; returns True if the string matches the given expression</li>\r
-<li><tt class="docutils literal"><<=</tt> - inserts the expression following the operator as the body of the\r
-Forward expression before the operator (formerly <<, which is now deprecated)</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="positional-subclasses">\r
-<h2><a class="toc-backref" href="#id9">2.5 Positional subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">StringStart</tt> - matches beginning of the text</li>\r
-<li><tt class="docutils literal">StringEnd</tt> - matches the end of the text</li>\r
-<li><tt class="docutils literal">LineStart</tt> - matches beginning of a line (lines delimited by <tt class="docutils literal">\n</tt> characters)</li>\r
-<li><tt class="docutils literal">LineEnd</tt> - matches the end of a line</li>\r
-<li><tt class="docutils literal">WordStart</tt> - matches a leading word boundary</li>\r
-<li><tt class="docutils literal">WordEnd</tt> - matches a trailing word boundary</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="converter-subclasses">\r
-<h2><a class="toc-backref" href="#id10">2.6 Converter subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Upcase</tt> - converts matched tokens to uppercase (deprecated -\r
-use <tt class="docutils literal">upcaseTokens</tt> parse action instead)</li>\r
-<li><tt class="docutils literal">Combine</tt> - joins all matched tokens into a single string, using\r
-specified joinString (default <tt class="docutils literal"><span class="pre">joinString=""</span></tt>); expects\r
-all matching tokens to be adjacent, with no intervening\r
-whitespace (can be overridden by specifying <tt class="docutils literal">adjacent=False</tt> in constructor)</li>\r
-<li><tt class="docutils literal">Suppress</tt> - clears matched tokens; useful to keep returned\r
-results from being cluttered with required but uninteresting\r
-tokens (such as list delimiters)</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="special-subclasses">\r
-<h2><a class="toc-backref" href="#id11">2.7 Special subclasses</a></h2>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">Group</tt> - causes the matched tokens to be enclosed in a list;\r
-useful in repeated elements like <tt class="docutils literal">ZeroOrMore</tt> and <tt class="docutils literal">OneOrMore</tt> to\r
-break up matched tokens into groups for each repeated pattern</li>\r
-<li><tt class="docutils literal">Dict</tt> - like <tt class="docutils literal">Group</tt>, but also constructs a dictionary, using the\r
-[0]'th elements of all enclosed token lists as the keys, and\r
-each token list as the value</li>\r
-<li><tt class="docutils literal">SkipTo</tt> - catch-all matching expression that accepts all characters\r
-up until the given pattern is found to match; useful for specifying\r
-incomplete grammars</li>\r
-<li><tt class="docutils literal">Forward</tt> - placeholder token used to define recursive token\r
-patterns; when defining the actual expression later in the\r
-program, insert it into the <tt class="docutils literal">Forward</tt> object using the <tt class="docutils literal"><<=</tt>\r
-operator (see <tt class="docutils literal">fourFn.py</tt> for an example).</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="other-classes">\r
-<h2><a class="toc-backref" href="#id12">2.8 Other classes</a></h2>\r
-<ul id="parseresults">\r
-<li><p class="first"><tt class="docutils literal">ParseResults</tt> - class used to contain and manage the lists of tokens\r
-created from parsing the input using the user-defined parse\r
-expression. ParseResults can be accessed in a number of ways:</p>\r
-<ul class="simple">\r
-<li>as a list<ul>\r
-<li>total list of elements can be found using len()</li>\r
-<li>individual elements can be found using [0], [1], [-1], etc.</li>\r
-<li>elements can be deleted using <tt class="docutils literal">del</tt></li>\r
-<li>the -1th element can be extracted and removed in a single operation\r
-using <tt class="docutils literal">pop()</tt>, or any element can be extracted and removed\r
-using <tt class="docutils literal">pop(n)</tt></li>\r
-</ul>\r
-</li>\r
-<li>as a dictionary<ul>\r
-<li>if <tt class="docutils literal">setResultsName()</tt> is used to name elements within the\r
-overall parse expression, then these fields can be referenced\r
-as dictionary elements or as attributes</li>\r
-<li>the Dict class generates dictionary entries using the data of the\r
-input text - in addition to ParseResults listed as <tt class="docutils literal">[ [ a1, b1, c1, <span class="pre">...],</span> [ a2, b2, c2, <span class="pre">...]</span> ]</tt>\r
-it also acts as a dictionary with entries defined as <tt class="docutils literal">{ a1 : [ b1, c1, ... ] }, { a2 : [ b2, c2, ... ] }</tt>;\r
-this is especially useful when processing tabular data where the first column contains a key\r
-value for that line of data</li>\r
-<li>list elements that are deleted using <tt class="docutils literal">del</tt> will still be accessible by their\r
-dictionary keys</li>\r
-<li>supports <tt class="docutils literal">get()</tt>, <tt class="docutils literal">items()</tt> and <tt class="docutils literal">keys()</tt> methods, similar to a dictionary</li>\r
-<li>a keyed item can be extracted and removed using <tt class="docutils literal">pop(key)</tt>. Here\r
-key must be non-numeric (such as a string), in order to use dict\r
-extraction instead of list extraction.</li>\r
-<li>new named elements can be added (in a parse action, for instance), using the same\r
-syntax as adding an item to a dict (<tt class="docutils literal"><span class="pre">parseResults["X"]="new</span> item"</tt>); named elements can be removed using <tt class="docutils literal">del <span class="pre">parseResults["X"]</span></tt></li>\r
-</ul>\r
-</li>\r
-<li>as a nested list<ul>\r
-<li>results returned from the Group class are encapsulated within their\r
-own list structure, so that the tokens can be handled as a hierarchical\r
-tree</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<p>ParseResults can also be converted to an ordinary list of strings\r
-by calling <tt class="docutils literal">asList()</tt>. Note that this will strip the results of any\r
-field names that have been defined for any embedded parse elements.\r
-(The <tt class="docutils literal">pprint</tt> module is especially good at printing out the nested contents\r
-given by <tt class="docutils literal">asList()</tt>.)</p>\r
-<p>Finally, ParseResults can be converted to an XML string by calling <tt class="docutils literal">asXML()</tt>. Where\r
-possible, results will be tagged using the results names defined for the respective\r
-ParseExpressions. <tt class="docutils literal">asXML()</tt> takes two optional arguments:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">doctagname</tt> - for ParseResults that do not have a defined name, this argument\r
-will wrap the resulting XML in a set of opening and closing tags <tt class="docutils literal"><doctagname></tt>\r
-and <tt class="docutils literal"></doctagname></tt>.</li>\r
-<li><tt class="docutils literal">namedItemsOnly</tt> (default=<tt class="docutils literal">False</tt>) - flag to indicate if the generated XML should\r
-skip items that do not have defined names. If a nested group item is named, then all\r
-embedded items will be included, whether they have names or not.</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="exception-classes-and-troubleshooting">\r
-<h2><a class="toc-backref" href="#id13">2.9 Exception classes and Troubleshooting</a></h2>\r
-<ul id="parseexception">\r
-<li><p class="first"><tt class="docutils literal">ParseException</tt> - exception returned when a grammar parse fails;\r
-ParseExceptions have attributes loc, msg, line, lineno, and column; to view the\r
-text line and location where the reported ParseException occurs, use:</p>\r
-<pre class="literal-block">\r
-except ParseException, err:\r
- print err.line\r
- print " "*(err.column-1) + "^"\r
- print err\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">RecursiveGrammarException</tt> - exception returned by <tt class="docutils literal">validate()</tt> if\r
-the grammar contains a recursive infinite loop, such as:</p>\r
-<pre class="literal-block">\r
-badGrammar = Forward()\r
-goodToken = Literal("A")\r
-badGrammar <<= Optional(goodToken) + badGrammar\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseFatalException</tt> - exception that parse actions can raise to stop parsing\r
-immediately. Should be used when a semantic error is found in the input text, such\r
-as a mismatched XML tag.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ParseSyntaxException</tt> - subclass of <tt class="docutils literal">ParseFatalException</tt> raised when a\r
-syntax error is found, based on the use of the '-' operator when defining\r
-a sequence of expressions in an <tt class="docutils literal">And</tt> expression.</p>\r
-</li>\r
-</ul>\r
-<p>You can also get some insights into the parsing logic using diagnostic parse actions,\r
-and setDebug(), or test the matching of expression fragments by testing them using\r
-scanString().</p>\r
-</div>\r
-</div>\r
-<div class="section" id="miscellaneous-attributes-and-methods">\r
-<h1><a class="toc-backref" href="#id14">3 Miscellaneous attributes and methods</a></h1>\r
-<div class="section" id="helper-methods">\r
-<h2><a class="toc-backref" href="#id15">3.1 Helper methods</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">delimitedList( expr, <span class="pre">delim=',')</span></tt> - convenience function for\r
-matching one or more occurrences of expr, separated by delim.\r
-By default, the delimiters are suppressed, so the returned results contain\r
-only the separate list elements. Can optionally specify <tt class="docutils literal">combine=True</tt>,\r
-indicating that the expressions and delimiters should be returned as one\r
-combined value (useful for scoped variables, such as "a.b.c", or\r
-"a::b::c", or paths such as "a/b/c").</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">countedArray( expr )</tt> - convenience function for a pattern where an list of\r
-instances of the given expression are preceded by an integer giving the count of\r
-elements in the list. Returns an expression that parses the leading integer,\r
-reads exactly that many expressions, and returns the array of expressions in the\r
-parse results - the leading integer is suppressed from the results (although it\r
-is easily reconstructed by using len on the returned array).</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">oneOf( string, caseless=False )</tt> - convenience function for quickly declaring an\r
-alternative set of <tt class="docutils literal">Literal</tt> tokens, by splitting the given string on\r
-whitespace boundaries. The tokens are sorted so that longer\r
-matches are attempted first; this ensures that a short token does\r
-not mask a longer one that starts with the same characters. If <tt class="docutils literal">caseless=True</tt>,\r
-will create an alternative set of CaselessLiteral tokens.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">dictOf( key, value )</tt> - convenience function for quickly declaring a\r
-dictionary pattern of <tt class="docutils literal">Dict( ZeroOrMore( Group( key + value ) ) )</tt>.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">makeHTMLTags( tagName )</tt> and <tt class="docutils literal">makeXMLTags( tagName )</tt> - convenience\r
-functions to create definitions of opening and closing tag expressions. Returns\r
-a pair of expressions, for the corresponding <tag> and </tag> strings. Includes\r
-support for attributes in the opening tag, such as <tag attr1="abc"> - attributes\r
-are returned as keyed tokens in the returned ParseResults. <tt class="docutils literal">makeHTMLTags</tt> is less\r
-restrictive than <tt class="docutils literal">makeXMLTags</tt>, especially with respect to case sensitivity.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">infixNotation(baseOperand, operatorList)</tt> - (formerly named <tt class="docutils literal">operatorPrecedence</tt>) convenience function to define a\r
-grammar for parsing infix notation\r
-expressions with a hierarchical precedence of operators. To use the <tt class="docutils literal">infixNotation</tt>\r
-helper:</p>\r
-<ol class="arabic simple">\r
-<li>Define the base "atom" operand term of the grammar.\r
-For this simple grammar, the smallest operand is either\r
-and integer or a variable. This will be the first argument\r
-to the <tt class="docutils literal">infixNotation</tt> method.</li>\r
-<li>Define a list of tuples for each level of operator\r
-precendence. Each tuple is of the form\r
-<tt class="docutils literal">(opExpr, numTerms, rightLeftAssoc, parseAction)</tt>, where:<ul>\r
-<li><tt class="docutils literal">opExpr</tt> is the pyparsing expression for the operator;\r
-may also be a string, which will be converted to a Literal; if\r
-None, indicates an empty operator, such as the implied\r
-multiplication operation between 'm' and 'x' in "y = mx + b".\r
-If <tt class="docutils literal">numTerms</tt> parameter is 3, this must be a 2-tuple containing the 2 delimiting operators.</li>\r
-<li><tt class="docutils literal">numTerms</tt> is the number of terms for this operator (must\r
-be 1,2, or 3)</li>\r
-<li><tt class="docutils literal">rightLeftAssoc</tt> is the indicator whether the operator is\r
-right or left associative, using the pyparsing-defined\r
-constants <tt class="docutils literal">opAssoc.RIGHT</tt> and <tt class="docutils literal">opAssoc.LEFT</tt>.</li>\r
-<li><tt class="docutils literal">parseAction</tt> is the parse action to be associated with\r
-expressions matching this operator expression (the\r
-parse action tuple member may be omitted)</li>\r
-</ul>\r
-</li>\r
-<li>Call <tt class="docutils literal">infixNotation</tt> passing the operand expression and\r
-the operator precedence list, and save the returned value\r
-as the generated pyparsing expression. You can then use\r
-this expression to parse input strings, or incorporate it\r
-into a larger, more complex grammar.</li>\r
-</ol>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">matchPreviousLiteral</tt> and <tt class="docutils literal">matchPreviousExpr</tt> - function to define and\r
-expression that matches the same content\r
-as was parsed in a previous parse expression. For instance:</p>\r
-<pre class="literal-block">\r
-first = Word(nums)\r
-matchExpr = first + ":" + matchPreviousLiteral(first)\r
-</pre>\r
-<p>will match "1:1", but not "1:2". Since this matches at the literal\r
-level, this will also match the leading "1:1" in "1:10".</p>\r
-<p>In contrast:</p>\r
-<pre class="literal-block">\r
-first = Word(nums)\r
-matchExpr = first + ":" + matchPreviousExpr(first)\r
-</pre>\r
-<p>will <em>not</em> match the leading "1:1" in "1:10"; the expressions are\r
-evaluated first, and then compared, so "1" is compared with "10".</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">nestedExpr(opener, closer, content=None, ignoreExpr=quotedString)</tt> - method for defining nested\r
-lists enclosed in opening and closing delimiters.</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">opener</tt> - opening character for a nested list (default="("); can also be a pyparsing expression</li>\r
-<li><tt class="docutils literal">closer</tt> - closing character for a nested list (default=")"); can also be a pyparsing expression</li>\r
-<li><tt class="docutils literal">content</tt> - expression for items within the nested lists (default=None)</li>\r
-<li><tt class="docutils literal">ignoreExpr</tt> - expression for ignoring opening and closing delimiters (default=quotedString)</li>\r
-</ul>\r
-<p>If an expression is not provided for the content argument, the nested\r
-expression will capture all whitespace-delimited content between delimiters\r
-as a list of separate values.</p>\r
-<p>Use the <tt class="docutils literal">ignoreExpr</tt> argument to define expressions that may contain\r
-opening or closing characters that should not be treated as opening\r
-or closing characters for nesting, such as quotedString or a comment\r
-expression. Specify multiple expressions using an Or or MatchFirst.\r
-The default is quotedString, but if no expressions are to be ignored,\r
-then pass None for this argument.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">indentedBlock( statementExpr, indentationStackVar, indent=True)</tt> -\r
-function to define an indented block of statements, similar to\r
-indentation-based blocking in Python source code:</p>\r
-<ul class="simple">\r
-<li><tt class="docutils literal">statementExpr</tt> - the expression defining a statement that\r
-will be found in the indented block; a valid indentedBlock\r
-must contain at least 1 matching statementExpr</li>\r
-<li><tt class="docutils literal">indentationStackVar</tt> - a Python list variable; this variable\r
-should be common to all <tt class="docutils literal">indentedBlock</tt> expressions defined\r
-within the same grammar, and should be reinitialized to [1]\r
-each time the grammar is to be used</li>\r
-<li><tt class="docutils literal">indent</tt> - a boolean flag indicating whether the expressions\r
-within the block must be indented from the current parse\r
-location; if using indentedBlock to define the left-most\r
-statements (all starting in column 1), set indent to False</li>\r
-</ul>\r
-</li>\r
-</ul>\r
-<ul id="originaltextfor">\r
-<li><p class="first"><tt class="docutils literal">originalTextFor( expr )</tt> - helper function to preserve the originally parsed text, regardless of any\r
-token processing or conversion done by the contained expression. For instance, the following expression:</p>\r
-<pre class="literal-block">\r
-fullName = Word(alphas) + Word(alphas)\r
-</pre>\r
-<p>will return the parse of "John Smith" as ['John', 'Smith']. In some applications, the actual name as it\r
-was given in the input string is what is desired. To do this, use <tt class="docutils literal">originalTextFor</tt>:</p>\r
-<pre class="literal-block">\r
-fullName = originalTextFor(Word(alphas) + Word(alphas))\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">ungroup( expr )</tt> - function to "ungroup" returned tokens; useful\r
-to undo the default behavior of And to always group the returned tokens, even\r
-if there is only one in the list. (New in 1.5.6)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">lineno( loc, string )</tt> - function to give the line number of the\r
-location within the string; the first line is line 1, newlines\r
-start new rows</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">col( loc, string )</tt> - function to give the column number of the\r
-location within the string; the first column is column 1,\r
-newlines reset the column number to 1</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">line( loc, string )</tt> - function to retrieve the line of text\r
-representing <tt class="docutils literal">lineno( loc, string )</tt>; useful when printing out diagnostic\r
-messages for exceptions</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">srange( rangeSpec )</tt> - function to define a string of characters,\r
-given a string of the form used by regexp string ranges, such as <tt class="docutils literal"><span class="pre">"[0-9]"</span></tt> for\r
-all numeric digits, <tt class="docutils literal"><span class="pre">"[A-Z_]"</span></tt> for uppercase characters plus underscore, and\r
-so on (note that rangeSpec does not include support for generic regular\r
-expressions, just string range specs)</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">getTokensEndLoc()</tt> - function to call from within a parse action to get\r
-the ending location for the matched tokens</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">traceParseAction(fn)</tt> - decorator function to debug parse actions. Lists\r
-each call, called arguments, and return value or exception</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="helper-parse-actions">\r
-<h2><a class="toc-backref" href="#id16">3.2 Helper parse actions</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">removeQuotes</tt> - removes the first and last characters of a quoted string;\r
-useful to remove the delimiting quotes from quoted strings</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">replaceWith(replString)</tt> - returns a parse action that simply returns the\r
-replString; useful when using transformString, or converting HTML entities, as in:</p>\r
-<pre class="literal-block">\r
-nbsp = Literal("&nbsp;").setParseAction( replaceWith("<BLANK>") )\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">keepOriginalText</tt>- (deprecated, use <a class="reference internal" href="#originaltextfor">originalTextFor</a> instead) restores any internal whitespace or suppressed\r
-text within the tokens for a matched parse\r
-expression. This is especially useful when defining expressions\r
-for scanString or transformString applications.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">withAttribute( *args, **kwargs )</tt> - helper to create a validating parse action to be used with start tags created\r
-with <tt class="docutils literal">makeXMLTags</tt> or <tt class="docutils literal">makeHTMLTags</tt>. Use <tt class="docutils literal">withAttribute</tt> to qualify a starting tag\r
-with a required attribute value, to avoid false matches on common tags such as\r
-<tt class="docutils literal"><TD></tt> or <tt class="docutils literal"><DIV></tt>.</p>\r
-<p><tt class="docutils literal">withAttribute</tt> can be called with:</p>\r
-<ul class="simple">\r
-<li>keyword arguments, as in <tt class="docutils literal"><span class="pre">(class="Customer",align="right")</span></tt>, or</li>\r
-<li>a list of name-value tuples, as in <tt class="docutils literal">( ("ns1:class", <span class="pre">"Customer"),</span> <span class="pre">("ns2:align","right")</span> )</tt></li>\r
-</ul>\r
-<p>An attribute can be specified to have the special value\r
-<tt class="docutils literal">withAttribute.ANY_VALUE</tt>, which will match any value - use this to\r
-ensure that an attribute is present but any attribute value is\r
-acceptable.</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">downcaseTokens</tt> - converts all matched tokens to lowercase</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">upcaseTokens</tt> - converts all matched tokens to uppercase</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">matchOnlyAtCol( columnNumber )</tt> - a parse action that verifies that\r
-an expression was matched at a particular column, raising a\r
-ParseException if matching at a different column number; useful when parsing\r
-tabular data</p>\r
-</li>\r
-</ul>\r
-</div>\r
-<div class="section" id="common-string-and-token-constants">\r
-<h2><a class="toc-backref" href="#id17">3.3 Common string and token constants</a></h2>\r
-<ul>\r
-<li><p class="first"><tt class="docutils literal">alphas</tt> - same as <tt class="docutils literal">string.letters</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">nums</tt> - same as <tt class="docutils literal">string.digits</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">alphanums</tt> - a string containing <tt class="docutils literal">alphas + nums</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">alphas8bit</tt> - a string containing alphabetic 8-bit characters:</p>\r
-<pre class="literal-block">\r
-ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ\r
-</pre>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">printables</tt> - same as <tt class="docutils literal">string.printable</tt>, minus the space (<tt class="docutils literal">' '</tt>) character</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">empty</tt> - a global <tt class="docutils literal">Empty()</tt>; will always match</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">sglQuotedString</tt> - a string of characters enclosed in 's; may\r
-include whitespace, but not newlines</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">dblQuotedString</tt> - a string of characters enclosed in "s; may\r
-include whitespace, but not newlines</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">quotedString</tt> - <tt class="docutils literal">sglQuotedString | dblQuotedString</tt></p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">cStyleComment</tt> - a comment block delimited by <tt class="docutils literal"><span class="pre">'/*'</span></tt> and <tt class="docutils literal"><span class="pre">'*/'</span></tt> sequences; can span\r
-multiple lines, but does not support nesting of comments</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">htmlComment</tt> - a comment block delimited by <tt class="docutils literal"><span class="pre">'<!--'</span></tt> and <tt class="docutils literal"><span class="pre">'-->'</span></tt> sequences; can span\r
-multiple lines, but does not support nesting of comments</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">commaSeparatedList</tt> - similar to <tt class="docutils literal">delimitedList</tt>, except that the\r
-list expressions can be any text value, or a quoted string; quoted strings can\r
-safely include commas without incorrectly breaking the string into two tokens</p>\r
-</li>\r
-<li><p class="first"><tt class="docutils literal">restOfLine</tt> - all remaining printable characters up to but not including the next\r
-newline</p>\r
-</li>\r
-</ul>\r
-</div>\r
-</div>\r
-</div>\r
-</body>\r
-</html>\r
+++ /dev/null
-<HTML>\r
-<title>pyparsing Examples</title>\r
-<body>\r
-<h1>pyparsing Examples</h1>\r
-<p>\r
-This directory contains a number of Python scripts that can get you started in learning to use pyparsing.\r
-\r
-<ul>\r
-<li><a href="greeting.py">greeting.py</a><br>\r
-Parse "Hello, World!".\r
-</li>\r
-<p>\r
-\r
-<li><a href="greetingInKorean.py">greetingInKorean.py</a> <i>~ submission by June Kim</i><br>\r
-Unicode example to parse "Hello, World!" in Korean.\r
-</li>\r
-<p>\r
-\r
-<li><a href="greetingInGreek.py">greetingInGreek.py</a> <i>~ submission by ???</i><br>\r
-Unicode example to parse "Hello, World!" in Greek.\r
-</li>\r
-<p>\r
-\r
-<li><a href="holaMundo.py">holaMundo.py</a> <i>~ submission by Marco Alfonso</i><br>\r
-"Hello, World!" example translated to Spanish, from Marco Alfonso's blog.\r
-</li>\r
-<p>\r
-\r
-<li><a href="chemicalFormulas.py">chemicalFormulas.py</a><br>\r
-Simple example to demonstrate the use of ParseResults returned from parseString(). \r
-Parses a chemical formula (such as "H2O" or "C6H5OH"), and walks the returned list of tokens to calculate the molecular weight.\r
-</li>\r
-<p>\r
-\r
-<li><a href="wordsToNum.py">wordsToNum.py</a><br>\r
-A sample program that reads a number in words (such as "fifteen hundred and sixty four"), and returns the actual number (1564).\r
-Also demonstrates some processing of ParseExceptions, including marking where the parse failure was found.\r
-</li>\r
-<p>\r
-\r
-<li><a href="pythonGrammarparser.py">pythonGrammarparser.py</a> <i>~ suggested by JH Stovall</i><br>\r
-A sample program that parses the EBNF used in the Python source code to define the Python grammar. From this parser,\r
-one can generate Python grammar documentation tools, such as railroad track diagrams. Also demonstrates use of\r
-Dict class.\r
-</li>\r
-<p>\r
-\r
-<li><a href="commasep.py">commasep.py</a><br>\r
-Demonstration of the use of the commaSeparatedList helper. Shows examples of\r
-proper handling of commas within quotes, trimming of whitespace around delimited entries, and handling of consecutive commas (null arguments). Includes comparison with simple string.split(',').\r
-</li>\r
-<p>\r
-\r
-<li><a href="dictExample.py">dictExample.py</a><br>\r
-A demonstration of using the Dict class, to parse a table of ASCII tabulated data.\r
-</li>\r
-<p>\r
-\r
-<li><a href="dictExample2.py">dictExample2.py</a> <i>~ submission by Mike Kelly</i><br>\r
-An extended version of dictExample.py, in which Mike Kelly also parses the column headers, and generates a transposed version of the original table!\r
-</li>\r
-<p>\r
-\r
-<li><a href="scanExamples.py">scanExamples.py</a><br>\r
-Some examples of using scanString and transformString, as alternative parsing methods to parseString, to do macro substitution, and selection and/or removal of matching strings within a source file.\r
-</li>\r
-<p>\r
-\r
-<li><a href="urlExtractor.py">urlExtractor.py</a><br>\r
-Another example using scanString, this time to extract all HREF references found on Yahoo!'s home page, and return them as a dictionary.\r
-</li>\r
-<p>\r
-\r
-<li><a href="makeHTMLTagExample.py">makeHTMLTagExample.py</a><br>\r
-A sample program showing sample definitions and applications of HTML tag expressions\r
-created using makeHTMLTags helper function. Very useful for scraping data from HTML pages.\r
-</li>\r
-<p>\r
-\r
-<li><a href="urlExtractorNew.py">urlExtractorNew.py</a><br>\r
-Another updated version of urlExtractor.py, using the new makeHTMLTags() method.\r
-</li>\r
-<p>\r
-\r
-<li><a href="fourFn.py">fourFn.py</a><br>\r
-A simple algebraic expression parser, that performs +,-,*,/, and ^ arithmetic operations. (With suggestions and bug-fixes graciously offered by Andrea Griffini.)\r
-</li>\r
-<p>\r
-\r
-<li><a href="SimpleCalc.py">SimpleCalc.py</a> <i>~ submission by Steven Siew</i><br>\r
-An interactive version of fourFn.py, with support for variables.\r
-</li>\r
-<p>\r
-\r
-<li><a href="LAParser.py">LAParser.py</a> <i>~ submission by Mike Ellis</i><br>\r
-An interactive Linear Algebra Parser, an extension of SimpleCalc.py. Supports linear algebra (LA) notation for vectors, matrices, and scalars,\r
-including matrix operations such as inversion and determinants. Converts LA expressions to C code - uses a separate C library for runtime\r
-evaluation of results.\r
-</li>\r
-<p>\r
-\r
-<li><a href="configParse.py">configParse.py</a><br>\r
-A simple alternative to Python's ConfigParse module, demonstrating the use of the Dict class to return nested dictionary access to configuration values.\r
-</li>\r
-<p>\r
-\r
-<li><a href="getNTPservers.py">getNTPservers.py</a><br>\r
-Yet another scanString example, to read/extract the list of NTP servers from NIST's web site.\r
-</li>\r
-<p>\r
-\r
-<li><a href="getNTPserversNew.py">getNTPserversNew.py</a><br>\r
-An updated version of getNTPservers.py, using the new makeHTMLTags() method.\r
-</li>\r
-<p>\r
-\r
-<li><a href="httpServerLogParser.py">httpServerLogParser.py</a><br>\r
-Parser for Apache server log files.\r
-</li>\r
-<p>\r
-\r
-<li><a href="idlParse.py">idlParse.py</a><br>\r
-Parser for CORBA IDL files.\r
-</li>\r
-<p>\r
-\r
-<li><a href="mozillaCalendarParser.py">mozillaCalendarParser.py</a> \r
-<i>~ submission by Petri Savolainen</i><br>\r
-Parser for Mozilla calendar (*.ics) files.\r
-</li>\r
-<p>\r
-\r
-<li><a href="pgn.py">pgn.py</a> <i>~ submission by Alberto Santini</i><br>\r
-Parser for PGN (Portable Game Notation) files, the standard form for documenting the moves in chess games.\r
-</li>\r
-<p>\r
-\r
-<li><a href="simpleSQL.py">simpleSQL.py</a><br>\r
-A simple parser that will extract table and column names from SQL SELECT statements..\r
-</li>\r
-<p>\r
-\r
-<li><a href="dfmparse.py">dfmparse.py</a> <i>~ submission by Dan Griffith</i><br>\r
-Parser for Delphi forms.\r
-</li>\r
-<p>\r
-\r
-<li><a href="ebnf.py">ebnf.py / ebnftest.py</a> <i>~ submission by Seo Sanghyeon</i><br>\r
-An EBNF-compiler that reads EBNF and generates a pyparsing grammar! Including a test that compiles... EBNF itself!\r
-</li>\r
-<p>\r
-\r
-<li><a href="searchparser.py">searchparser.py</a> <i>~ submission by Steven Mooij and Rudolph Froger</i><br>\r
-An expression parser that parses search strings, with special keyword and expression operations using (), not, and, or, and quoted strings.\r
-</li>\r
-<p>\r
-\r
-<li><a href="sparser.py">sparser.py</a> <i>~ submission by Tim Cera</i><br>\r
-A configurable parser module that can be configured with a list of tuples, giving a high-level definition for parsing common sets\r
-of water table data files. Tim had to contend with several different styles of data file formats, each with slight variations of its own.\r
-Tim created a configurable parser (or "SPECIFIED parser" - hence the name "sparser"), that simply works from a config variable listing\r
-the field names and data types, and implicitly, their order in the source data file.\r
-<p>\r
-See <a href="mayport_florida_8720220_data_def.txt">mayport_florida_8720220_data_def.txt</a> for an\r
-example configuration file.\r
-</li>\r
-<p>\r
-\r
-<li><a href="romanNumerals.py">romanNumerals.py</a><br>\r
-A Roman numeral generator and parser example, showing the power of parse actions \r
-to compile Roman numerals into their integer values.\r
-</li>\r
-<p>\r
-\r
-<li><a href="removeLineBreaks.py">removeLineBreaks.py</a><br>\r
-A string transformer that converts text files with hard line-breaks into one with line breaks\r
-only between paragraphs. Useful when converting downloads from \r
-<a href="http://www.gutenberg.org">Project Gutenberg</a> to import to word processing apps \r
-that can reformat paragraphs once hard line-breaks are removed, or for loading into your Palm Pilot for portable perusal.\r
-<p>\r
-See <a href="Successful Methods of Public Speaking.txt">Successful Methods of Public Speaking.txt</a> and \r
-<a href="Successful Methods of Public Speaking(2).txt">Successful Methods of Public Speaking(2).txt</a> for a sample \r
-before and after (text file courtesy of Project Gutenberg).\r
-</li>\r
-<p>\r
-\r
-<li><a href="listAllMatches.py">listAllMatches.py</a><br>\r
-An example program showing the utility of the listAllMatches option when specifying results naming.\r
-</li>\r
-<p>\r
-\r
-<li><a href="linenoExample.py">linenoExample.py</a><br>\r
-An example program showing how to use the string location to extract line and column numbers, or the \r
-source line of text.\r
-</li>\r
-<p>\r
-\r
-<li><a href="parseListString.py">parseListString.py</a><br>\r
-An example program showing a progression of steps, how to parse a string representation of a Python \r
-list back into a true list.\r
-</li>\r
-<p>\r
-\r
-<li><a href="parsePythonValue.py">parsePythonValue.py</a><br>\r
-An extension of parseListString.py to parse tuples and dicts, including nested values,\r
-returning a Python value of the original type.\r
-</li>\r
-<p>\r
-\r
-<li><a href="indentedGrammarExample.py">indentedGrammarExample.py</a><br>\r
-An example program showing how to parse a grammar using indentation for grouping, \r
-such as is done in Python.\r
-</li>\r
-<p>\r
-\r
-<li><a href="simpleArith.py">simpleArith.py</a><br>\r
-An example program showing how to use the new operatorPrecedence helper method to define a 6-function\r
-(+, -, *, /, ^, and !) arithmetic expression parser, with unary plus and minus signs.\r
-</li>\r
-<p>\r
-\r
-<li><a href="simpleBool.py">simpleBool.py</a><br>\r
-An example program showing how to use the new operatorPrecedence helper method to define a \r
-boolean expression parser, with parse actions associated with each operator to "compile" the expression\r
-into a data structure that will evaluate the expression's boolean value.\r
-</li>\r
-<p>\r
-\r
-<li><a href="simpleWiki.py">simpleWiki.py</a><br>\r
-An example program showing how to use transformString to implement a simple Wiki markup parser.\r
-</li>\r
-<p>\r
-\r
-<li><a href="sql2dot.py">sql2dot.py</a><i>~ submission by EnErGy [CSDX]</i><br>\r
-A nice graphing program that generates schema diagrams from SQL table definition statements.\r
-</li>\r
-<p>\r
-\r
-<li><a href="htmlStripper.py">htmlStripper.py</a><br>\r
-An example implementation of a common application, removing HTML markup tags from an HTML page,\r
-leaving just the text content.\r
-</li>\r
-<p>\r
-\r
-<li><a href="macroExpansion.py">macroExpansion.py</a><br>\r
-An example implementation of a simple preprocessor, that will read embedded macro definitions\r
-and replace macro references with the defined substitution string.\r
-</li>\r
-<p>\r
-\r
-<li><a href="sexpParser.py">sexpParser.py</a><br>\r
-A parser that uses a recursive grammar to parse S-expressions.\r
-</li>\r
-<p>\r
-\r
-<li><a href="nested.py">nested.py</a><br>\r
-An example using nestedExpr, a helper method to simplify definitions of expressions of nested lists.\r
-</li>\r
-<p>\r
-\r
-<li><a href="withAttribute.py">withAttribute.py</a><br>\r
-An example using withAttribute, a helper method to define parse actions to validate matched HTML tags\r
-using additional attributes. Especially helpful for matching common tags such as <DIV> and <TD>.\r
-</li>\r
-<p>\r
-\r
-<li><a href="stackish.py">stackish.py</a><br>\r
-A parser for the data representation format, Stackish.\r
-</li>\r
-<p>\r
-\r
-<li><a href="builtin_parse_action_demo.py">builtin_parse_action_demo.py</a><br>\r
-<b>New in version 1.5.7</b><br>\r
-Demonstration of using builtins (min, max, sum, len, etc.) as parse actions.\r
-</li>\r
-<p>\r
-\r
-<li><a href="antlr_grammar.py">antlr_grammar.py</a><i>~ submission by Luca DellOlio</i><br>\r
-<b>New in version 1.5.7</b><br>\r
-Pyparsing example parsing ANTLR .a files and generating a working pyparsing parser.\r
-</li>\r
-<p>\r
-\r
-<li><a href="shapes.py">shapes.py</a><br>\r
-<b>New in version 1.5.7</b><br>\r
-Parse actions example simple shape definition syntax, and returning the matched tokens as\r
-domain objects instead of just strings.\r
-</li>\r
-<p>\r
-\r
-<li><a href="datetimeParseActions.py">datetimeParseActions.py</a><br>\r
-<b>New in version 1.5.7</b><br>\r
-Parse actions example showing a parse action returning a datetime object instead of \r
-string tokens, and doing validation of the tokens, raising a ParseException if the\r
-given YYYY/MM/DD string does not represent a valid date.\r
-</li>\r
-<p>\r
-\r
-<li><a href="position.py">position.py</a><br>\r
-<b>New in version 1.5.7</b><br>\r
-Demonstration of a couple of different ways to capture the location a particular \r
-expression was found within the overall input string.\r
-</li>\r
-<p>\r
-\r
-\r
-</ul>\r
-\r
-</body></html>\r
+++ /dev/null
-object Form1: TForm1\r
- Left = 193\r
- Top = 105\r
- Width = 696\r
- Height = 480\r
- Caption = 'AcManTest'\r
- Color = clBtnFace\r
- Font.Charset = DEFAULT_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'MS Sans Serif'\r
- Font.Style = []\r
- OldCreateOrder = False\r
- OnCreate = FormCreate\r
- PixelsPerInch = 96\r
- TextHeight = 13\r
- object RichEdit1: TRichEdit\r
- Left = 0\r
- Top = 107\r
- Width = 688\r
- Height = 346\r
- Align = alClient\r
- Lines.Strings = (\r
- 'RichEdit1')\r
- TabOrder = 0\r
- end\r
- object ActionToolBar1: TActionToolBar\r
- Left = 0\r
- Top = 25\r
- Width = 688\r
- Height = 28\r
- ActionManager = ActionManager1\r
- Caption = 'ActionToolBar1'\r
- ColorMap.HighlightColor = 14410210\r
- ColorMap.BtnSelectedColor = clBtnFace\r
- ColorMap.UnusedColor = 14410210\r
- EdgeBorders = [ebTop, ebBottom]\r
- Font.Charset = DEFAULT_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'MS Sans Serif'\r
- Font.Style = []\r
- ParentFont = False\r
- ParentShowHint = False\r
- ShowHint = True\r
- Spacing = 0\r
- end\r
- object ActionMainMenuBar1: TActionMainMenuBar\r
- Left = 0\r
- Top = 0\r
- Width = 688\r
- Height = 25\r
- UseSystemFont = False\r
- ActionManager = ActionManager1\r
- AnimationStyle = asSlide\r
- Caption = 'ActionMainMenuBar1'\r
- ColorMap.HighlightColor = 14410210\r
- ColorMap.BtnSelectedColor = clBtnFace\r
- ColorMap.UnusedColor = 14410210\r
- EdgeBorders = [ebTop, ebBottom]\r
- EdgeOuter = esNone\r
- Font.Charset = ANSI_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'Tahoma'\r
- Font.Style = []\r
- ParentShowHint = False\r
- ShowHint = True\r
- Spacing = 0\r
- end\r
- object ActionToolBar2: TActionToolBar\r
- Left = 0\r
- Top = 53\r
- Width = 688\r
- Height = 28\r
- ActionManager = ActionManager1\r
- Caption = 'ActionToolBar2'\r
- ColorMap.HighlightColor = 14410210\r
- ColorMap.BtnSelectedColor = clBtnFace\r
- ColorMap.UnusedColor = 14410210\r
- EdgeBorders = [ebTop, ebBottom]\r
- Font.Charset = DEFAULT_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'MS Sans Serif'\r
- Font.Style = []\r
- ParentFont = False\r
- ParentShowHint = False\r
- ShowHint = True\r
- Spacing = 0\r
- end\r
- object ActionToolBar3: TActionToolBar\r
- Left = 0\r
- Top = 81\r
- Width = 688\r
- Height = 26\r
- ActionManager = ActionManager1\r
- Caption = 'ActionToolBar3'\r
- ColorMap.HighlightColor = 14410210\r
- ColorMap.BtnSelectedColor = clBtnFace\r
- ColorMap.UnusedColor = 14410210\r
- Font.Charset = DEFAULT_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'MS Sans Serif'\r
- Font.Style = []\r
- ParentFont = False\r
- Spacing = 0\r
- end\r
- object ActionManager1: TActionManager\r
- FileName = 'settings'\r
- ActionBars.SessionCount = 4\r
- ActionBars = <\r
- item\r
- Items = <\r
- item\r
- Action = EditUndo1\r
- ImageIndex = 3\r
- ShortCut = 16474\r
- end\r
- item\r
- Action = EditCut1\r
- ImageIndex = 0\r
- ShortCut = 16472\r
- end\r
- item\r
- Action = EditCopy1\r
- ImageIndex = 1\r
- ShortCut = 16451\r
- end\r
- item\r
- Action = EditPaste1\r
- ImageIndex = 2\r
- ShortCut = 16470\r
- end\r
- item\r
- Action = SearchFind1\r
- ImageIndex = 15\r
- ShortCut = 16454\r
- end\r
- item\r
- Action = SearchReplace1\r
- ImageIndex = 17\r
- end>\r
- ActionBar = ActionToolBar1\r
- AutoSize = False\r
- end\r
- item\r
- Items = <\r
- item\r
- Items = <\r
- item\r
- Action = FileOpen1\r
- ImageIndex = 12\r
- ShortCut = 16463\r
- end\r
- item\r
- Action = FileSaveAs1\r
- ImageIndex = 13\r
- end\r
- item\r
- Action = FilePrintSetup1\r
- end\r
- item\r
- Action = FileRun1\r
- end\r
- item\r
- Action = FileExit1\r
- ImageIndex = 14\r
- LastSession = -1\r
- UsageCount = -1\r
- end>\r
- Caption = '&File'\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = EditCut1\r
- ImageIndex = 0\r
- ShortCut = 16472\r
- end\r
- item\r
- Action = EditCopy1\r
- ImageIndex = 1\r
- ShortCut = 16451\r
- end\r
- item\r
- Action = EditPaste1\r
- ImageIndex = 2\r
- ShortCut = 16470\r
- end\r
- item\r
- Action = EditSelectAll1\r
- ShortCut = 16449\r
- end\r
- item\r
- Action = EditUndo1\r
- ImageIndex = 3\r
- ShortCut = 16474\r
- end\r
- item\r
- Action = EditDelete1\r
- ImageIndex = 4\r
- ShortCut = 46\r
- end>\r
- Caption = '&Edit'\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = RichEditBold1\r
- ImageIndex = 5\r
- ShortCut = 16450\r
- end\r
- item\r
- Action = RichEditItalic1\r
- ImageIndex = 6\r
- ShortCut = 16457\r
- end\r
- item\r
- Action = RichEditUnderline1\r
- ImageIndex = 7\r
- ShortCut = 16469\r
- end\r
- item\r
- Action = RichEditStrikeOut1\r
- end\r
- item\r
- Action = RichEditBullets1\r
- ImageIndex = 8\r
- end\r
- item\r
- Action = RichEditAlignLeft1\r
- ImageIndex = 9\r
- end\r
- item\r
- Action = RichEditAlignRight1\r
- ImageIndex = 10\r
- end\r
- item\r
- Action = RichEditAlignCenter1\r
- ImageIndex = 11\r
- end>\r
- Caption = 'F&ormat'\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = SearchFind1\r
- ImageIndex = 15\r
- ShortCut = 16454\r
- end\r
- item\r
- Action = SearchFindNext1\r
- ImageIndex = 16\r
- ShortCut = 114\r
- end\r
- item\r
- Action = SearchReplace1\r
- ImageIndex = 17\r
- end\r
- item\r
- Action = SearchFindFirst1\r
- end>\r
- Caption = '&Search'\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = CustomizeActionBars1\r
- end>\r
- Caption = '&Tools'\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = HelpContents1\r
- ImageIndex = 18\r
- end>\r
- Caption = '&Help'\r
- end>\r
- ActionBar = ActionMainMenuBar1\r
- AutoSize = False\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = RichEditBold1\r
- ImageIndex = 5\r
- ShortCut = 16450\r
- end\r
- item\r
- Action = RichEditItalic1\r
- ImageIndex = 6\r
- ShortCut = 16457\r
- end\r
- item\r
- Action = RichEditUnderline1\r
- ImageIndex = 7\r
- ShortCut = 16469\r
- end\r
- item\r
- Action = RichEditBullets1\r
- Caption = 'Bull&ets'\r
- ImageIndex = 8\r
- end\r
- item\r
- Action = RichEditAlignLeft1\r
- ImageIndex = 9\r
- end\r
- item\r
- Action = RichEditAlignRight1\r
- ImageIndex = 10\r
- end\r
- item\r
- Action = RichEditAlignCenter1\r
- ImageIndex = 11\r
- end>\r
- ActionBar = ActionToolBar2\r
- AutoSize = False\r
- end\r
- item\r
- AutoSize = False\r
- end\r
- item\r
- AutoSize = False\r
- end\r
- item\r
- Items = <\r
- item\r
- Action = FileSaveAs1\r
- ImageIndex = 13\r
- LastSession = 2\r
- end\r
- item\r
- Action = CustomizeActionBars1\r
- end\r
- item\r
- Action = FileExit1\r
- ImageIndex = 14\r
- end\r
- item\r
- Action = HelpContents1\r
- Caption = 'C&ontents'\r
- ImageIndex = 18\r
- end\r
- item\r
- Action = ActionShowStatus\r
- Caption = '&ShowStatus'\r
- end>\r
- ActionBar = ActionToolBar3\r
- AutoSize = False\r
- end>\r
- Images = ImageList1\r
- Left = 88\r
- Top = 136\r
- StyleName = 'XP Style'\r
- object EditCut1: TEditCut\r
- Category = 'Edit'\r
- Caption = 'Cu&t'\r
- Hint = 'Cut|Cuts the selection and puts it on the Clipboard'\r
- ImageIndex = 0\r
- ShortCut = 16472\r
- end\r
- object EditCopy1: TEditCopy\r
- Category = 'Edit'\r
- Caption = '&Copy'\r
- Hint = 'Copy|Copies the selection and puts it on the Clipboard'\r
- ImageIndex = 1\r
- ShortCut = 16451\r
- end\r
- object EditPaste1: TEditPaste\r
- Category = 'Edit'\r
- Caption = '&Paste'\r
- Hint = 'Paste|Inserts Clipboard contents'\r
- ImageIndex = 2\r
- ShortCut = 16470\r
- end\r
- object EditSelectAll1: TEditSelectAll\r
- Category = 'Edit'\r
- Caption = 'Select &All'\r
- Hint = 'Select All|Selects the entire document'\r
- ShortCut = 16449\r
- end\r
- object EditUndo1: TEditUndo\r
- Category = 'Edit'\r
- Caption = '&Undo'\r
- Hint = 'Undo|Reverts the last action'\r
- ImageIndex = 3\r
- ShortCut = 16474\r
- end\r
- object EditDelete1: TEditDelete\r
- Category = 'Edit'\r
- Caption = '&Delete'\r
- Hint = 'Delete|Erases the selection'\r
- ImageIndex = 4\r
- ShortCut = 46\r
- end\r
- object RichEditBold1: TRichEditBold\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Bold'\r
- Hint = 'Bold'\r
- ImageIndex = 5\r
- ShortCut = 16450\r
- end\r
- object RichEditItalic1: TRichEditItalic\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Italic'\r
- Hint = 'Italic'\r
- ImageIndex = 6\r
- ShortCut = 16457\r
- end\r
- object RichEditUnderline1: TRichEditUnderline\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Underline'\r
- Hint = 'Underline'\r
- ImageIndex = 7\r
- ShortCut = 16469\r
- end\r
- object RichEditStrikeOut1: TRichEditStrikeOut\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Strikeout'\r
- Hint = 'Strikeout'\r
- end\r
- object RichEditBullets1: TRichEditBullets\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Bullets'\r
- Hint = 'Bullets|Inserts a bullet on the current line'\r
- ImageIndex = 8\r
- end\r
- object RichEditAlignLeft1: TRichEditAlignLeft\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = 'Align &Left'\r
- Hint = 'Align Left|Aligns text at the left indent'\r
- ImageIndex = 9\r
- end\r
- object RichEditAlignRight1: TRichEditAlignRight\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = 'Align &Right'\r
- Hint = 'Align Right|Aligns text at the right indent'\r
- ImageIndex = 10\r
- end\r
- object RichEditAlignCenter1: TRichEditAlignCenter\r
- Category = 'Format'\r
- AutoCheck = True\r
- Caption = '&Center'\r
- Hint = 'Center|Centers text between margins'\r
- ImageIndex = 11\r
- end\r
- object FileOpen1: TFileOpen\r
- Category = 'File'\r
- Caption = '&Open...'\r
- Hint = 'Open|Opens an existing file'\r
- ImageIndex = 12\r
- ShortCut = 16463\r
- end\r
- object FileSaveAs1: TFileSaveAs\r
- Category = 'File'\r
- Caption = 'Save &As...'\r
- Hint = 'Save As|Saves the active file with a new name'\r
- ImageIndex = 13\r
- end\r
- object FilePrintSetup1: TFilePrintSetup\r
- Category = 'File'\r
- Caption = 'Print Set&up...'\r
- Hint = 'Print Setup'\r
- end\r
- object FileRun1: TFileRun\r
- Category = 'File'\r
- Browse = False\r
- BrowseDlg.Title = 'Run'\r
- Caption = '&Run...'\r
- Hint = 'Run|Runs an application'\r
- Operation = 'open'\r
- ShowCmd = scShowNormal\r
- end\r
- object FileExit1: TFileExit\r
- Category = 'File'\r
- Caption = 'E&xit'\r
- Hint = 'Exit|Quits the application'\r
- ImageIndex = 14\r
- end\r
- object SearchFind1: TSearchFind\r
- Category = 'Search'\r
- Caption = '&Find...'\r
- Hint = 'Find|Finds the specified text'\r
- ImageIndex = 15\r
- ShortCut = 16454\r
- end\r
- object SearchFindNext1: TSearchFindNext\r
- Category = 'Search'\r
- Caption = 'Find &Next'\r
- Enabled = False\r
- Hint = 'Find Next|Repeats the last find'\r
- ImageIndex = 16\r
- ShortCut = 114\r
- end\r
- object SearchReplace1: TSearchReplace\r
- Category = 'Search'\r
- Caption = '&Replace'\r
- Hint = 'Replace|Replaces specific text with different text'\r
- ImageIndex = 17\r
- end\r
- object SearchFindFirst1: TSearchFindFirst\r
- Category = 'Search'\r
- Caption = 'F&ind First'\r
- Hint = 'Find First|Finds the first occurance of specified text'\r
- end\r
- object CustomizeActionBars1: TCustomizeActionBars\r
- Category = 'Tools'\r
- Caption = '&Customize'\r
- CustomizeDlg.StayOnTop = False\r
- end\r
- object HelpContents1: THelpContents\r
- Category = 'Help'\r
- Caption = '&Contents'\r
- Enabled = False\r
- Hint = 'Help Contents'\r
- ImageIndex = 18\r
- end\r
- object ActionShowStatus: TAction\r
- Category = 'Tools'\r
- Caption = 'ShowStatus'\r
- OnExecute = ActionShowStatusExecute\r
- end\r
- end\r
- object ImageList1: TImageList\r
- Left = 168\r
- Top = 136\r
- Bitmap = {\r
- 494C010113001400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600\r
- 0000000000003600000028000000400000005000000001001000000000000028\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 1040104010420000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000010401040\r
- FF7FFF7F18631042000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000000010401040FF7FFF7F\r
- 0000000018631863104200000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 000000000000000000000000000000000000104210401040FF7FFF7F00000000\r
- 1040104000001863186310420000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000001863000000000000\r
- 0000000000000000186300000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000010421040FF7F0000000010401040\r
- 1040104010400000186318631042000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000010420000\r
- 0000000010420000000000000000000000000000000000001863000000000000\r
- 0000000000000000186300000000000000001042000000001040104010400042\r
- E07F104010401040000018631863104200000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000010420000\r
- 0000000010420000000000000000000000001042104010401040104010401040\r
- 0042104010401040104000001863000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000001863000000000000\r
- 0000186300000000000000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000001040FF7F1040104010401040\r
- 1040E07FE07F1040104010400000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000001863000000000000\r
- 0000186300000000000000000000000000000000000000001863000000000000\r
- 000018630000000000000000000000000000000000001040FF7F104010401040\r
- 104010400042E07FE07F10401040000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000001863000000000000\r
- 0000186300000000000000000000000000000000000000001040FF7F10401040\r
- 104000421040E07FE07F10401040104000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 1042000000000000000000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000000000001040FF7F1040\r
- 1040E07FE07FE07F104010401040000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 104200000000000000000000000000000000000000000000000000001040FF7F\r
- 1040104010401040104000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000001040\r
- FF7F104010400000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 1040104000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000001042104210421042104210421042\r
- 104210421042FF7F186310421863FF7F18630000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000001042104210421042104210421042\r
- 1042104210421042FF7F1042FF7F104210420000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420042000000000000\r
- 0000000000000000000000000042000000000000000000000000000000000000\r
- 0000000000000000000000000000000000001000100010001000000000001042\r
- 10421042FF7FFF7FFF7F10001000100010000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420042000000000000\r
- 0000000000000000000000000042000000000000000000000000004200420000\r
- 00000000000018630000004200000000000000000000000010001F0010000000\r
- 00001042FF7FFF7FFF7F10000000000000000000FF7F00000000000000000000\r
- 0000000000000000FF7F00000000000000000000000000420042000000000000\r
- 0000000000000000000000000042000000000000000000000000004200420000\r
- 000000000000186300000042000000000000000000000000100010001F001000\r
- 0000FF7FFF7FFF7FFF7F10000000000000000000FF7F00000000000000000000\r
- 0000000000000000FF7F00000000000000000000000000420042000000000000\r
- 0000000000000000000000000042000000000000000000000000004200420000\r
- 00000000000000000000004200000000000000000000000010001F0010001F00\r
- 0000FF7FFF7FFF7FFF7F10000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420042004200420042\r
- 0042004200420042004200420042000000000000000000000000004200420042\r
- 004200420042004200420042000000000000000000000000100010001F001000\r
- 0000FF7FFF03FF7FFF03100000000000000000000000FF7F0000000000000000\r
- 00000000FF7F0000000000000000000000000000000000420042000000000000\r
- 0000000000000000000000420042000000000000000000000000004200420000\r
- 00000000000000000042004200000000000000000000000010001F0010001F00\r
- 0000FF03FF7FFF03FF7F100000000000000000000000FF7F0000000000001863\r
- 00000000FF7F0000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000042000000000000000000000000004200001863\r
- 186318631863186300000042000000000000000000000000100010001F001000\r
- 0000FF7FFF03FF7FFF03100000000000000000000000FF7F0000000000001863\r
- 00000000FF7F0000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000042000000000000000000000000004200001863\r
- 18631863186318630000004200000000000000000000000010001F0010001F00\r
- 0000FF03FF7FFF03FF7F10000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000042000000000000000000000000004200001863\r
- 1863186318631863000000000000000000000000000000001000100010001000\r
- 100010001000100010001000000000000000000000000000FF7F000000000000\r
- 00000000FF7F0000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000042000000000000000000000000004200001863\r
- 1863186318631863000018630000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000420000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000002\r
- 0002000200020000000000000000000000000000000000000000FF7F00000000\r
- 000000000000FF7F000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000100010001000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000010001000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000001000\r
- 1000100010001000100010001000100010000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000100000000000\r
- 1000000000001000100000000000000000000000000000000000000000000000\r
- 1000100010001000100010001000100010000000000000000000000000001000\r
- FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000100000000000\r
- 1000000010000000000010000000000000000000000000000000000000000000\r
- 1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000\r
- FF7F000000000000000000000000FF7F10000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000100000000000\r
- 1000000010000000000010000000000000000000000000000000000000000000\r
- 1000FF7F00000000000000000000FF7F10000000004210420042104200421000\r
- FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000010001000\r
- 1000000010000000000010000000000000000000000000000000000000000000\r
- 1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000\r
- FF7F000000000000FF7F10001000100010000000000000000000000000000000\r
- 0000000000000000000010000000000000000000000000000000000000000000\r
- 10000000100010001000000000000000000000000000FF7FFF7FFF7FFF7FFF7F\r
- 1000FF7F00000000000000000000FF7F10000000004210420042104200421000\r
- FF7FFF7FFF7FFF7FFF7F1000FF7F100000000000000010001000100010001000\r
- 0000000000000000000010000000000000000000000000000000000000000000\r
- 10000000100000000000000000000000000000000000FF7F0000000000000000\r
- 1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000\r
- FF7FFF7FFF7FFF7FFF7F10001000000000000000000010001000100010000000\r
- 0000000000000000000000001000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F\r
- 1000FF7F00000000FF7F10001000100010000000004210420042104200421000\r
- 1000100010001000100010000000000000000000000010001000100000000000\r
- 0000000000000000000000001000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7F0000000000000000\r
- 1000FF7FFF7FFF7FFF7F1000FF7F100000000000104200421042004210420042\r
- 1042004210420042104200420000000000000000000010001000000010000000\r
- 0000000000000000000000001000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F\r
- 1000FF7FFF7FFF7FFF7F10001000000000000000004210420000000000000000\r
- 0000000000000000104210420000000000000000000010000000000000001000\r
- 1000000000000000000010000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7F00000000FF7F0000\r
- 1000100010001000100010000000000000000000104210420000000000000000\r
- 0000000000000000104200420000000000000000000000000000000000000000\r
- 0000100010001000100000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F0000\r
- FF7F0000000000000000000000000000000000000042104200420000E07F0000\r
- 0000E07F00001042004210420000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F0000\r
- 000000000000000000000000000000000000000000000000000000000000E07F\r
- E07F000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 000000000000000000000000000000000000424D3E000000000000003E000000\r
- 2800000040000000500000000100010000000000800200000000000000000000\r
- 000000000000000000000000FFFFFF00FFFFB6E7FFFF0000FE49B76BFE3F0000\r
- FE498427F81F0000FFFFB76BE00F0000FFFFCEE780070000C7C7FFFF00030000\r
- C7C7C7C700010000C387C7C700000000C007C38700010000C007C00780010000\r
- C007C007C0010000C007C007E0000000C007C007F0000000F39FC007F8030000\r
- F39FF39FFC0F0000F39FF39FFE3F0000FFFFFF7E0000FFFFC001BFFF0000FFFF\r
- 8031F003000007C18031E003E00707C18031E003E00707C18001E003E0070101\r
- 8001E003E007000180012003E00700018FF1E002E00700018FF1E003E0078003\r
- 8FF1E003E007C1078FF1E003FFFFC1078FF1E003F81FE38F8FF5FFFFF81FE38F\r
- 8001BF7DF81FE38FFFFF7F7EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\r
- 8FFFFFFFFFFFFFFF8C03C007C007C0078FFFFFFFFFFFFFFFFFFFC03FF807F83F\r
- FFFFFFFFFFFFFFFF8FFFC007C007C0078C03FFFFFFFFFFFF8FFFC03FF807F01F\r
- FFFFFFFFFFFFFFFFFFFFC007C007C0078FFFFFFFFFFFFFFF8C03C03FF807F83F\r
- 8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\r
- EFFDFFFFFFFFE00FC7FFFFFFFFFFFFFFC3FBF00F81FFF83FE3F7F8C7E3FFF39F\r
- F1E7F8C7F1FFF39FF8CFF8C7F8FFF39FFC1FF80FFC7FF39FFE3FF8C7FE3FF39F\r
- FC1FF8C7FF1FF39FF8CFF8C7FF8FF39FE1E7F00FFF03E10FC3F3FFFFFFFFFFFF\r
- C7FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFC00FFFF\r
- F6CFFE008000FFFFF6B7FE000000FFFFF6B7FE000000FFFFF8B780000000FFF7\r
- FE8F80000001C1F7FE3F80000003C3FBFF7F80000003C7FBFE3F80010003CBFB\r
- FEBF80030003DCF7FC9F80070FC3FF0FFDDF807F0003FFFFFDDF80FF8007FFFF\r
- FDDF81FFF87FFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000\r
- 000000000000}\r
- end\r
-end\r
+++ /dev/null
-"""\r
-Purpose: Linear Algebra Parser\r
-Based on: SimpleCalc.py example (author Paul McGuire) in pyparsing-1.3.3\r
-Author: Mike Ellis\r
-Copyright: Ellis & Grant, Inc. 2005\r
-License: You may freely use, modify, and distribute this software.\r
-Warranty: THIS SOFTWARE HAS NO WARRANTY WHATSOEVER. USE AT YOUR OWN RISK. \r
-Notes: Parses infix linear algebra (LA) notation for vectors, matrices, and scalars.\r
- Output is C code function calls. The parser can be run as an interactive \r
- interpreter or included as module to use for in-place substitution into C files \r
- containing LA equations. \r
-\r
- Supported operations are:\r
- OPERATION: INPUT OUTPUT\r
- Scalar addition: "a = b+c" "a=(b+c)"\r
- Scalar subtraction: "a = b-c" "a=(b-c)"\r
- Scalar multiplication: "a = b*c" "a=b*c"\r
- Scalar division: "a = b/c" "a=b/c"\r
- Scalar exponentiation: "a = b^c" "a=pow(b,c)"\r
- Vector scaling: "V3_a = V3_b * c" "vCopy(a,vScale(b,c))"\r
- Vector addition: "V3_a = V3_b + V3_c" "vCopy(a,vAdd(b,c))"\r
- Vector subtraction: "V3_a = V3_b - V3_c" "vCopy(a,vSubtract(b,c))"\r
- Vector dot product: "a = V3_b * V3_c" "a=vDot(b,c)"\r
- Vector outer product: "M3_a = V3_b @ V3_c" "a=vOuterProduct(b,c)"\r
- Vector magn. squared: "a = V3_b^Mag2" "a=vMagnitude2(b)"\r
- Vector magnitude: "a = V3_b^Mag" "a=sqrt(vMagnitude2(b))"\r
- Matrix scaling: "M3_a = M3_b * c" "mCopy(a,mScale(b,c))"\r
- Matrix addition: "M3_a = M3_b + M3_c" "mCopy(a,mAdd(b,c))"\r
- Matrix subtraction: "M3_a = M3_b - M3_c" "mCopy(a,mSubtract(b,c))"\r
- Matrix multiplication: "M3_a = M3_b * M3_c" "mCopy(a,mMultiply(b,c))"\r
- Matrix by vector mult.: "V3_a = M3_b * V3_c" "vCopy(a,mvMultiply(b,c))"\r
- Matrix inversion: "M3_a = M3_b^-1" "mCopy(a,mInverse(b))"\r
- Matrix transpose: "M3_a = M3_b^T" "mCopy(a,mTranspose(b))"\r
- Matrix determinant: "a = M3_b^Det" "a=mDeterminant(b)"\r
-\r
- The parser requires the expression to be an equation. Each non-scalar variable\r
- must be prefixed with a type tag, 'M3_' for 3x3 matrices and 'V3_' for 3-vectors. \r
- For proper compilation of the C code, the variables need to be declared without \r
- the prefix as float[3] for vectors and float[3][3] for matrices. The operations do\r
- not modify any variables on the right-hand side of the equation.\r
-\r
- Equations may include nested expressions within parentheses. The allowed binary \r
- operators are '+-*/^' for scalars, and '+-*^@' for vectors and matrices with the\r
- meanings defined in the table above.\r
-\r
- Specifying an improper combination of operands, e.g. adding a vector to a matrix,\r
- is detected by the parser and results in a Python TypeError Exception. The usual cause\r
- of this is omitting one or more tag prefixes. The parser knows nothing about a \r
- a variable's C declaration and relies entirely on the type tags. Errors in C \r
- declarations are not caught until compile time.\r
-\r
-Usage: To process LA equations embedded in source files, import this module and \r
- pass input and output file objects to the fprocess() function. You can\r
- can also invoke the parser from the command line, e.g. 'python LAparser.py',\r
- to run a small test suite and enter an interactive loop where you can enter\r
- LA equations and see the resulting C code.\r
- \r
-"""\r
-\r
-import re,os,sys\r
-from pyparsing import Word, alphas, ParseException, Literal, CaselessLiteral \\r
-, Combine, Optional, nums, Or, Forward, OneOrMore, ZeroOrMore, \\r
- FollowedBy, StringStart, StringEnd, alphanums\r
-import math\r
-\r
-# Debugging flag can be set to either "debug_flag=True" or "debug_flag=False"\r
-debug_flag=False\r
-\r
-#----------------------------------------------------------------------------\r
-# Variables that hold intermediate parsing results and a couple of\r
-# helper functions.\r
-exprStack = [] # Holds operators and operands parsed from input.\r
-targetvar = None # Holds variable name to left of '=' sign in LA equation.\r
-\r
-\r
-def _pushFirst( str, loc, toks ):\r
- if debug_flag: print("pushing ", toks[0], "str is ", str)\r
- exprStack.append( toks[0] )\r
-\r
-def _assignVar( str, loc, toks ):\r
- global targetvar\r
- targetvar = toks[0]\r
-\r
-#-----------------------------------------------------------------------------\r
-# The following statements define the grammar for the parser.\r
-\r
-point = Literal('.')\r
-e = CaselessLiteral('E')\r
-plusorminus = Literal('+') | Literal('-')\r
-number = Word(nums) \r
-integer = Combine( Optional(plusorminus) + number )\r
-floatnumber = Combine( integer +\r
- Optional( point + Optional(number) ) +\r
- Optional( e + integer )\r
- )\r
-\r
-lbracket = Literal("[")\r
-rbracket = Literal("]")\r
-ident = Forward()\r
-## The definition below treats array accesses as identifiers. This means your expressions\r
-## can include references to array elements, rows and columns, e.g., a = b[i] + 5.\r
-## Expressions within []'s are not presently supported, so a = b[i+1] will raise\r
-## a ParseException.\r
-ident = Combine(Word(alphas + '-',alphanums + '_') + \\r
- ZeroOrMore(lbracket + (Word(alphas + '-',alphanums + '_')|integer) + rbracket) \\r
- ) \r
-\r
-plus = Literal( "+" )\r
-minus = Literal( "-" )\r
-mult = Literal( "*" )\r
-div = Literal( "/" )\r
-outer = Literal( "@" )\r
-lpar = Literal( "(" ).suppress()\r
-rpar = Literal( ")" ).suppress()\r
-addop = plus | minus\r
-multop = mult | div | outer\r
-expop = Literal( "^" )\r
-assignop = Literal( "=" )\r
-\r
-expr = Forward()\r
-atom = ( ( e | floatnumber | integer | ident ).setParseAction(_pushFirst) | \r
- ( lpar + expr.suppress() + rpar )\r
- )\r
-factor = Forward()\r
-factor << atom + ZeroOrMore( ( expop + factor ).setParseAction( _pushFirst ) )\r
- \r
-term = factor + ZeroOrMore( ( multop + factor ).setParseAction( _pushFirst ) )\r
-expr << term + ZeroOrMore( ( addop + term ).setParseAction( _pushFirst ) ) \r
-equation = (ident + assignop).setParseAction(_assignVar) + expr + StringEnd()\r
-\r
-# End of grammar definition\r
-#-----------------------------------------------------------------------------\r
-## The following are helper variables and functions used by the Binary Infix Operator\r
-## Functions described below.\r
-\r
-vprefix = 'V3_'\r
-vplen = len(vprefix)\r
-mprefix = 'M3_'\r
-mplen = len(mprefix)\r
-\r
-## We don't support unary negation for vectors and matrices\r
-class UnaryUnsupportedError(Exception): pass\r
-\r
-def _isvec(ident):\r
- if ident[0] == '-' and ident[1:vplen+1] == vprefix:\r
- raise UnaryUnsupportedError \r
- else: return ident[0:vplen] == vprefix\r
-\r
-def _ismat(ident): \r
- if ident[0] == '-' and ident[1:mplen+1] == mprefix:\r
- raise UnaryUnsupportedError \r
- else: return ident[0:mplen] == mprefix\r
-\r
-def _isscalar(ident): return not (_isvec(ident) or _ismat(ident))\r
-\r
-## Binary infix operator (BIO) functions. These are called when the stack evaluator\r
-## pops a binary operator like '+' or '*". The stack evaluator pops the two operand, a and b,\r
-## and calls the function that is mapped to the operator with a and b as arguments. Thus,\r
-## 'x + y' yields a call to addfunc(x,y). Each of the BIO functions checks the prefixes of its\r
-## arguments to determine whether the operand is scalar, vector, or matrix. This information\r
-## is used to generate appropriate C code. For scalars, this is essentially the input string, e.g.\r
-## 'a + b*5' as input yields 'a + b*5' as output. For vectors and matrices, the input is translated to\r
-## nested function calls, e.g. "V3_a + V3_b*5" yields "V3_vAdd(a,vScale(b,5)". Note that prefixes are\r
-## stripped from operands and function names within the argument list to the outer function and\r
-## the appropriate prefix is placed on the outer function for removal later as the stack evaluation\r
-## recurses toward the final assignment statement. \r
-\r
-def _addfunc(a,b): \r
- if _isscalar(a) and _isscalar(b): return "(%s+%s)"%(a,b)\r
- if _isvec(a) and _isvec(b): return "%svAdd(%s,%s)"%(vprefix,a[vplen:],b[vplen:]) \r
- if _ismat(a) and _ismat(b): return "%smAdd(%s,%s)"%(mprefix,a[mplen:],b[mplen:]) \r
- else: raise TypeError\r
-\r
-def _subfunc(a,b): \r
- if _isscalar(a) and _isscalar(b): return "(%s-%s)"%(a,b)\r
- if _isvec(a) and _isvec(b): return "%svSubtract(%s,%s)"%(vprefix,a[vplen:],b[vplen:]) \r
- if _ismat(a) and _ismat(b): return "%smSubtract(%s,%s)"%(mprefix,a[mplen:],b[mplen:]) \r
- else: raise TypeError\r
-\r
-def _mulfunc(a,b): \r
- if _isscalar(a) and _isscalar(b): return "%s*%s"%(a,b)\r
- if _isvec(a) and _isvec(b): return "vDot(%s,%s)"%(a[vplen:],b[vplen:]) \r
- if _ismat(a) and _ismat(b): return "%smMultiply(%s,%s)"%(mprefix,a[mplen:],b[mplen:]) \r
- if _ismat(a) and _isvec(b): return "%smvMultiply(%s,%s)"%(vprefix,a[mplen:],b[vplen:]) \r
- if _ismat(a) and _isscalar(b): return "%smScale(%s,%s)"%(mprefix,a[mplen:],b) \r
- if _isvec(a) and _isscalar(b): return "%svScale(%s,%s)"%(vprefix,a[mplen:],b) \r
- else: raise TypeError\r
-\r
-def _outermulfunc(a,b):\r
- ## The '@' operator is used for the vector outer product.\r
- if _isvec(a) and _isvec(b): \r
- return "%svOuterProduct(%s,%s)"%(mprefix,a[vplen:],b[vplen:])\r
- else: raise TypeError\r
-\r
-def _divfunc(a,b):\r
- ## The '/' operator is used only for scalar division \r
- if _isscalar(a) and _isscalar(b): return "%s/%s"%(a,b)\r
- else: raise TypeError\r
-\r
-def _expfunc(a,b): \r
- ## The '^' operator is used for exponentiation on scalars and\r
- ## as a marker for unary operations on vectors and matrices.\r
- if _isscalar(a) and _isscalar(b): return "pow(%s,%s)"%(str(a),str(b))\r
- if _ismat(a) and b=='-1': return "%smInverse(%s)"%(mprefix,a[mplen:])\r
- if _ismat(a) and b=='T': return "%smTranspose(%s)"%(mprefix,a[mplen:])\r
- if _ismat(a) and b=='Det': return "mDeterminant(%s)"%(a[mplen:])\r
- if _isvec(a) and b=='Mag': return "sqrt(vMagnitude2(%s))"%(a[vplen:])\r
- if _isvec(a) and b=='Mag2': return "vMagnitude2(%s)"%(a[vplen:])\r
- else: raise TypeError\r
-\r
-def _assignfunc(a,b): \r
- ## The '=' operator is used for assignment\r
- if _isscalar(a) and _isscalar(b): return "%s=%s"%(a,b)\r
- if _isvec(a) and _isvec(b): return "vCopy(%s,%s)"%(a[vplen:],b[vplen:]) \r
- if _ismat(a) and _ismat(b): return "mCopy(%s,%s)"%(a[mplen:],b[mplen:]) \r
- else: raise TypeError\r
-\r
-## End of BIO func definitions\r
-##----------------------------------------------------------------------------\r
-\r
-# Map operator symbols to corresponding BIO funcs \r
-opn = { "+" : ( _addfunc ),\r
- "-" : ( _subfunc ),\r
- "*" : ( _mulfunc ),\r
- "@" : ( _outermulfunc ),\r
- "/" : ( _divfunc),\r
- "^" : ( _expfunc ), }\r
-\r
-\r
-##----------------------------------------------------------------------------\r
-# Recursive function that evaluates the expression stack\r
-def _evaluateStack( s ):\r
- op = s.pop()\r
- if op in "+-*/@^":\r
- op2 = _evaluateStack( s )\r
- op1 = _evaluateStack( s )\r
- result = opn[op]( op1, op2 )\r
- if debug_flag: print(result)\r
- return result\r
- else: \r
- return op\r
-\r
-##----------------------------------------------------------------------------\r
-# The parse function that invokes all of the above.\r
-def parse(input_string):\r
- """\r
- Accepts an input string containing an LA equation, e.g., \r
- "M3_mymatrix = M3_anothermatrix^-1" returns C code function\r
- calls that implement the expression.\r
- """\r
- \r
- global exprStack\r
- global targetvar\r
-\r
- # Start with a blank exprStack and a blank targetvar\r
- exprStack = []\r
- targetvar=None\r
- \r
- if input_string != '':\r
- # try parsing the input string\r
- try:\r
- L=equation.parseString( input_string )\r
- except ParseException as err:\r
- print('Parse Failure', file=sys.stderr)\r
- print(err.line, file=sys.stderr)\r
- print(" "*(err.column-1) + "^", file=sys.stderr)\r
- print(err, file=sys.stderr)\r
- raise\r
- \r
- # show result of parsing the input string\r
- if debug_flag: \r
- print(input_string, "->", L)\r
- print("exprStack=", exprStack)\r
- \r
- # Evaluate the stack of parsed operands, emitting C code.\r
- try: \r
- result=_evaluateStack(exprStack)\r
- except TypeError:\r
- print("Unsupported operation on right side of '%s'.\nCheck for missing or incorrect tags on non-scalar operands."%input_string, file=sys.stderr)\r
- raise\r
- except UnaryUnsupportedError:\r
- print("Unary negation is not supported for vectors and matrices: '%s'"%input_string, file=sys.stderr)\r
- raise\r
- \r
- # Create final assignment and print it. \r
- if debug_flag: print("var=",targetvar)\r
- if targetvar != None:\r
- try:\r
- result = _assignfunc(targetvar,result)\r
- except TypeError:\r
- print("Left side tag does not match right side of '%s'"%input_string, file=sys.stderr)\r
- raise\r
- except UnaryUnsupportedError:\r
- print("Unary negation is not supported for vectors and matrices: '%s'"%input_string, file=sys.stderr)\r
- raise\r
-\r
- return result\r
- else:\r
- print("Empty left side in '%s'"%input_string, file=sys.stderr)\r
- raise TypeError\r
-\r
-##-----------------------------------------------------------------------------------\r
-def fprocess(infilep,outfilep):\r
- """\r
- Scans an input file for LA equations between double square brackets,\r
- e.g. [[ M3_mymatrix = M3_anothermatrix^-1 ]], and replaces the expression\r
- with a comment containing the equation followed by nested function calls\r
- that implement the equation as C code. A trailing semi-colon is appended.\r
- The equation within [[ ]] should NOT end with a semicolon as that will raise\r
- a ParseException. However, it is ok to have a semicolon after the right brackets.\r
-\r
- Other text in the file is unaltered.\r
-\r
- The arguments are file objects (NOT file names) opened for reading and \r
- writing, respectively.\r
- """\r
- pattern = r'\[\[\s*(.*?)\s*\]\]'\r
- eqn = re.compile(pattern,re.DOTALL)\r
- s = infilep.read()\r
- def parser(mo): \r
- ccode = parse(mo.group(1))\r
- return "/* %s */\n%s;\nLAParserBufferReset();\n"%(mo.group(1),ccode)\r
-\r
- content = eqn.sub(parser,s)\r
- outfilep.write(content)\r
- \r
-##-----------------------------------------------------------------------------------\r
-def test():\r
- """ \r
- Tests the parsing of various supported expressions. Raises\r
- an AssertError if the output is not what is expected. Prints the\r
- input, expected output, and actual output for all tests.\r
- """\r
- print("Testing LAParser")\r
- testcases = [\r
- ("Scalar addition","a = b+c","a=(b+c)"),\r
- ("Vector addition","V3_a = V3_b + V3_c","vCopy(a,vAdd(b,c))"),\r
- ("Vector addition","V3_a=V3_b+V3_c","vCopy(a,vAdd(b,c))"),\r
- ("Matrix addition","M3_a = M3_b + M3_c","mCopy(a,mAdd(b,c))"),\r
- ("Matrix addition","M3_a=M3_b+M3_c","mCopy(a,mAdd(b,c))"),\r
- ("Scalar subtraction","a = b-c","a=(b-c)"),\r
- ("Vector subtraction","V3_a = V3_b - V3_c","vCopy(a,vSubtract(b,c))"),\r
- ("Matrix subtraction","M3_a = M3_b - M3_c","mCopy(a,mSubtract(b,c))"),\r
- ("Scalar multiplication","a = b*c","a=b*c"),\r
- ("Scalar division","a = b/c","a=b/c"),\r
- ("Vector multiplication (dot product)","a = V3_b * V3_c","a=vDot(b,c)"),\r
- ("Vector multiplication (outer product)","M3_a = V3_b @ V3_c","mCopy(a,vOuterProduct(b,c))"),\r
- ("Matrix multiplication","M3_a = M3_b * M3_c","mCopy(a,mMultiply(b,c))"),\r
- ("Vector scaling","V3_a = V3_b * c","vCopy(a,vScale(b,c))"),\r
- ("Matrix scaling","M3_a = M3_b * c","mCopy(a,mScale(b,c))"),\r
- ("Matrix by vector multiplication","V3_a = M3_b * V3_c","vCopy(a,mvMultiply(b,c))"),\r
- ("Scalar exponentiation","a = b^c","a=pow(b,c)"),\r
- ("Matrix inversion","M3_a = M3_b^-1","mCopy(a,mInverse(b))"),\r
- ("Matrix transpose","M3_a = M3_b^T","mCopy(a,mTranspose(b))"),\r
- ("Matrix determinant","a = M3_b^Det","a=mDeterminant(b)"),\r
- ("Vector magnitude squared","a = V3_b^Mag2","a=vMagnitude2(b)"),\r
- ("Vector magnitude","a = V3_b^Mag","a=sqrt(vMagnitude2(b))"),\r
- ("Complicated expression", "myscalar = (M3_amatrix * V3_bvector)^Mag + 5*(-xyz[i] + 2.03^2)","myscalar=(sqrt(vMagnitude2(mvMultiply(amatrix,bvector)))+5*(-xyz[i]+pow(2.03,2)))"),\r
- ("Complicated Multiline", "myscalar = \n(M3_amatrix * V3_bvector)^Mag +\n 5*(xyz + 2.03^2)","myscalar=(sqrt(vMagnitude2(mvMultiply(amatrix,bvector)))+5*(xyz+pow(2.03,2)))")\r
- \r
- ]\r
- \r
- for t in testcases:\r
- name,input,expected = t\r
- print(name)\r
- print(" %s input"%input)\r
- print(" %s expected"%expected)\r
- result = parse(input)\r
- print(" %s received"%result)\r
- print("")\r
- assert expected == result\r
- \r
- ##TODO: Write testcases with invalid expressions and test that the expected\r
- ## exceptions are raised.\r
-\r
- print("Tests completed!")\r
-##----------------------------------------------------------------------------\r
-## The following is executed only when this module is executed as \r
-## command line script. It runs a small test suite (see above)\r
-## and then enters an interactive loop where you\r
-## can enter expressions and see the resulting C code as output.\r
-\r
-if __name__ == '__main__':\r
- # run testcases\r
- test()\r
-\r
- # input_string\r
- input_string=''\r
- \r
- # Display instructions on how to use the program interactively\r
- interactiveusage = """\r
- Entering interactive mode:\r
- Type in an equation to be parsed or 'quit' to exit the program.\r
- Type 'debug on' to print parsing details as each string is processed.\r
- Type 'debug off' to stop printing parsing details\r
- """\r
- print(interactiveusage)\r
- input_string = input("> ")\r
- \r
- while input_string != 'quit':\r
- if input_string == "debug on":\r
- debug_flag = True\r
- elif input_string == "debug off":\r
- debug_flag = False\r
- else:\r
- try:\r
- print(parse(input_string))\r
- except:\r
- pass \r
-\r
- # obtain new input string\r
- input_string = input("> ")\r
- \r
- # if user types 'quit' then say goodbye\r
- print("Good bye!")\r
-\r
-\r
+++ /dev/null
-[Startup]\r
-AppName=M3i.comm\r
-stname = Utility\r
-modemid=125D&DEV_1999\r
-audioid=125D&DEV_1998\r
-win98path=\r
-winmepath=\r
-win2kpath=\r
-winxppath=\r
-win95path=\r
-winnt4path=\r
-\r
-stupgrade =Install/Upgrade Drivers\r
-stuninstall =Uninstall Drivers\r
-stchoose =Choose One Function to Process\r
-stchoosez3 =Choose Devices to Process\r
-\r
-copycompl =Copying files completed\r
-\r
-RemString1=Set up has finished remove ESS device driver and cleaned your system. Click Finish to exit.\r
-RemString2=ESS devices is removed completely.No need to reboot. If you want to reinstall, run the setup again with driver package.\r
-stshowmsg1=Setup will clean the installed files and update registry.\r
-stshowmsg2=Setup is updating system's registry ....\r
-stshowmsg3=Setup is starting \r
-\r
-sysdriver=es56cvmp.sys\r
-mdmzn=mdmm3com.inf\r
-mdmznp=esmdm_98.inf\r
-mdmzna=mdmessa.inf\r
-spkname=essspk.exe\r
-remvess=remvess.exe\r
-slmcat=allem3m.cat\r
-audiocat=allem3.cat\r
-audioinf=M3i\r
-sysaudio=es198xdl.sys\r
-audiovxd=es198x.vxd\r
- \r
-[Languages]\r
-Default=0x0009\r
-count=30\r
-key0=0x002d\r
-key1=0x0003\r
-key2=0x0804\r
-key3=0x0404\r
-key4=0x001a\r
-key5=0x0005\r
-key6=0x0006\r
-key7=0x0013\r
-key8=0x0009\r
-key9=0x000b\r
-key10=0x0c0c\r
-key11=0x040c\r
-key12=0x0007\r
-key13=0x0008\r
-key14=0x000e\r
-key15=0x0021\r
-key16=0x0010\r
-key17=0x0011\r
-key18=0x0012\r
-key19=0x0014\r
-key20=0x0015\r
-key21=0x0416\r
-key22=0x0816\r
-key23=0x0019\r
-key24=0x001b\r
-key25=0x0024\r
-key26=0x000a\r
-key27=0x001d\r
-key28=0x001e\r
-key29=0x001f\r
-\r
-[test]\r
-foo=bar\r
+++ /dev/null
-# SimpleCalc.py\r
-#\r
-# Demonstration of the parsing module, \r
-# Sample usage\r
-#\r
-# $ python SimpleCalc.py \r
-# Type in the string to be parse or 'quit' to exit the program\r
-# > g=67.89 + 7/5 \r
-# 69.29\r
-# > g\r
-# 69.29\r
-# > h=(6*g+8.8)-g \r
-# 355.25\r
-# > h + 1 \r
-# 356.25\r
-# > 87.89 + 7/5 \r
-# 89.29\r
-# > ans+10\r
-# 99.29\r
-# > quit\r
-# Good bye!\r
-#\r
-# \r
-\r
-\r
-\r
-# Uncomment the line below for readline support on interactive terminal\r
-# import readline \r
-from pyparsing import ParseException, Word, alphas, alphanums\r
-import math\r
-\r
-# Debugging flag can be set to either "debug_flag=True" or "debug_flag=False"\r
-debug_flag=False\r
-\r
-variables = {}\r
-\r
-from fourFn import BNF, exprStack, fn, opn\r
-def evaluateStack( s ):\r
- op = s.pop()\r
- if op == 'unary -':\r
- return -evaluateStack( s )\r
- if op in "+-*/^":\r
- op2 = evaluateStack( s )\r
- op1 = evaluateStack( s )\r
- return opn[op]( op1, op2 )\r
- elif op == "PI":\r
- return math.pi # 3.1415926535\r
- elif op == "E":\r
- return math.e # 2.718281828\r
- elif op in fn:\r
- return fn[op]( evaluateStack( s ) )\r
- elif op[0].isalpha():\r
- if op in variables:\r
- return variables[op]\r
- raise Exception("invalid identifier '%s'" % op)\r
- else:\r
- return float( op )\r
-\r
-arithExpr = BNF()\r
-ident = Word(alphas, alphanums).setName("identifier")\r
-assignment = ident("varname") + '=' + arithExpr\r
-pattern = assignment | arithExpr\r
-\r
-if __name__ == '__main__':\r
- # input_string\r
- input_string=''\r
- \r
- # Display instructions on how to quit the program\r
- print("Type in the string to be parsed or 'quit' to exit the program")\r
- input_string = input("> ")\r
- \r
- while input_string != 'quit':\r
- if input_string.lower() == 'debug':\r
- debug_flag=True\r
- input_string = input("> ")\r
- continue\r
-\r
- # Reset to an empty exprStack\r
- del exprStack[:]\r
- \r
- if input_string != '':\r
- # try parsing the input string\r
- try:\r
- L=pattern.parseString( input_string, parseAll=True )\r
- except ParseException as err:\r
- L=['Parse Failure',input_string]\r
- \r
- # show result of parsing the input string\r
- if debug_flag: print(input_string, "->", L)\r
- if len(L)==0 or L[0] != 'Parse Failure':\r
- if debug_flag: print("exprStack=", exprStack)\r
- \r
- # calculate result , store a copy in ans , display the result to user\r
- try:\r
- result=evaluateStack(exprStack)\r
- except Exception as e:\r
- print(str(e))\r
- else:\r
- variables['ans']=result\r
- print(result)\r
- \r
- # Assign result to a variable if required\r
- if L.varname:\r
- variables[L.varname] = result\r
- if debug_flag: print("variables=",variables)\r
- else:\r
- print('Parse Failure')\r
- print(err.line)\r
- print(" "*(err.column-1) + "^")\r
- print(err)\r
- \r
- # obtain new input string\r
- input_string = input("> ")\r
- \r
- # if user type 'quit' then say goodbye\r
- print("Good bye!")\r
-\r
-\r
+++ /dev/null
-object Form1: TForm1\r
- Left = 161\r
- Top = 149\r
- Width = 696\r
- Height = 342\r
- Caption = 'DbxSingle'\r
- Color = clBtnFace\r
- Font.Charset = DEFAULT_CHARSET\r
- Font.Color = clWindowText\r
- Font.Height = -11\r
- Font.Name = 'MS Sans Serif'\r
- Font.Style = []\r
- OldCreateOrder = False\r
- OnCreate = FormCreate\r
- PixelsPerInch = 96\r
- TextHeight = 13\r
- object ActionToolBar2: TActionToolBar\r
- Left = 0\r
- Top = 0\r
- Width = 688\r
- Height = 26\r
- ActionManager = ActionManager1\r
- AllowHiding = False\r
- Caption = 'ActionToolBar2'\r
- ColorMap.HighlightColor = 14410210\r
- ColorMap.BtnSelectedColor = clBtnFace\r
- ColorMap.UnusedColor = 14410210\r
- Spacing = 0\r
- end\r
- object PageControl1: TPageControl\r
- Left = 0\r
- Top = 26\r
- Width = 688\r
- Height = 289\r
- ActivePage = TabSheet1\r
- Align = alClient\r
- TabOrder = 1\r
- object TabSheet1: TTabSheet\r
- Caption = 'Data'\r
- object DBGrid1: TDBGrid\r
- Left = 0\r
- Top = 0\r
- Width = 680\r
- Height = 261\r
- Align = alClient\r
- DataSource = DataSource1\r
- TabOrder = 0\r
- TitleFont.Charset = DEFAULT_CHARSET\r
- TitleFont.Color = clWindowText\r
- TitleFont.Height = -11\r
- TitleFont.Name = 'MS Sans Serif'\r
- TitleFont.Style = []\r
- end\r
- end\r
- object TabSheet2: TTabSheet\r
- Caption = 'Log'\r
- ImageIndex = 1\r
- object Memo1: TMemo\r
- Left = 0\r
- Top = 0\r
- Width = 680\r
- Height = 399\r
- Align = alClient\r
- TabOrder = 0\r
- end\r
- end\r
- end\r
- object SimpleDataSet1: TSimpleDataSet\r
- Aggregates = <>\r
- Connection.ConnectionName = 'IBLocal'\r
- Connection.DriverName = 'Interbase'\r
- Connection.GetDriverFunc = 'getSQLDriverINTERBASE'\r
- Connection.LibraryName = 'dbexpint.dll'\r
- Connection.LoginPrompt = False\r
- Connection.Params.Strings = (\r
- 'BlobSize=-1'\r
- 'CommitRetain=False'\r
- \r
- 'Database=C:\Program Files\Common Files\Borland Shared\Data\emplo' +\r
- 'yee.gdb'\r
- 'DriverName=Interbase'\r
- 'Password=masterkey'\r
- 'RoleName=RoleName'\r
- 'ServerCharSet=ASCII'\r
- 'SQLDialect=1'\r
- 'Interbase TransIsolation=ReadCommited'\r
- 'User_Name=sysdba'\r
- 'WaitOnLocks=True')\r
- Connection.VendorLib = 'GDS32.DLL'\r
- DataSet.CommandText = 'EMPLOYEE'\r
- DataSet.CommandType = ctTable\r
- DataSet.MaxBlobSize = -1\r
- DataSet.Params = <>\r
- Params = <>\r
- AfterPost = DoUpdate\r
- BeforeDelete = DoUpdate\r
- Left = 104\r
- Top = 56\r
- end\r
- object ActionManager1: TActionManager\r
- ActionBars = <\r
- item\r
- Items.CaptionOptions = coAll\r
- Items = <\r
- item\r
- Action = DataSetFirst1\r
- ImageIndex = 0\r
- end\r
- item\r
- Action = DataSetPrior1\r
- ImageIndex = 1\r
- end\r
- item\r
- Action = DataSetNext1\r
- ImageIndex = 2\r
- end\r
- item\r
- Action = DataSetLast1\r
- ImageIndex = 3\r
- end\r
- item\r
- Action = DataSetInsert1\r
- ImageIndex = 4\r
- end\r
- item\r
- Action = DataSetDelete1\r
- ImageIndex = 5\r
- end\r
- item\r
- Action = DataSetEdit1\r
- ImageIndex = 6\r
- end\r
- item\r
- Action = DataSetPost1\r
- ImageIndex = 7\r
- end\r
- item\r
- Action = DataSetCancel1\r
- ImageIndex = 8\r
- end\r
- item\r
- Action = DataSetRefresh1\r
- ImageIndex = 9\r
- end>\r
- ActionBar = ActionToolBar2\r
- end>\r
- Images = ImageList1\r
- Left = 112\r
- Top = 184\r
- StyleName = 'XP Style'\r
- object DataSetFirst1: TDataSetFirst\r
- Category = 'Dataset'\r
- Caption = 'First'\r
- ImageIndex = 0\r
- end\r
- object DataSetPrior1: TDataSetPrior\r
- Category = 'Dataset'\r
- Caption = 'Prior'\r
- ImageIndex = 1\r
- end\r
- object DataSetNext1: TDataSetNext\r
- Category = 'Dataset'\r
- Caption = 'Next'\r
- ImageIndex = 2\r
- end\r
- object DataSetLast1: TDataSetLast\r
- Category = 'Dataset'\r
- Caption = 'Last'\r
- ImageIndex = 3\r
- end\r
- object DataSetInsert1: TDataSetInsert\r
- Category = 'Dataset'\r
- Caption = 'Insert'\r
- ImageIndex = 4\r
- end\r
- object DataSetDelete1: TDataSetDelete\r
- Category = 'Dataset'\r
- Caption = 'Delete'\r
- ImageIndex = 5\r
- end\r
- object DataSetEdit1: TDataSetEdit\r
- Category = 'Dataset'\r
- Caption = 'Edit'\r
- ImageIndex = 6\r
- end\r
- object DataSetPost1: TDataSetPost\r
- Category = 'Dataset'\r
- Caption = 'Post'\r
- ImageIndex = 7\r
- end\r
- object DataSetCancel1: TDataSetCancel\r
- Category = 'Dataset'\r
- Caption = 'Cancel'\r
- ImageIndex = 8\r
- end\r
- object DataSetRefresh1: TDataSetRefresh\r
- Category = 'Dataset'\r
- Caption = 'Refresh'\r
- ImageIndex = 9\r
- end\r
- end\r
- object ImageList1: TImageList\r
- Left = 112\r
- Top = 120\r
- Bitmap = {\r
- 494C01010C000F00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600\r
- 0000000000003600000028000000400000004000000001002000000000000040\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400848484008484840084848400848484008484\r
- 8400848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 00000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000008484840000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 00000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000848484000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 00000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 00000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000008484\r
- 8400000000008484840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400008484000084840000848400008484000084840000848400008484000084\r
- 8400008484000084840000000000000000000000000000000000000000000000\r
- 00000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000\r
- 0000848484000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000084\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000008484000084840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000008484840000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000084848400000000008484840000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000084840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000008484840000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000008484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000848484000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000008484840000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000848484000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000008484840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000848484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000008484840000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484008484840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000848484008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000848484000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000008484840000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000848484000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000008484840000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000848484000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000008484840000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000084848400000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000084848400000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000848484000000000000000000000000000000000000000000000000008484\r
- 8400000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 000000000000000000000000000000000000424D3E000000000000003E000000\r
- 2800000040000000400000000100010000000000000200000000000000000000\r
- 000000000000000000000000FFFFFF0000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 0000000000000000000000000000000000000000000000000000000000000000\r
- 00000000000000000000000000000000FFFFFFFFFFFFFC07FFFFFFFFC001F807\r
- FFFFFFFF8031F807FFFFFC7F8031F807F3E7F0FF8031F807F1C7F1FF8001F807\r
- F88FE3FF8001F807FC1FE7FF8001F80FFE3FE7078FF1FF7FFC1FE3878FF1FE3F\r
- F88FE1078FF1FC1FF1C7F0078FF1FFFFF3E7F8378FF1FEFFFFFFFFFF8FF5FFFF\r
- FFFFFFFF8001FDFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\r
- FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFBFFFC7FFFFFFFFFF1FF\r
- FC7FFFFFE007E0FFE00FE007F00FC47FE00FE007F81FCE3FE00FE007FC3FFF1F\r
- FC7FFFFFFE7FFF8FFC7FFFFFFFFFFFC7FC7FFFFFFFFFFFE7FFFFFFFFFFFFFFFF\r
- FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\r
- FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7E7FF9FF9FFE7E7\r
- E787FE1FF87FE1E7E607F81FF81FE067E007F01FF80FE007E607F81FF81FE067\r
- E787FE1FF87FE1E7E7E7FF9FF9FFE7E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\r
- FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000\r
- 000000000000}\r
- end\r
- object DataSource1: TDataSource\r
- DataSet = SimpleDataSet1\r
- Left = 108\r
- Top = 250\r
- end\r
- object SQLMonitor1: TSQLMonitor\r
- OnTrace = SQLMonitor1Trace\r
- Left = 228\r
- Top = 122\r
- end\r
-end\r
+++ /dev/null
-#\r
-# TAP.py - TAP parser\r
-#\r
-# A pyparsing parser to process the output of the Perl\r
-# "Test Anything Protocol"\r
-# (http://search.cpan.org/~petdance/TAP-1.00/TAP.pm)\r
-#\r
-# TAP output lines are preceded or followed by a test number range:\r
-# 1..n\r
-# with 'n' TAP output lines.\r
-#\r
-# The general format of a TAP output line is:\r
-# ok/not ok (required)\r
-# Test number (recommended)\r
-# Description (recommended)\r
-# Directive (only when necessary)\r
-#\r
-# A TAP output line may also indicate abort of the test suit with the line:\r
-# Bail out!\r
-# optionally followed by a reason for bailing\r
-#\r
-# Copyright 2008, by Paul McGuire\r
-#\r
-\r
-from pyparsing import ParserElement,LineEnd,Optional,Word,nums,Regex,\\r
- Literal,CaselessLiteral,Group,OneOrMore,Suppress,restOfLine,\\r
- FollowedBy,empty\r
-\r
-__all__ = ['tapOutputParser', 'TAPTest', 'TAPSummary']\r
-\r
-# newlines are significant whitespace, so set default skippable\r
-# whitespace to just spaces and tabs\r
-ParserElement.setDefaultWhitespaceChars(" \t")\r
-NL = LineEnd().suppress()\r
-\r
-integer = Word(nums)\r
-plan = '1..' + integer("ubound")\r
-\r
-OK,NOT_OK = map(Literal,['ok','not ok'])\r
-testStatus = (OK | NOT_OK)\r
-\r
-description = Regex("[^#\n]+")\r
-description.setParseAction(lambda t:t[0].lstrip('- '))\r
-\r
-TODO,SKIP = map(CaselessLiteral,'TODO SKIP'.split())\r
-directive = Group(Suppress('#') + (TODO + restOfLine | \r
- FollowedBy(SKIP) + \r
- restOfLine.copy().setParseAction(lambda t:['SKIP',t[0]]) ))\r
-\r
-commentLine = Suppress("#") + empty + restOfLine\r
-\r
-testLine = Group(\r
- Optional(OneOrMore(commentLine + NL))("comments") +\r
- testStatus("passed") +\r
- Optional(integer)("testNumber") + \r
- Optional(description)("description") + \r
- Optional(directive)("directive")\r
- )\r
-bailLine = Group(Literal("Bail out!")("BAIL") + \r
- empty + Optional(restOfLine)("reason"))\r
-\r
-tapOutputParser = Optional(Group(plan)("plan") + NL) & \\r
- Group(OneOrMore((testLine|bailLine) + NL))("tests")\r
-\r
-class TAPTest(object):\r
- def __init__(self,results):\r
- self.num = results.testNumber\r
- self.passed = (results.passed=="ok")\r
- self.skipped = self.todo = False\r
- if results.directive:\r
- self.skipped = (results.directive[0][0]=='SKIP')\r
- self.todo = (results.directive[0][0]=='TODO')\r
- @classmethod\r
- def bailedTest(cls,num):\r
- ret = TAPTest(empty.parseString(""))\r
- ret.num = num\r
- ret.skipped = True\r
- return ret\r
-\r
-class TAPSummary(object):\r
- def __init__(self,results):\r
- self.passedTests = []\r
- self.failedTests = []\r
- self.skippedTests = []\r
- self.todoTests = []\r
- self.bonusTests = []\r
- self.bail = False\r
- if results.plan:\r
- expected = list(range(1, int(results.plan.ubound)+1))\r
- else:\r
- expected = list(range(1,len(results.tests)+1))\r
- \r
- for i,res in enumerate(results.tests):\r
- # test for bail out\r
- if res.BAIL:\r
- #~ print "Test suite aborted: " + res.reason\r
- #~ self.failedTests += expected[i:]\r
- self.bail = True\r
- self.skippedTests += [ TAPTest.bailedTest(ii) for ii in expected[i:] ]\r
- self.bailReason = res.reason\r
- break\r
- \r
- #~ print res.dump()\r
- testnum = i+1\r
- if res.testNumber != "":\r
- if testnum != int(res.testNumber):\r
- print("ERROR! test %(testNumber)s out of sequence" % res)\r
- testnum = int(res.testNumber)\r
- res["testNumber"] = testnum\r
-\r
- test = TAPTest(res)\r
- if test.passed: \r
- self.passedTests.append(test)\r
- else:\r
- self.failedTests.append(test)\r
- if test.skipped: self.skippedTests.append(test)\r
- if test.todo: self.todoTests.append(test)\r
- if test.todo and test.passed: self.bonusTests.append(test)\r
- \r
- self.passedSuite = not self.bail and (set(self.failedTests)-set(self.todoTests) == set())\r
- \r
- def summary(self, showPassed=False, showAll=False):\r
- testListStr = lambda tl : "[" + ",".join(str(t.num) for t in tl) + "]"\r
- summaryText = []\r
- if showPassed or showAll:\r
- summaryText.append( "PASSED: %s" % testListStr(self.passedTests) )\r
- if self.failedTests or showAll:\r
- summaryText.append( "FAILED: %s" % testListStr(self.failedTests) )\r
- if self.skippedTests or showAll:\r
- summaryText.append( "SKIPPED: %s" % testListStr(self.skippedTests) )\r
- if self.todoTests or showAll:\r
- summaryText.append( "TODO: %s" % testListStr(self.todoTests) )\r
- if self.bonusTests or showAll:\r
- summaryText.append( "BONUS: %s" % testListStr(self.bonusTests) )\r
- if self.passedSuite:\r
- summaryText.append( "PASSED" )\r
- else:\r
- summaryText.append( "FAILED" )\r
- return "\n".join(summaryText)\r
-\r
-# create TAPSummary objects from tapOutput parsed results, by setting\r
-# class as parse action\r
-tapOutputParser.setParseAction(TAPSummary)\r
-\r
-\r
-if __name__ == "__main__":\r
- test1 = """\\r
- 1..4\r
- ok 1 - Input file opened\r
- not ok 2 - First line of the input valid\r
- ok 3 - Read the rest of the file\r
- not ok 4 - Summarized correctly # TODO Not written yet\r
- """\r
- test2 = """\\r
- ok 1\r
- not ok 2 some description # TODO with a directive\r
- ok 3 a description only, no directive\r
- ok 4 # TODO directive only\r
- ok a description only, no directive\r
- ok # Skipped only a directive, no description\r
- ok\r
- """\r
- test3 = """\\r
- ok - created Board\r
- ok\r
- ok\r
- not ok\r
- ok\r
- ok\r
- ok\r
- ok\r
- # +------+------+------+------+\r
- # | |16G | |05C |\r
- # | |G N C | |C C G |\r
- # | | G | | C +|\r
- # +------+------+------+------+\r
- # |10C |01G | |03C |\r
- # |R N G |G A G | |C C C |\r
- # | R | G | | C +|\r
- # +------+------+------+------+\r
- # | |01G |17C |00C |\r
- # | |G A G |G N R |R N R |\r
- # | | G | R | G |\r
- # +------+------+------+------+\r
- ok - board has 7 tiles + starter tile\r
- 1..9\r
- """\r
- test4 = """\\r
- 1..4\r
- ok 1 - Creating test program\r
- ok 2 - Test program runs, no error\r
- not ok 3 - infinite loop # TODO halting problem unsolved\r
- not ok 4 - infinite loop 2 # TODO halting problem unsolved\r
- """\r
- test5 = """\\r
- 1..20\r
- ok - database handle\r
- not ok - failed database login\r
- Bail out! Couldn't connect to database.\r
- """\r
- test6 = """\\r
- ok 1 - retrieving servers from the database\r
- # need to ping 6 servers\r
- ok 2 - pinged diamond\r
- ok 3 - pinged ruby\r
- not ok 4 - pinged sapphire\r
- ok 5 - pinged onyx\r
- not ok 6 - pinged quartz\r
- ok 7 - pinged gold\r
- 1..7\r
- """\r
-\r
- for test in (test1,test2,test3,test4,test5,test6):\r
- print(test)\r
- tapResult = tapOutputParser.parseString(test)[0]\r
- print(tapResult.summary(showAll=True))\r
- print()\r
+++ /dev/null
-# adventureEngine.py\r
-# Copyright 2005-2006, Paul McGuire\r
-#\r
-# Updated 2012 - latest pyparsing API\r
-#\r
-\r
-from pyparsing import *\r
-import random\r
-import string\r
-\r
-def aOrAn( item ):\r
- if item.desc[0] in "aeiou":\r
- return "an " + item.desc \r
- else:\r
- return "a " + item.desc\r
- \r
-def enumerateItems(l):\r
- if len(l) == 0: return "nothing"\r
- out = []\r
- if len(l) > 1:\r
- out.append(', '.join(aOrAn(item) for item in l[:-1]))\r
- out.append('and')\r
- out.append(aOrAn(l[-1]))\r
- return " ".join(out)\r
-\r
-def enumerateDoors(l):\r
- if len(l) == 0: return ""\r
- out = []\r
- if len(l) > 1:\r
- out.append(', '.join(l[:-1]))\r
- out.append("and")\r
- out.append(l[-1])\r
- return " ".join(out)\r
- \r
-class Room(object):\r
- def __init__(self, desc):\r
- self.desc = desc\r
- self.inv = []\r
- self.gameOver = False\r
- self.doors = [None,None,None,None]\r
- \r
- def __getattr__(self,attr):\r
- return \\r
- { \r
- "n":self.doors[0],\r
- "s":self.doors[1],\r
- "e":self.doors[2],\r
- "w":self.doors[3],\r
- }[attr]\r
- \r
- def enter(self,player):\r
- if self.gameOver:\r
- player.gameOver = True\r
- \r
- def addItem(self, it):\r
- self.inv.append(it)\r
- \r
- def removeItem(self,it):\r
- self.inv.remove(it)\r
- \r
- def describe(self):\r
- print(self.desc)\r
- visibleItems = [ it for it in self.inv if it.isVisible ]\r
- if random.random() > 0.5:\r
- if len(visibleItems) > 1:\r
- is_form = "are"\r
- else:\r
- is_form = "is"\r
- print("There %s %s here." % (is_form, enumerateItems(visibleItems)))\r
- else:\r
- print("You see %s." % (enumerateItems(visibleItems)))\r
- \r
-\r
-class Exit(Room):\r
- def __init__(self):\r
- super(Exit,self).__init__("")\r
- \r
- def enter(self,player):\r
- player.gameOver = True\r
-\r
-\r
-\r
-class Item(object):\r
- items = {}\r
- def __init__(self, desc):\r
- self.desc = desc\r
- self.isDeadly = False\r
- self.isFragile = False\r
- self.isBroken = False\r
- self.isTakeable = True\r
- self.isVisible = True\r
- self.isOpenable = False\r
- self.useAction = None\r
- self.usableConditionTest = None\r
- self.cantTakeMessage = "You can't take that!"\r
- Item.items[desc] = self\r
- \r
- def __str__(self):\r
- return self.desc\r
- \r
- def breakItem(self):\r
- if not self.isBroken:\r
- print("<Crash!>")\r
- self.desc = "broken " + self.desc\r
- self.isBroken = True\r
-\r
- def isUsable(self, player, target):\r
- if self.usableConditionTest:\r
- return self.usableConditionTest( player, target )\r
- else:\r
- return False\r
- \r
- def useItem(self, player, target):\r
- if self.useAction:\r
- self.useAction(player, self, target)\r
-\r
-class OpenableItem(Item):\r
- def __init__(self, desc, contents=None):\r
- super(OpenableItem,self).__init__(desc)\r
- self.isOpenable = True\r
- self.isOpened = False\r
- if contents is not None:\r
- if isinstance(contents, Item):\r
- self.contents = [contents,]\r
- else:\r
- self.contents = contents\r
- else:\r
- self.contents = []\r
- \r
- def openItem(self, player):\r
- if not self.isOpened:\r
- self.isOpened = not self.isOpened\r
- if self.contents is not None:\r
- for item in self.contents:\r
- player.room.addItem( item )\r
- self.contents = []\r
- self.desc = "open " + self.desc\r
- \r
- def closeItem(self, player):\r
- if self.isOpened:\r
- self.isOpened = not self.isOpened\r
- if self.desc.startswith("open "):\r
- self.desc = self.desc[5:]\r
-\r
-\r
-class Command(object):\r
- "Base class for commands"\r
- def __init__(self, verb, verbProg):\r
- self.verb = verb\r
- self.verbProg = verbProg\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return ""\r
- \r
- def _doCommand(self, player):\r
- pass\r
- \r
- def __call__(self, player ):\r
- print(self.verbProg.capitalize()+"...")\r
- self._doCommand(player)\r
-\r
-\r
-class MoveCommand(Command):\r
- def __init__(self, quals):\r
- super(MoveCommand,self).__init__("MOVE", "moving")\r
- self.direction = quals.direction[0]\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return """MOVE or GO - go NORTH, SOUTH, EAST, or WEST \r
- (can abbreviate as 'GO N' and 'GO W', or even just 'E' and 'S')"""\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- nextRoom = rm.doors[ \r
- {\r
- "N":0,\r
- "S":1,\r
- "E":2,\r
- "W":3,\r
- }[self.direction]\r
- ]\r
- if nextRoom:\r
- player.moveTo( nextRoom )\r
- else:\r
- print("Can't go that way.")\r
-\r
-\r
-class TakeCommand(Command):\r
- def __init__(self, quals):\r
- super(TakeCommand,self).__init__("TAKE", "taking")\r
- self.subject = quals.item\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "TAKE or PICKUP or PICK UP - pick up an object (but some are deadly)"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- subj = Item.items[self.subject]\r
- if subj in rm.inv and subj.isVisible:\r
- if subj.isTakeable:\r
- rm.removeItem(subj)\r
- player.take(subj)\r
- else:\r
- print(subj.cantTakeMessage)\r
- else:\r
- print("There is no %s here." % subj)\r
-\r
-\r
-class DropCommand(Command):\r
- def __init__(self, quals):\r
- super(DropCommand,self).__init__("DROP", "dropping")\r
- self.subject = quals.item\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "DROP or LEAVE - drop an object (but fragile items may break)"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- subj = Item.items[self.subject]\r
- if subj in player.inv:\r
- rm.addItem(subj)\r
- player.drop(subj)\r
- else:\r
- print("You don't have %s." % (aOrAn(subj)))\r
-\r
-class InventoryCommand(Command):\r
- def __init__(self, quals):\r
- super(InventoryCommand,self).__init__("INV", "taking inventory")\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "INVENTORY or INV or I - lists what items you have"\r
- \r
- def _doCommand(self, player):\r
- print("You have %s." % enumerateItems( player.inv ))\r
-\r
-class LookCommand(Command):\r
- def __init__(self, quals):\r
- super(LookCommand,self).__init__("LOOK", "looking")\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "LOOK or L - describes the current room and any objects in it"\r
- \r
- def _doCommand(self, player):\r
- player.room.describe()\r
-\r
-class DoorsCommand(Command):\r
- def __init__(self, quals):\r
- super(DoorsCommand,self).__init__("DOORS", "looking for doors")\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "DOORS - display what doors are visible from this room"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- numDoors = sum([1 for r in rm.doors if r is not None])\r
- if numDoors == 0:\r
- reply = "There are no doors in any direction."\r
- else:\r
- if numDoors == 1:\r
- reply = "There is a door to the "\r
- else:\r
- reply = "There are doors to the "\r
- doorNames = [ {0:"north", 1:"south", 2:"east", 3:"west"}[i] \r
- for i,d in enumerate(rm.doors) if d is not None ]\r
- #~ print doorNames\r
- reply += enumerateDoors( doorNames )\r
- reply += "."\r
- print(reply)\r
-\r
-class UseCommand(Command):\r
- def __init__(self, quals):\r
- super(UseCommand,self).__init__("USE", "using")\r
- self.subject = Item.items[quals.usedObj]\r
- if quals.targetObj:\r
- self.target = Item.items[quals.targetObj]\r
- else:\r
- self.target = None\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "USE or U - use an object, optionally IN or ON another object"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- availItems = rm.inv + player.inv\r
- if self.subject in availItems:\r
- if self.subject.isUsable( player, self.target ):\r
- self.subject.useItem( player, self.target )\r
- else:\r
- print("You can't use that here.")\r
- else:\r
- print("There is no %s here to use." % self.subject)\r
-\r
-class OpenCommand(Command):\r
- def __init__(self, quals):\r
- super(OpenCommand,self).__init__("OPEN", "opening")\r
- self.subject = Item.items[quals.item]\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "OPEN or O - open an object"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- availItems = rm.inv+player.inv\r
- if self.subject in availItems:\r
- if self.subject.isOpenable:\r
- if not self.subject.isOpened:\r
- self.subject.openItem( player )\r
- else:\r
- print("It's already open.")\r
- else:\r
- print("You can't open that.")\r
- else:\r
- print("There is no %s here to open." % self.subject)\r
-\r
-class CloseCommand(Command):\r
- def __init__(self, quals):\r
- super(CloseCommand,self).__init__("CLOSE", "closing")\r
- self.subject = Item.items[quals.item]\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "CLOSE or CL - close an object"\r
- \r
- def _doCommand(self, player):\r
- rm = player.room\r
- availItems = rm.inv+player.inv\r
- if self.subject in availItems:\r
- if self.subject.isOpenable:\r
- if self.subject.isOpened:\r
- self.subject.closeItem( player )\r
- else:\r
- print("You can't close that, it's not open.")\r
- else:\r
- print("You can't close that.")\r
- else:\r
- print("There is no %s here to close." % self.subject)\r
-\r
-class QuitCommand(Command):\r
- def __init__(self, quals):\r
- super(QuitCommand,self).__init__("QUIT", "quitting")\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "QUIT or Q - ends the game"\r
- \r
- def _doCommand(self, player):\r
- print("Ok....")\r
- player.gameOver = True\r
-\r
-class HelpCommand(Command):\r
- def __init__(self, quals):\r
- super(HelpCommand,self).__init__("HELP", "helping")\r
-\r
- @staticmethod\r
- def helpDescription():\r
- return "HELP or H or ? - displays this help message"\r
- \r
- def _doCommand(self, player):\r
- print("Enter any of the following commands (not case sensitive):")\r
- for cmd in [\r
- InventoryCommand,\r
- DropCommand,\r
- TakeCommand,\r
- UseCommand,\r
- OpenCommand,\r
- CloseCommand,\r
- MoveCommand,\r
- LookCommand,\r
- DoorsCommand,\r
- QuitCommand,\r
- HelpCommand,\r
- ]:\r
- print(" - %s" % cmd.helpDescription())\r
- print()\r
-\r
-class AppParseException(ParseException):\r
- pass\r
-\r
-class Parser(object):\r
- def __init__(self):\r
- self.bnf = self.makeBNF()\r
- \r
- def makeBNF(self):\r
- invVerb = oneOf("INV INVENTORY I", caseless=True) \r
- dropVerb = oneOf("DROP LEAVE", caseless=True) \r
- takeVerb = oneOf("TAKE PICKUP", caseless=True) | \\r
- (CaselessLiteral("PICK") + CaselessLiteral("UP") )\r
- moveVerb = oneOf("MOVE GO", caseless=True) | empty\r
- useVerb = oneOf("USE U", caseless=True) \r
- openVerb = oneOf("OPEN O", caseless=True)\r
- closeVerb = oneOf("CLOSE CL", caseless=True)\r
- quitVerb = oneOf("QUIT Q", caseless=True) \r
- lookVerb = oneOf("LOOK L", caseless=True) \r
- doorsVerb = CaselessLiteral("DOORS")\r
- helpVerb = oneOf("H HELP ?",caseless=True)\r
- \r
- itemRef = OneOrMore(Word(alphas)).setParseAction( self.validateItemName )\r
- nDir = oneOf("N NORTH",caseless=True).setParseAction(replaceWith("N"))\r
- sDir = oneOf("S SOUTH",caseless=True).setParseAction(replaceWith("S"))\r
- eDir = oneOf("E EAST",caseless=True).setParseAction(replaceWith("E"))\r
- wDir = oneOf("W WEST",caseless=True).setParseAction(replaceWith("W"))\r
- moveDirection = nDir | sDir | eDir | wDir\r
- \r
- invCommand = invVerb\r
- dropCommand = dropVerb + itemRef("item")\r
- takeCommand = takeVerb + itemRef("item")\r
- useCommand = useVerb + itemRef("usedObj") + \\r
- Optional(oneOf("IN ON",caseless=True)) + \\r
- Optional(itemRef,default=None)("targetObj")\r
- openCommand = openVerb + itemRef("item")\r
- closeCommand = closeVerb + itemRef("item")\r
- moveCommand = moveVerb + moveDirection("direction")\r
- quitCommand = quitVerb\r
- lookCommand = lookVerb\r
- doorsCommand = doorsVerb\r
- helpCommand = helpVerb\r
- \r
- # attach command classes to expressions\r
- invCommand.setParseAction(InventoryCommand)\r
- dropCommand.setParseAction(DropCommand)\r
- takeCommand.setParseAction(TakeCommand)\r
- useCommand.setParseAction(UseCommand)\r
- openCommand.setParseAction(OpenCommand)\r
- closeCommand.setParseAction(CloseCommand)\r
- moveCommand.setParseAction(MoveCommand)\r
- quitCommand.setParseAction(QuitCommand)\r
- lookCommand.setParseAction(LookCommand)\r
- doorsCommand.setParseAction(DoorsCommand)\r
- helpCommand.setParseAction(HelpCommand)\r
-\r
- # define parser using all command expressions\r
- return ( invCommand | \r
- useCommand |\r
- openCommand | \r
- closeCommand | \r
- dropCommand | \r
- takeCommand | \r
- moveCommand | \r
- lookCommand | \r
- doorsCommand | \r
- helpCommand |\r
- quitCommand )("command") + LineEnd()\r
- \r
- def validateItemName(self,s,l,t):\r
- iname = " ".join(t)\r
- if iname not in Item.items:\r
- raise AppParseException(s,l,"No such item '%s'." % iname)\r
- return iname\r
-\r
- def parseCmd(self, cmdstr):\r
- try:\r
- ret = self.bnf.parseString(cmdstr)\r
- return ret\r
- except AppParseException as pe:\r
- print(pe.msg)\r
- except ParseException as pe:\r
- print(random.choice([ "Sorry, I don't understand that.",\r
- "Huh?",\r
- "Excuse me?",\r
- "???",\r
- "What?" ] ))\r
- \r
-class Player(object):\r
- def __init__(self, name):\r
- self.name = name\r
- self.gameOver = False\r
- self.inv = []\r
- \r
- def moveTo(self, rm):\r
- self.room = rm\r
- rm.enter(self)\r
- if self.gameOver:\r
- if rm.desc:\r
- rm.describe()\r
- print("Game over!")\r
- else:\r
- rm.describe()\r
- \r
- def take(self,it):\r
- if it.isDeadly:\r
- print("Aaaagh!...., the %s killed me!" % it)\r
- self.gameOver = True\r
- else:\r
- self.inv.append(it)\r
- \r
- def drop(self,it):\r
- self.inv.remove(it)\r
- if it.isFragile:\r
- it.breakItem()\r
- \r
-\r
-def createRooms( rm ):\r
- """\r
- create rooms, using multiline string showing map layout\r
- string contains symbols for the following:\r
- A-Z, a-z indicate rooms, and rooms will be stored in a dictionary by \r
- reference letter\r
- -, | symbols indicate connection between rooms\r
- <, >, ^, . symbols indicate one-way connection between rooms\r
- """\r
- # start with empty dictionary of rooms\r
- ret = {}\r
- \r
- # look for room symbols, and initialize dictionary \r
- # - exit room is always marked 'Z'\r
- for c in rm:\r
- if c in string.ascii_letters:\r
- if c != "Z":\r
- ret[c] = Room(c)\r
- else:\r
- ret[c] = Exit()\r
-\r
- # scan through input string looking for connections between rooms\r
- rows = rm.split("\n")\r
- for row,line in enumerate(rows):\r
- for col,c in enumerate(line):\r
- if c in string.ascii_letters:\r
- room = ret[c]\r
- n = None\r
- s = None\r
- e = None\r
- w = None\r
- \r
- # look in neighboring cells for connection symbols (must take\r
- # care to guard that neighboring cells exist before testing \r
- # contents)\r
- if col > 0 and line[col-1] in "<-":\r
- other = line[col-2]\r
- w = ret[other]\r
- if col < len(line)-1 and line[col+1] in "->":\r
- other = line[col+2]\r
- e = ret[other]\r
- if row > 1 and col < len(rows[row-1]) and rows[row-1][col] in '|^':\r
- other = rows[row-2][col]\r
- n = ret[other]\r
- if row < len(rows)-1 and col < len(rows[row+1]) and rows[row+1][col] in '|.':\r
- other = rows[row+2][col]\r
- s = ret[other]\r
-\r
- # set connections to neighboring rooms\r
- room.doors=[n,s,e,w]\r
-\r
- return ret\r
-\r
-# put items in rooms\r
-def putItemInRoom(i,r):\r
- if isinstance(r,str):\r
- r = rooms[r]\r
- r.addItem( Item.items[i] )\r
-\r
-def playGame(p,startRoom):\r
- # create parser\r
- parser = Parser()\r
- p.moveTo( startRoom )\r
- while not p.gameOver:\r
- cmdstr = input(">> ")\r
- cmd = parser.parseCmd(cmdstr)\r
- if cmd is not None:\r
- cmd.command( p )\r
- print()\r
- print("You ended the game with:")\r
- for i in p.inv:\r
- print(" -", aOrAn(i))\r
-\r
-\r
-#====================\r
-# start game definition\r
-roomMap = """\r
- d-Z\r
- |\r
- f-c-e\r
- . |\r
- q<b\r
- |\r
- A\r
-"""\r
-rooms = createRooms( roomMap )\r
-rooms["A"].desc = "You are standing on the front porch of a wooden shack."\r
-rooms["b"].desc = "You are in a garden."\r
-rooms["c"].desc = "You are in a kitchen."\r
-rooms["d"].desc = "You are on the back porch."\r
-rooms["e"].desc = "You are in a library."\r
-rooms["f"].desc = "You are on the patio."\r
-rooms["q"].desc = "You are sinking in quicksand. You're dead..."\r
-rooms["q"].gameOver = True\r
-\r
-# define global variables for referencing rooms\r
-frontPorch = rooms["A"]\r
-garden = rooms["b"]\r
-kitchen = rooms["c"]\r
-backPorch = rooms["d"]\r
-library = rooms["e"]\r
-patio = rooms["f"]\r
-\r
-# create items\r
-itemNames = """sword.diamond.apple.flower.coin.shovel.book.mirror.telescope.gold bar""".split(".")\r
-for itemName in itemNames:\r
- Item( itemName )\r
-Item.items["apple"].isDeadly = True\r
-Item.items["mirror"].isFragile = True\r
-Item.items["coin"].isVisible = False\r
-Item.items["shovel"].usableConditionTest = ( lambda p,t: p.room is garden )\r
-def useShovel(p,subj,target):\r
- coin = Item.items["coin"]\r
- if not coin.isVisible and coin in p.room.inv:\r
- coin.isVisible = True\r
-Item.items["shovel"].useAction = useShovel\r
-\r
-Item.items["telescope"].isTakeable = False\r
-def useTelescope(p,subj,target):\r
- print("You don't see anything.")\r
-Item.items["telescope"].useAction = useTelescope\r
-\r
-OpenableItem("treasure chest", Item.items["gold bar"])\r
-Item.items["chest"] = Item.items["treasure chest"]\r
-Item.items["chest"].isTakeable = False\r
-Item.items["chest"].cantTakeMessage = "It's too heavy!"\r
-\r
-OpenableItem("mailbox")\r
-Item.items["mailbox"].isTakeable = False\r
-Item.items["mailbox"].cantTakeMessage = "It's nailed to the wall!"\r
-\r
-putItemInRoom("mailbox", frontPorch)\r
-putItemInRoom("shovel", frontPorch)\r
-putItemInRoom("coin", garden)\r
-putItemInRoom("flower", garden)\r
-putItemInRoom("apple", library)\r
-putItemInRoom("mirror", library)\r
-putItemInRoom("telescope", library)\r
-putItemInRoom("book", kitchen)\r
-putItemInRoom("diamond", backPorch)\r
-putItemInRoom("treasure chest", patio)\r
-\r
-# create player\r
-plyr = Player("Bob")\r
-plyr.take( Item.items["sword"] )\r
-\r
-# start game\r
-playGame( plyr, frontPorch )\r
+++ /dev/null
-'''\r
-antlr_grammar.py\r
-\r
-Created on 4 sept. 2010\r
-\r
-@author: luca\r
-\r
-Submitted by Luca DallOlio, September, 2010\r
-(Minor updates by Paul McGuire, June, 2012)\r
-'''\r
-from pyparsing import Word, ZeroOrMore, printables, Suppress, OneOrMore, Group, \\r
- LineEnd, Optional, White, originalTextFor, hexnums, nums, Combine, Literal, Keyword, \\r
- cStyleComment, Regex, Forward, MatchFirst, And, srange, oneOf, alphas, alphanums, \\r
- delimitedList\r
-\r
-# http://www.antlr.org/grammar/ANTLR/ANTLRv3.g\r
-\r
-# Tokens\r
-EOL = Suppress(LineEnd()) # $\r
-singleTextString = originalTextFor(ZeroOrMore(~EOL + (White(" \t") | Word(printables)))).leaveWhitespace()\r
-XDIGIT = hexnums\r
-INT = Word(nums)\r
-ESC = Literal('\\') + (oneOf(list(r'nrtbf\">'+"'")) | ('u' + Word(hexnums, exact=4)) | Word(printables, exact=1))\r
-LITERAL_CHAR = ESC | ~(Literal("'") | Literal('\\')) + Word(printables, exact=1)\r
-CHAR_LITERAL = Suppress("'") + LITERAL_CHAR + Suppress("'")\r
-STRING_LITERAL = Suppress("'") + Combine(OneOrMore(LITERAL_CHAR)) + Suppress("'") \r
-DOUBLE_QUOTE_STRING_LITERAL = '"' + ZeroOrMore(LITERAL_CHAR) + '"'\r
-DOUBLE_ANGLE_STRING_LITERAL = '<<' + ZeroOrMore(Word(printables, exact=1)) + '>>'\r
-TOKEN_REF = Word(alphas.upper(), alphanums+'_')\r
-RULE_REF = Word(alphas.lower(), alphanums+'_')\r
-ACTION_ESC = (Suppress("\\") + Suppress("'")) | Suppress('\\"') | Suppress('\\') + (~(Literal("'") | Literal('"')) + Word(printables, exact=1))\r
-ACTION_CHAR_LITERAL = Suppress("'") + (ACTION_ESC | ~(Literal('\\') | Literal("'")) + Word(printables, exact=1)) + Suppress("'")\r
-ACTION_STRING_LITERAL = Suppress('"') + ZeroOrMore(ACTION_ESC | ~(Literal('\\') | Literal('"')) + Word(printables, exact=1)) + Suppress('"') \r
-SRC = Suppress('src') + ACTION_STRING_LITERAL("file") + INT("line")\r
-id = TOKEN_REF | RULE_REF\r
-SL_COMMENT = Suppress('//') + Suppress('$ANTLR') + SRC | ZeroOrMore(~EOL + Word(printables)) + EOL\r
-ML_COMMENT = cStyleComment\r
-WS = OneOrMore(Suppress(' ') | Suppress('\t') | (Optional(Suppress('\r')) + Literal('\n')))\r
-WS_LOOP = ZeroOrMore(SL_COMMENT | ML_COMMENT)\r
-NESTED_ARG_ACTION = Forward()\r
-NESTED_ARG_ACTION << Suppress('[') + ZeroOrMore(NESTED_ARG_ACTION | ACTION_STRING_LITERAL | ACTION_CHAR_LITERAL) + Suppress(']')\r
-ARG_ACTION = NESTED_ARG_ACTION\r
-NESTED_ACTION = Forward()\r
-NESTED_ACTION << Suppress('{') + ZeroOrMore(NESTED_ACTION | SL_COMMENT | ML_COMMENT | ACTION_STRING_LITERAL | ACTION_CHAR_LITERAL) + Suppress('}')\r
-ACTION = NESTED_ACTION + Optional('?')\r
-SCOPE = Suppress('scope')\r
-OPTIONS = Suppress('options') + Suppress('{') # + WS_LOOP + Suppress('{')\r
-TOKENS = Suppress('tokens') + Suppress('{') # + WS_LOOP + Suppress('{')\r
-FRAGMENT = 'fragment';\r
-TREE_BEGIN = Suppress('^(')\r
-ROOT = Suppress('^')\r
-BANG = Suppress('!')\r
-RANGE = Suppress('..')\r
-REWRITE = Suppress('->')\r
-\r
-# General Parser Definitions\r
-\r
-# Grammar heading\r
-optionValue = id | STRING_LITERAL | CHAR_LITERAL | INT | Literal('*').setName("s")\r
-\r
-option = Group(id("id") + Suppress('=') + optionValue("value"))("option")\r
-optionsSpec = OPTIONS + Group(OneOrMore(option + Suppress(';')))("options") + Suppress('}')\r
-tokenSpec = Group(TOKEN_REF("token_ref") + (Suppress('=') + (STRING_LITERAL | CHAR_LITERAL)("lit")))("token") + Suppress(';')\r
-tokensSpec = TOKENS + Group(OneOrMore(tokenSpec))("tokens") + Suppress('}')\r
-attrScope = Suppress('scope') + id + ACTION\r
-grammarType = Keyword('lexer') + Keyword('parser') + Keyword('tree')\r
-actionScopeName = id | Keyword('lexer')("l") | Keyword('parser')("p")\r
-action = Suppress('@') + Optional(actionScopeName + Suppress('::')) + id + ACTION\r
-\r
-grammarHeading = Optional(ML_COMMENT("ML_COMMENT")) + Optional(grammarType) + Suppress('grammar') + id("grammarName") + Suppress(';') + Optional(optionsSpec) + Optional(tokensSpec) + ZeroOrMore(attrScope) + ZeroOrMore(action)\r
-\r
-modifier = Keyword('protected') | Keyword('public') | Keyword('private') | Keyword('fragment')\r
-ruleAction = Suppress('@') + id + ACTION\r
-throwsSpec = Suppress('throws') + delimitedList(id)\r
-ruleScopeSpec = (Suppress('scope') + ACTION) | (Suppress('scope') + delimitedList(id) + Suppress(';')) | (Suppress('scope') + ACTION + Suppress('scope') + delimitedList(id) + Suppress(';'))\r
-unary_op = oneOf("^ !")\r
-notTerminal = CHAR_LITERAL | TOKEN_REF | STRING_LITERAL\r
-terminal = (CHAR_LITERAL | TOKEN_REF + Optional(ARG_ACTION) | STRING_LITERAL | '.') + Optional(unary_op)\r
-block = Forward()\r
-notSet = Suppress('~') + (notTerminal | block)\r
-rangeNotPython = CHAR_LITERAL("c1") + RANGE + CHAR_LITERAL("c2")\r
-atom = Group(rangeNotPython + Optional(unary_op)("op")) | terminal | (notSet + Optional(unary_op)("op")) | (RULE_REF + Optional(ARG_ACTION("arg")) + Optional(unary_op)("op"))\r
-element = Forward()\r
-treeSpec = Suppress('^(') + element*(2,) + Suppress(')')\r
-ebnfSuffix = oneOf("? * +")\r
-ebnf = block + Optional(ebnfSuffix("op") | '=>')\r
-elementNoOptionSpec = (id("result_name") + oneOf('= +=')("labelOp") + atom("atom") + Optional(ebnfSuffix)) | (id("result_name") + oneOf('= +=')("labelOp") + block + Optional(ebnfSuffix)) | atom("atom") + Optional(ebnfSuffix) | ebnf | ACTION | (treeSpec + Optional(ebnfSuffix)) # | SEMPRED ( '=>' -> GATED_SEMPRED | -> SEMPRED )\r
-element << Group(elementNoOptionSpec)("element")\r
-alternative = Group(Group(OneOrMore(element))("elements")) # Do not ask me why group is needed twice... seems like the xml that you see is not always the real structure?\r
-rewrite = Optional(Literal('TODO REWRITE RULES TODO'))\r
-block << Suppress('(') + Optional(Optional(optionsSpec("opts")) + Suppress(':')) + Group(alternative('a1') + rewrite + Group(ZeroOrMore(Suppress('|') + alternative('a2') + rewrite))("alternatives"))("block") + Suppress(')')\r
-altList = alternative('a1') + rewrite + Group(ZeroOrMore(Suppress('|') + alternative('a2') + rewrite))("alternatives")\r
-exceptionHandler = Suppress('catch') + ARG_ACTION + ACTION\r
-finallyClause = Suppress('finally') + ACTION \r
-exceptionGroup = (OneOrMore(exceptionHandler) + Optional(finallyClause)) | finallyClause\r
-\r
-ruleHeading = Optional(ML_COMMENT)("ruleComment") + Optional(modifier)("modifier") + id("ruleName") + Optional("!") + Optional(ARG_ACTION("arg")) + Optional(Suppress('returns') + ARG_ACTION("rt")) + Optional(throwsSpec) + Optional(optionsSpec) + Optional(ruleScopeSpec) + ZeroOrMore(ruleAction)\r
-rule = Group(ruleHeading + Suppress(':') + altList + Suppress(';') + Optional(exceptionGroup))("rule")\r
-\r
-grammarDef = grammarHeading + Group(OneOrMore(rule))("rules")\r
-\r
-def grammar():\r
- return grammarDef\r
-\r
-def __antlrAlternativesConverter(pyparsingRules, antlrBlock):\r
- rule = None\r
- if hasattr(antlrBlock, 'alternatives') and antlrBlock.alternatives != '' and len(antlrBlock.alternatives) > 0:\r
- alternatives = []\r
- alternatives.append(__antlrAlternativeConverter(pyparsingRules, antlrBlock.a1))\r
- for alternative in antlrBlock.alternatives:\r
- alternatives.append(__antlrAlternativeConverter(pyparsingRules, alternative))\r
- rule = MatchFirst(alternatives)("anonymous_or")\r
- elif hasattr(antlrBlock, 'a1') and antlrBlock.a1 != '':\r
- rule = __antlrAlternativeConverter(pyparsingRules, antlrBlock.a1)\r
- else:\r
- raise Exception('Not yet implemented')\r
- assert rule != None\r
- return rule\r
-\r
-def __antlrAlternativeConverter(pyparsingRules, antlrAlternative):\r
- elementList = []\r
- for element in antlrAlternative.elements:\r
- rule = None\r
- if hasattr(element.atom, 'c1') and element.atom.c1 != '':\r
- regex = r'['+str(element.atom.c1[0])+'-'+str(element.atom.c2[0]+']')\r
- rule = Regex(regex)("anonymous_regex")\r
- elif hasattr(element, 'block') and element.block != '':\r
- rule = __antlrAlternativesConverter(pyparsingRules, element.block) \r
- else:\r
- ruleRef = element.atom\r
- assert ruleRef in pyparsingRules\r
- rule = pyparsingRules[element.atom](element.atom)\r
- if hasattr(element, 'op') and element.op != '':\r
- if element.op == '+':\r
- rule = Group(OneOrMore(rule))("anonymous_one_or_more")\r
- elif element.op == '*':\r
- rule = Group(ZeroOrMore(rule))("anonymous_zero_or_more")\r
- elif element.op == '?':\r
- rule = Optional(rule)\r
- else:\r
- raise Exception('rule operator not yet implemented : ' + element.op)\r
- rule = rule\r
- elementList.append(rule)\r
- if len(elementList) > 1:\r
- rule = Group(And(elementList))("anonymous_and")\r
- else:\r
- rule = elementList[0]\r
- assert rule != None \r
- return rule\r
-\r
-def __antlrRuleConverter(pyparsingRules, antlrRule):\r
- rule = None\r
- rule = __antlrAlternativesConverter(pyparsingRules, antlrRule)\r
- assert rule != None\r
- rule(antlrRule.ruleName)\r
- return rule\r
-\r
-def antlrConverter(antlrGrammarTree):\r
- pyparsingRules = {}\r
- antlrTokens = {}\r
- for antlrToken in antlrGrammarTree.tokens:\r
- antlrTokens[antlrToken.token_ref] = antlrToken.lit\r
- for antlrTokenName, antlrToken in list(antlrTokens.items()):\r
- pyparsingRules[antlrTokenName] = Literal(antlrToken)\r
- antlrRules = {}\r
- for antlrRule in antlrGrammarTree.rules:\r
- antlrRules[antlrRule.ruleName] = antlrRule\r
- pyparsingRules[antlrRule.ruleName] = Forward() # antlr is a top down grammar\r
- for antlrRuleName, antlrRule in list(antlrRules.items()):\r
- pyparsingRule = __antlrRuleConverter(pyparsingRules, antlrRule)\r
- assert pyparsingRule != None\r
- pyparsingRules[antlrRuleName] << pyparsingRule \r
- return pyparsingRules\r
-\r
-if __name__ == "__main__":\r
- \r
- text = """grammar SimpleCalc;\r
-\r
-options {\r
- language = Python;\r
-}\r
-\r
-tokens {\r
- PLUS = '+' ;\r
- MINUS = '-' ;\r
- MULT = '*' ;\r
- DIV = '/' ;\r
-}\r
-\r
-/*------------------------------------------------------------------\r
- * PARSER RULES\r
- *------------------------------------------------------------------*/\r
-\r
-expr : term ( ( PLUS | MINUS ) term )* ;\r
-\r
-term : factor ( ( MULT | DIV ) factor )* ;\r
-\r
-factor : NUMBER ;\r
-\r
-\r
-/*------------------------------------------------------------------\r
- * LEXER RULES\r
- *------------------------------------------------------------------*/\r
-\r
-NUMBER : (DIGIT)+ ;\r
-\r
-/* WHITESPACE : ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+ { $channel = HIDDEN; } ; */\r
-\r
-fragment DIGIT : '0'..'9' ;\r
-\r
-"""\r
- \r
- grammar().validate()\r
- antlrGrammarTree = grammar().parseString(text)\r
- print(antlrGrammarTree.asXML("antlrGrammarTree"))\r
- pyparsingRules = antlrConverter(antlrGrammarTree)\r
- pyparsingRule = pyparsingRules["expr"]\r
- pyparsingTree = pyparsingRule.parseString("2 - 5 * 42 + 7 / 25")\r
- print(pyparsingTree.asXML("pyparsingTree"))\r
+++ /dev/null
-'''
-Created on 4 sept. 2010
-
-@author: luca
-
-Submitted by Luca DallOlio, September, 2010
-'''
-import unittest
-import antlr_grammar
-
-class Test(unittest.TestCase):
-
-
- def testOptionsSpec(self):
- text = """options {
- language = Python;
- }"""
- antlr_grammar.optionsSpec.parseString(text) #@UndefinedVariable
-
- def testTokensSpec(self):
- text = """tokens {
- PLUS = '+' ;
- MINUS = '-' ;
- MULT = '*' ;
- DIV = '/' ;
- }"""
- antlr_grammar.tokensSpec.parseString(text) #@UndefinedVariable
-
- def testBlock(self):
- text = """( PLUS | MINUS )"""
- antlr_grammar.block.parseString(text) #@UndefinedVariable
-
- def testRule(self):
- text = """expr : term ( ( PLUS | MINUS ) term )* ;"""
- antlr_grammar.rule.parseString(text) #@UndefinedVariable
-
- def testLexerRule(self):
- text = """fragment DIGIT : '0'..'9' ;"""
- antlr_grammar.rule.parseString(text) #@UndefinedVariable
-
- def testLexerRule2(self):
- text = """WHITESPACE : ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+ { $channel = HIDDEN; } ;"""
- #antlr_grammar.rule.parseString(text) #@UndefinedVariable
-
- def testGrammar(self):
- text = """grammar SimpleCalc;
-
-options {
- language = Python;
-}
-
-tokens {
- PLUS = '+' ;
- MINUS = '-' ;
- MULT = '*' ;
- DIV = '/' ;
-}
-
-/*------------------------------------------------------------------
- * PARSER RULES
- *------------------------------------------------------------------*/
-
-expr : term ( ( PLUS | MINUS ) term )* ;
-
-term : factor ( ( MULT | DIV ) factor )* ;
-
-factor : NUMBER ;
-
-
-/*------------------------------------------------------------------
- * LEXER RULES
- *------------------------------------------------------------------*/
-
-NUMBER : (DIGIT)+ ;
-
-/* WHITESPACE : ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+ { $channel = HIDDEN; } ; */
-
-fragment DIGIT : '0'..'9' ;"""
- antlrGrammarTree = antlr_grammar.grammarDef.parseString(text) #@UndefinedVariable
- pyparsingRules = antlr_grammar.antlrConverter(antlrGrammarTree)
- pyparsingRule = pyparsingRules["expr"]
- pyparsingTree = pyparsingRule.parseString("2 - 5 * 42 + 7 / 25")
- self.assertNotEqual(None, pyparsingTree)
-
-if __name__ == "__main__":
- #import sys;sys.argv = ['', 'Test.testOptionsSpec']
- unittest.main()
\ No newline at end of file
+++ /dev/null
-# apicheck.py\r
-# A simple source code scanner for finding patterns of the form\r
-# [ procname1 $arg1 $arg2 ]\r
-# and verifying the number of arguments\r
-#\r
-# Copyright (c) 2004-2016, Paul McGuire\r
-#\r
-\r
-from pyparsing import *\r
-\r
-# define punctuation and simple tokens for locating API calls\r
-LBRACK,RBRACK,LBRACE,RBRACE = map(Suppress,"[]{}")\r
-ident = Word(alphas,alphanums+"_") | QuotedString("{",endQuoteChar="}")\r
-arg = "$" + ident\r
-\r
-# define an API call with a specific number of arguments - using '-' \r
-# will ensure that after matching procname, an incorrect number of args will \r
-# raise a ParseSyntaxException, which will interrupt the scanString\r
-def apiProc(name, numargs):\r
- return LBRACK + Keyword(name)("procname") - arg*numargs + RBRACK\r
-\r
-# create an apiReference, listing all API functions to be scanned for, and\r
-# their respective number of arguments. Beginning the overall expression\r
-# with FollowedBy allows us to quickly rule out non-api calls while scanning,\r
-# since all of the api calls begin with a "["\r
-apiRef = FollowedBy("[") + MatchFirst([\r
- apiProc("procname1", 2),\r
- apiProc("procname2", 1),\r
- apiProc("procname3", 2),\r
- ])\r
-\r
-test = """[ procname1 $par1 $par2 ]\r
- other code here\r
- [ procname1 $par1 $par2 $par3 ]\r
- more code here\r
- [ procname1 $par1 ]\r
- [ procname3 ${arg with spaces} $par2 ]"""\r
-\r
-\r
-# now explicitly iterate through the scanner using next(), so that\r
-# we can trap ParseSyntaxException's that would be raised due to\r
-# an incorrect number of arguments. If an exception does occur,\r
-# then see how we reset the input text and scanner to advance to the\r
-# next line of source code\r
-api_scanner = apiRef.scanString(test)\r
-while 1:\r
- try:\r
- t,s,e = next(api_scanner)\r
- print("found %s on line %d" % (t.procname, lineno(s,test)))\r
- except ParseSyntaxException as pe:\r
- print("invalid arg count on line", pe.lineno)\r
- print(pe.lineno,':',pe.line)\r
- # reset api scanner to start after this exception location\r
- test = "\n"*(pe.lineno-1)+test[pe.loc+1:]\r
- api_scanner = apiRef.scanString(test)\r
- except StopIteration:\r
- break\r
- \r
+++ /dev/null
-""" Pyparsing parser for BibTeX files\r
-\r
-A standalone parser using pyparsing.\r
-\r
-pyparsing has a simple and expressive syntax so the grammar is easy to read and\r
-write.\r
-\r
-Submitted by Matthew Brett, 2010\r
-\r
-Simplified BSD license\r
-"""\r
-\r
-from pyparsing import (Regex, Suppress, ZeroOrMore, Group, Optional, Forward,\r
- SkipTo, CaselessLiteral, Dict)\r
-\r
-\r
-class Macro(object):\r
- """ Class to encapsulate undefined macro references """\r
- def __init__(self, name):\r
- self.name = name\r
- def __repr__(self):\r
- return 'Macro("%s")' % self.name\r
- def __eq__(self, other):\r
- return self.name == other.name\r
- def __ne__(self, other):\r
- return self.name != other.name\r
-\r
-\r
-# Character literals\r
-LCURLY,RCURLY,LPAREN,RPAREN,QUOTE,COMMA,AT,EQUALS,HASH = map(Suppress,'{}()",@=#')\r
-\r
-\r
-def bracketed(expr):\r
- """ Return matcher for `expr` between curly brackets or parentheses """\r
- return (LPAREN + expr + RPAREN) | (LCURLY + expr + RCURLY)\r
-\r
-\r
-# Define parser components for strings (the hard bit)\r
-chars_no_curly = Regex(r"[^{}]+")\r
-chars_no_curly.leaveWhitespace()\r
-chars_no_quotecurly = Regex(r'[^"{}]+')\r
-chars_no_quotecurly.leaveWhitespace()\r
-# Curly string is some stuff without curlies, or nested curly sequences\r
-curly_string = Forward()\r
-curly_item = Group(curly_string) | chars_no_curly\r
-curly_string << LCURLY + ZeroOrMore(curly_item) + RCURLY\r
-# quoted string is either just stuff within quotes, or stuff within quotes, within\r
-# which there is nested curliness\r
-quoted_item = Group(curly_string) | chars_no_quotecurly\r
-quoted_string = QUOTE + ZeroOrMore(quoted_item) + QUOTE\r
-\r
-# Numbers can just be numbers. Only integers though.\r
-number = Regex('[0-9]+')\r
-\r
-# Basis characters (by exclusion) for variable / field names. The following\r
-# list of characters is from the btparse documentation\r
-any_name = Regex('[^\\s"#%\'(),={}]+')\r
-\r
-# btparse says, and the test bibs show by experiment, that macro and field names\r
-# cannot start with a digit. In fact entry type names cannot start with a digit\r
-# either (see tests/bibs). Cite keys can start with a digit\r
-not_digname = Regex('[^\\d\\s"#%\'(),={}][^\\s"#%\'(),={}]*')\r
-\r
-# Comment comments out to end of line\r
-comment = (AT + CaselessLiteral('comment') +\r
- Regex(r"[\s{(].*").leaveWhitespace())\r
-\r
-# The name types with their digiteyness\r
-not_dig_lower = not_digname.copy().setParseAction(lambda t: t[0].lower())\r
-macro_def = not_dig_lower.copy()\r
-macro_ref = not_dig_lower.copy().setParseAction(lambda t : Macro(t[0].lower()))\r
-field_name = not_dig_lower.copy()\r
-# Spaces in names mean they cannot clash with field names\r
-entry_type = not_dig_lower('entry_type')\r
-cite_key = any_name('cite_key')\r
-# Number has to be before macro name\r
-string = (number | macro_ref | quoted_string | curly_string)\r
-\r
-# There can be hash concatenation\r
-field_value = string + ZeroOrMore(HASH + string)\r
-field_def = Group(field_name + EQUALS + field_value)\r
-entry_contents = Dict(ZeroOrMore(field_def + COMMA) + Optional(field_def))\r
-\r
-# Entry is surrounded either by parentheses or curlies\r
-entry = (AT + entry_type + bracketed(cite_key + COMMA + entry_contents))\r
-\r
-# Preamble is a macro-like thing with no name\r
-preamble = AT + CaselessLiteral('preamble') + bracketed(field_value)\r
-\r
-# Macros (aka strings)\r
-macro_contents = macro_def + EQUALS + field_value\r
-macro = AT + CaselessLiteral('string') + bracketed(macro_contents)\r
-\r
-# Implicit comments\r
-icomment = SkipTo('@').setParseAction(lambda t : t.insert(0, 'icomment'))\r
-\r
-# entries are last in the list (other than the fallback) because they have\r
-# arbitrary start patterns that would match comments, preamble or macro\r
-definitions = Group(comment |\r
- preamble |\r
- macro |\r
- entry |\r
- icomment)\r
-\r
-# Start symbol\r
-bibfile = ZeroOrMore(definitions)\r
-\r
-\r
-def parse_str(str):\r
- return bibfile.parseString(str)\r
-\r
-\r
-if __name__ == '__main__':\r
- # Run basic test\r
- txt = """\r
-Some introductory text\r
-(implicit comment)\r
-\r
-@ARTICLE{Authors2011,\r
- author = {First Author and Second Author and Third Author},\r
- title = {An article about {S}omething},\r
- journal = "Journal of Articles",\r
- year = {2011},\r
- volume = {16},\r
- pages = {1140--1141},\r
- number = {2}\r
-}\r
-"""\r
- print('\n\n'.join(defn.dump() for defn in parse_str(txt)))\r
+++ /dev/null
-#\r
-# builtin_parse_action_demo.py\r
-# Copyright, 2012 - Paul McGuire\r
-#\r
-# Simple example of using builtin functions as parse actions.\r
-#\r
-\r
-from pyparsing import *\r
-\r
-integer = Word(nums).setParseAction(lambda t : int(t[0]))\r
-\r
-# make an expression that will match a list of ints (which\r
-# will be converted to actual ints by the parse action attached\r
-# to integer)\r
-nums = OneOrMore(integer)\r
-\r
-\r
-test = "2 54 34 2 211 66 43 2 0"\r
-print(test)\r
-\r
-# try each of these builtins as parse actions\r
-for fn in (sum, max, min, len, sorted, reversed, list, tuple, set, any, all):\r
- fn_name = fn.__name__\r
- if fn is reversed:\r
- # reversed returns an iterator, we really want to show the list of items\r
- fn = lambda x : list(reversed(x))\r
-\r
- # show how each builtin works as a free-standing parse action\r
- print(fn_name, nums.setParseAction(fn).parseString(test))\r
+++ /dev/null
-# \r
-# cLibHeader.py\r
-#\r
-# A simple parser to extract API doc info from a C header file\r
-#\r
-# Copyright, 2012 - Paul McGuire\r
-#\r
-\r
-from pyparsing import Word, alphas, alphanums, Combine, oneOf, Optional, delimitedList, Group, Keyword\r
-\r
-testdata = """\r
- int func1(float *vec, int len, double arg1);\r
- int func2(float **arr, float *vec, int len, double arg1, double arg2);\r
- """\r
- \r
-ident = Word(alphas, alphanums + "_")\r
-vartype = Combine( oneOf("float double int char") + Optional(Word("*")), adjacent = False)\r
-arglist = delimitedList(Group(vartype("type") + ident("name")))\r
-\r
-functionCall = Keyword("int") + ident("name") + "(" + arglist("args") + ")" + ";"\r
-\r
-for fn,s,e in functionCall.scanString(testdata):\r
- print(fn.name)\r
- for a in fn.args:\r
- print(" - %(name)s (%(type)s)" % a)\r
+++ /dev/null
-# chemicalFormulas.py\r
-#\r
-# Copyright (c) 2003, Paul McGuire\r
-#\r
-\r
-from pyparsing import Word, Optional, OneOrMore, Group, ParseException, Regex\r
-from pyparsing import alphas\r
-\r
-atomicWeight = {\r
- "O" : 15.9994,\r
- "H" : 1.00794,\r
- "Na" : 22.9897,\r
- "Cl" : 35.4527,\r
- "C" : 12.0107\r
- }\r
- \r
-def test( bnf, strg, fn=None ):\r
- try:\r
- print(strg,"->", bnf.parseString( strg ), end=' ')\r
- except ParseException as pe:\r
- print(pe)\r
- else:\r
- if fn != None:\r
- print(fn( bnf.parseString( strg ) ))\r
- else:\r
- print()\r
-\r
-digits = "0123456789"\r
-\r
-# Version 1\r
-element = Regex("A[cglmrstu]|B[aehikr]?|C[adeflmorsu]?|D[bsy]|"\r
- "E[rsu]|F[emr]?|G[ade]|H[efgos]?|I[nr]?|Kr?|L[airu]|"\r
- "M[dgnot]|N[abdeiop]?|Os?|P[abdmortu]?|R[abefghnu]|"\r
- "S[bcegimnr]?|T[abcehilm]|U(u[bhopqst])?|V|W|Xe|Yb?|Z[nr]")\r
-\r
-element = Word( alphas.upper(), alphas.lower(), max=2)\r
-elementRef = Group( element + Optional( Word( digits ), default="1" ) )\r
-formula = OneOrMore( elementRef )\r
-\r
-fn = lambda elemList : sum(atomicWeight[elem]*int(qty) for elem,qty in elemList)\r
-test( formula, "H2O", fn )\r
-test( formula, "C6H5OH", fn )\r
-test( formula, "NaCl", fn )\r
-print()\r
-\r
-# Version 2 - access parsed items by field name\r
-elementRef = Group( element("symbol") + Optional( Word( digits ), default="1" )("qty") )\r
-formula = OneOrMore( elementRef )\r
-\r
-fn = lambda elemList : sum(atomicWeight[elem.symbol]*int(elem.qty) for elem in elemList)\r
-test( formula, "H2O", fn )\r
-test( formula, "C6H5OH", fn )\r
-test( formula, "NaCl", fn )\r
-print()\r
-\r
-# Version 3 - convert integers during parsing process\r
-integer = Word( digits ).setParseAction(lambda t:int(t[0]))\r
-elementRef = Group( element("symbol") + Optional( integer, default=1 )("qty") )\r
-formula = OneOrMore( elementRef )\r
-\r
-fn = lambda elemList : sum(atomicWeight[elem.symbol]*elem.qty for elem in elemList)\r
-test( formula, "H2O", fn )\r
-test( formula, "C6H5OH", fn )\r
-test( formula, "NaCl", fn )\r
- \r
-\r
-\r
+++ /dev/null
-# commasep.py\r
-#\r
-# comma-separated list example, to illustrate the advantages of using\r
-# the pyparsing commaSeparatedList as opposed to string.split(","):\r
-# - leading and trailing whitespace is implicitly trimmed from list elements\r
-# - list elements can be quoted strings, which can safely contain commas without breaking\r
-# into separate elements\r
-#\r
-# Copyright (c) 2004-2016, Paul McGuire\r
-#\r
-\r
-from pyparsing import commaSeparatedList\r
-\r
-testData = [\r
- "a,b,c,100.2,,3",\r
- "d, e, j k , m ",\r
- "'Hello, World', f, g , , 5.1,x",\r
- "John Doe, 123 Main St., Cleveland, Ohio",\r
- "Jane Doe, 456 St. James St., Los Angeles , California ",\r
- "",\r
- ]\r
-\r
-for line in testData:\r
- print(commaSeparatedList.parseString(line))\r
- print(line.split(","))\r
- print()\r
+++ /dev/null
-#\r
-# configparse.py\r
-#\r
-# an example of using the parsing module to be able to process a .INI configuration file\r
-#\r
-# Copyright (c) 2003, Paul McGuire\r
-#\r
-\r
-from pyparsing import \\r
- Literal, Word, ZeroOrMore, Group, Dict, Optional, \\r
- printables, ParseException, restOfLine, empty\r
-import pprint\r
-\r
-\r
-inibnf = None\r
-def inifile_BNF():\r
- global inibnf\r
- \r
- if not inibnf:\r
-\r
- # punctuation\r
- lbrack = Literal("[").suppress()\r
- rbrack = Literal("]").suppress()\r
- equals = Literal("=").suppress()\r
- semi = Literal(";")\r
- \r
- comment = semi + Optional( restOfLine )\r
- \r
- nonrbrack = "".join( [ c for c in printables if c != "]" ] ) + " \t"\r
- nonequals = "".join( [ c for c in printables if c != "=" ] ) + " \t"\r
- \r
- sectionDef = lbrack + Word( nonrbrack ) + rbrack\r
- keyDef = ~lbrack + Word( nonequals ) + equals + empty + restOfLine\r
- # strip any leading or trailing blanks from key\r
- def stripKey(tokens):\r
- tokens[0] = tokens[0].strip()\r
- keyDef.setParseAction(stripKey)\r
- \r
- # using Dict will allow retrieval of named data fields as attributes of the parsed results\r
- inibnf = Dict( ZeroOrMore( Group( sectionDef + Dict( ZeroOrMore( Group( keyDef ) ) ) ) ) )\r
- \r
- inibnf.ignore( comment )\r
- \r
- return inibnf\r
-\r
-\r
-pp = pprint.PrettyPrinter(2)\r
-\r
-def test( strng ):\r
- print(strng)\r
- try:\r
- iniFile = open(strng)\r
- iniData = "".join( iniFile.readlines() )\r
- bnf = inifile_BNF()\r
- tokens = bnf.parseString( iniData )\r
- pp.pprint( tokens.asList() )\r
-\r
- except ParseException as err:\r
- print(err.line)\r
- print(" "*(err.column-1) + "^")\r
- print(err)\r
- \r
- iniFile.close()\r
- print()\r
- return tokens\r
- \r
-if __name__ == "__main__":\r
- ini = test("setup.ini")\r
- print("ini['Startup']['modemid'] =", ini['Startup']['modemid']) \r
- print("ini.Startup =", ini.Startup)\r
- print("ini.Startup.modemid =", ini.Startup.modemid)\r
-\r
+++ /dev/null
-#\r
-# cpp_enum_parser.py\r
-#\r
-# Posted by Mark Tolonen on comp.lang.python in August, 2009,\r
-# Used with permission.\r
-# \r
-# Parser that scans through C or C++ code for enum definitions, and\r
-# generates corresponding Python constant definitions.\r
-#\r
-#\r
-\r
-from pyparsing import *\r
-# sample string with enums and other stuff\r
-sample = '''\r
- stuff before\r
- enum hello {\r
- Zero,\r
- One,\r
- Two,\r
- Three,\r
- Five=5,\r
- Six,\r
- Ten=10\r
- };\r
- in the middle\r
- enum blah\r
- {\r
- alpha,\r
- beta,\r
- gamma = 10 ,\r
- zeta = 50\r
- };\r
- at the end\r
- '''\r
-\r
-# syntax we don't want to see in the final parse tree\r
-LBRACE,RBRACE,EQ,COMMA = map(Suppress,"{}=,")\r
-_enum = Suppress('enum')\r
-identifier = Word(alphas,alphanums+'_')\r
-integer = Word(nums)\r
-enumValue = Group(identifier('name') + Optional(EQ + integer('value')))\r
-enumList = Group(enumValue + ZeroOrMore(COMMA + enumValue))\r
-enum = _enum + identifier('enum') + LBRACE + enumList('names') + RBRACE\r
-\r
-# find instances of enums ignoring other syntax\r
-for item,start,stop in enum.scanString(sample):\r
- id = 0\r
- for entry in item.names:\r
- if entry.value != '':\r
- id = int(entry.value)\r
- print('%s_%s = %d' % (item.enum.upper(),entry.name.upper(),id))\r
- id += 1\r
+++ /dev/null
-# parseActions.py\r
-#\r
-# A sample program a parser to match a date string of the form "YYYY/MM/DD",\r
-# and return it as a datetime, or raise an exception if not a valid date.\r
-#\r
-# Copyright 2012, Paul T. McGuire\r
-#\r
-from datetime import datetime\r
-from pyparsing import *\r
-\r
-# define an integer string, and a parse action to convert it\r
-# to an integer at parse time\r
-integer = Word(nums).setName("integer")\r
-def convertToInt(tokens):\r
- # no need to test for validity - we can't get here\r
- # unless tokens[0] contains all numeric digits\r
- return int(tokens[0])\r
-integer.setParseAction(convertToInt)\r
-# or can be written as one line as\r
-#integer = Word(nums).setParseAction(lambda t: int(t[0]))\r
-\r
-# define a pattern for a year/month/day date\r
-date_expr = integer('year') + '/' + integer('month') + '/' + integer('day')\r
-date_expr.ignore(pythonStyleComment)\r
-\r
-def convertToDatetime(s,loc,tokens):\r
- try:\r
- # note that the year, month, and day fields were already\r
- # converted to ints from strings by the parse action defined\r
- # on the integer expression above\r
- return datetime(tokens.year, tokens.month, tokens.day).date()\r
- except Exception as ve:\r
- errmsg = "'%s/%s/%s' is not a valid date, %s" % \\r
- (tokens.year, tokens.month, tokens.day, ve)\r
- raise ParseException(s, loc, errmsg)\r
-date_expr.setParseAction(convertToDatetime)\r
-\r
-\r
-date_expr.runTests("""\\r
- 2000/1/1 \r
-\r
- # invalid month\r
- 2000/13/1 \r
-\r
- # 1900 was not a leap year\r
- 1900/2/29 \r
-\r
- # but 2000 was\r
- 2000/2/29 \r
- """)\r
-\r
-\r
-# if dates conform to ISO8601, use definitions in pyparsing_common\r
-date_expr = pyparsing_common.iso8601_date.setParseAction(pyparsing_common.convertToDate())\r
-date_expr.ignore(pythonStyleComment)\r
-\r
-date_expr.runTests("""\\r
- 2000-01-01 \r
-\r
- # invalid month\r
- 2000-13-01 \r
-\r
- # 1900 was not a leap year\r
- 1900-02-29 \r
-\r
- # but 2000 was\r
- 2000-02-29 \r
- """)
\ No newline at end of file
+++ /dev/null
-# deltaTime.py\r
-#\r
-# Parser to convert a conversational time reference such as "in a minute" or \r
-# "noon tomorrow" and convert it to a Python datetime. The returned \r
-# ParseResults object contains the results name "timeOffset" containing\r
-# the timedelta, and "calculatedTime" containing the computed time relative \r
-# to datetime.now().\r
-#\r
-# Copyright 2010, by Paul McGuire\r
-#\r
-\r
-from datetime import datetime, timedelta\r
-from pyparsing import *\r
-import calendar\r
-\r
-__all__ = ["nlTimeExpression"]\r
-\r
-# string conversion parse actions\r
-def convertToTimedelta(toks):\r
- unit = toks.timeunit.lower().rstrip("s")\r
- td = {\r
- 'week' : timedelta(7),\r
- 'day' : timedelta(1),\r
- 'hour' : timedelta(0,0,0,0,0,1),\r
- 'minute' : timedelta(0,0,0,0,1),\r
- 'second' : timedelta(0,1),\r
- }[unit]\r
- if toks.qty:\r
- td *= int(toks.qty)\r
- if toks.dir:\r
- td *= toks.dir\r
- toks["timeOffset"] = td\r
- \r
-def convertToDay(toks):\r
- now = datetime.now()\r
- if "wkdayRef" in toks:\r
- todaynum = now.weekday()\r
- daynames = [n.lower() for n in calendar.day_name]\r
- nameddaynum = daynames.index(toks.wkdayRef.day.lower())\r
- if toks.wkdayRef.dir > 0:\r
- daydiff = (nameddaynum + 7 - todaynum) % 7\r
- else:\r
- daydiff = -((todaynum + 7 - nameddaynum) % 7)\r
- toks["absTime"] = datetime(now.year, now.month, now.day)+timedelta(daydiff)\r
- else:\r
- name = toks.name.lower()\r
- toks["absTime"] = {\r
- "now" : now,\r
- "today" : datetime(now.year, now.month, now.day),\r
- "yesterday" : datetime(now.year, now.month, now.day)+timedelta(-1),\r
- "tomorrow" : datetime(now.year, now.month, now.day)+timedelta(+1),\r
- }[name]\r
- \r
-def convertToAbsTime(toks):\r
- now = datetime.now()\r
- if "dayRef" in toks:\r
- day = toks.dayRef.absTime\r
- day = datetime(day.year, day.month, day.day)\r
- else:\r
- day = datetime(now.year, now.month, now.day)\r
- if "timeOfDay" in toks:\r
- if isinstance(toks.timeOfDay,str):\r
- timeOfDay = {\r
- "now" : timedelta(0, (now.hour*60+now.minute)*60+now.second, now.microsecond),\r
- "noon" : timedelta(0,0,0,0,0,12),\r
- "midnight" : timedelta(),\r
- }[toks.timeOfDay]\r
- else:\r
- hhmmss = toks.timeparts\r
- if hhmmss.miltime:\r
- hh,mm = hhmmss.miltime\r
- ss = 0\r
- else: \r
- hh,mm,ss = (hhmmss.HH % 12), hhmmss.MM, hhmmss.SS\r
- if not mm: mm = 0\r
- if not ss: ss = 0\r
- if toks.timeOfDay.ampm == 'pm':\r
- hh += 12\r
- timeOfDay = timedelta(0, (hh*60+mm)*60+ss, 0)\r
- else:\r
- timeOfDay = timedelta(0, (now.hour*60+now.minute)*60+now.second, now.microsecond)\r
- toks["absTime"] = day + timeOfDay\r
- \r
-def calculateTime(toks):\r
- if toks.absTime:\r
- absTime = toks.absTime\r
- else:\r
- absTime = datetime.now()\r
- if toks.timeOffset:\r
- absTime += toks.timeOffset\r
- toks["calculatedTime"] = absTime\r
- \r
-# grammar definitions\r
-CL = CaselessLiteral\r
-today, tomorrow, yesterday, noon, midnight, now = map( CL,\r
- "today tomorrow yesterday noon midnight now".split())\r
-plural = lambda s : Combine(CL(s) + Optional(CL("s")))\r
-week, day, hour, minute, second = map( plural,\r
- "week day hour minute second".split())\r
-am = CL("am")\r
-pm = CL("pm")\r
-COLON = Suppress(':')\r
- \r
-# are these actually operators?\r
-in_ = CL("in").setParseAction(replaceWith(1))\r
-from_ = CL("from").setParseAction(replaceWith(1))\r
-before = CL("before").setParseAction(replaceWith(-1))\r
-after = CL("after").setParseAction(replaceWith(1))\r
-ago = CL("ago").setParseAction(replaceWith(-1))\r
-next_ = CL("next").setParseAction(replaceWith(1))\r
-last_ = CL("last").setParseAction(replaceWith(-1))\r
-at_ = CL("at")\r
-on_ = CL("on")\r
-\r
-couple = (Optional(CL("a")) + CL("couple") + Optional(CL("of"))).setParseAction(replaceWith(2))\r
-a_qty = CL("a").setParseAction(replaceWith(1))\r
-integer = Word(nums).setParseAction(lambda t:int(t[0]))\r
-int4 = Group(Word(nums,exact=4).setParseAction(lambda t: [int(t[0][:2]),int(t[0][2:])] ))\r
-def fill_timefields(t):\r
- t[0]['HH'] = t[0][0]\r
- t[0]['MM'] = t[0][1]\r
- t[0]['ampm'] = ('am','pm')[t[0].HH >= 12]\r
-int4.addParseAction(fill_timefields)\r
-qty = integer | couple | a_qty\r
-dayName = oneOf( list(calendar.day_name) )\r
- \r
-dayOffset = (qty("qty") + (week | day)("timeunit"))\r
-dayFwdBack = (from_ + now.suppress() | ago)("dir")\r
-weekdayRef = (Optional(next_ | last_,1)("dir") + dayName("day"))\r
-dayRef = Optional( (dayOffset + (before | after | from_)("dir") ).setParseAction(convertToTimedelta) ) + \\r
- ((yesterday | today | tomorrow)("name")|\r
- weekdayRef("wkdayRef")).setParseAction(convertToDay)\r
-todayRef = (dayOffset + dayFwdBack).setParseAction(convertToTimedelta) | \\r
- (in_("dir") + qty("qty") + day("timeunit")).setParseAction(convertToTimedelta)\r
- \r
-dayTimeSpec = dayRef | todayRef\r
-dayTimeSpec.setParseAction(calculateTime)\r
- \r
-relativeTimeUnit = (week | day | hour | minute | second)\r
- \r
-timespec = Group(ungroup(int4) |\r
- integer("HH") + \r
- ungroup(Optional(COLON + integer,[0]))("MM") + \r
- ungroup(Optional(COLON + integer,[0]))("SS") + \r
- (am | pm)("ampm")\r
- )\r
-\r
-absTimeSpec = ((noon | midnight | now | timespec("timeparts"))("timeOfDay") + \r
- Optional(on_) + Optional(dayRef)("dayRef") |\r
- dayRef("dayRef") + at_ + \r
- (noon | midnight | now | timespec("timeparts"))("timeOfDay"))\r
-absTimeSpec.setParseAction(convertToAbsTime,calculateTime)\r
- \r
-relTimeSpec = qty("qty") + relativeTimeUnit("timeunit") + \\r
- (from_ | before | after)("dir") + \\r
- Optional(at_) + \\r
- absTimeSpec("absTime") | \\r
- qty("qty") + relativeTimeUnit("timeunit") + ago("dir") | \\r
- in_ + qty("qty") + relativeTimeUnit("timeunit") \r
-relTimeSpec.setParseAction(convertToTimedelta,calculateTime)\r
- \r
-nlTimeExpression = (absTimeSpec + Optional(dayTimeSpec) | \r
- dayTimeSpec + Optional(Optional(at_) + absTimeSpec) | \r
- relTimeSpec + Optional(absTimeSpec))\r
- \r
-if __name__ == "__main__":\r
- # test grammar\r
- tests = """\\r
- today\r
- tomorrow\r
- yesterday\r
- in a couple of days\r
- a couple of days from now\r
- a couple of days from today\r
- in a day\r
- 3 days ago\r
- 3 days from now\r
- a day ago\r
- in 2 weeks\r
- in 3 days at 5pm\r
- now\r
- 10 minutes ago\r
- 10 minutes from now\r
- in 10 minutes\r
- in a minute\r
- in a couple of minutes\r
- 20 seconds ago\r
- in 30 seconds\r
- 20 seconds before noon\r
- 20 seconds before noon tomorrow\r
- noon\r
- midnight\r
- noon tomorrow\r
- 6am tomorrow\r
- 0800 yesterday\r
- 12:15 AM today\r
- 3pm 2 days from today\r
- a week from today\r
- a week from now\r
- 3 weeks ago\r
- noon next Sunday\r
- noon Sunday\r
- noon last Sunday\r
- 2pm next Sunday\r
- next Sunday at 2pm"""\r
-\r
- print("(relative to %s)" % datetime.now())\r
- nlTimeExpression.runTests(tests)\r
+++ /dev/null
-"""\r
-This module can parse a Delphi Form (dfm) file.\r
-\r
-The main is used in experimenting (to find which files fail\r
-to parse, and where), but isn't useful for anything else.\r
-"""\r
-__version__ = "1.0"\r
-__author__ = "Daniel 'Dang' Griffith <pythondev - dang at lazytwinacres . net>"\r
-\r
-\r
-from pyparsing import Literal, CaselessLiteral, Word, delimitedList \\r
- , Optional, Combine, Group, alphas, nums, alphanums, Forward \\r
- , oneOf, sglQuotedString, OneOrMore, ZeroOrMore, CharsNotIn\r
-\r
-\r
-# This converts DFM character constants into Python string (unicode) values.\r
-def to_chr(x):\r
- """chr(x) if 0 < x < 128 ; unicode(x) if x > 127."""\r
- return 0 < x < 128 and chr(x) or eval("u'\\u%d'" % x )\r
-\r
-#################\r
-# BEGIN GRAMMAR\r
-#################\r
-\r
-COLON = Literal(":").suppress()\r
-CONCAT = Literal("+").suppress()\r
-EQUALS = Literal("=").suppress()\r
-LANGLE = Literal("<").suppress()\r
-LBRACE = Literal("[").suppress()\r
-LPAREN = Literal("(").suppress()\r
-PERIOD = Literal(".").suppress()\r
-RANGLE = Literal(">").suppress()\r
-RBRACE = Literal("]").suppress()\r
-RPAREN = Literal(")").suppress()\r
-\r
-CATEGORIES = CaselessLiteral("categories").suppress()\r
-END = CaselessLiteral("end").suppress()\r
-FONT = CaselessLiteral("font").suppress()\r
-HINT = CaselessLiteral("hint").suppress()\r
-ITEM = CaselessLiteral("item").suppress()\r
-OBJECT = CaselessLiteral("object").suppress()\r
-\r
-attribute_value_pair = Forward() # this is recursed in item_list_entry\r
-\r
-simple_identifier = Word(alphas, alphanums + "_")\r
-identifier = Combine( simple_identifier + ZeroOrMore( Literal(".") + simple_identifier ))\r
-object_name = identifier\r
-object_type = identifier\r
-\r
-# Integer and floating point values are converted to Python longs and floats, respectively.\r
-int_value = Combine(Optional("-") + Word(nums)).setParseAction(lambda s,l,t: [ int(t[0]) ] )\r
-float_value = Combine(Optional("-") + Optional(Word(nums)) + "." + Word(nums)).setParseAction(lambda s,l,t: [ float(t[0]) ] )\r
-number_value = float_value | int_value\r
-\r
-# Base16 constants are left in string form, including the surrounding braces.\r
-base16_value = Combine(Literal("{") + OneOrMore(Word("0123456789ABCDEFabcdef")) + Literal("}"), adjacent=False)\r
-\r
-# This is the first part of a hack to convert the various delphi partial sglQuotedStrings\r
-# into a single sglQuotedString equivalent. The gist of it is to combine\r
-# all sglQuotedStrings (with their surrounding quotes removed (suppressed))\r
-# with sequences of #xyz character constants, with "strings" concatenated\r
-# with a '+' sign.\r
-unquoted_sglQuotedString = Combine( Literal("'").suppress() + ZeroOrMore( CharsNotIn("'\n\r") ) + Literal("'").suppress() )\r
-\r
-# The parse action on this production converts repetitions of constants into a single string.\r
-pound_char = Combine(\r
- OneOrMore((Literal("#").suppress()+Word(nums)\r
- ).setParseAction( lambda s, l, t: to_chr(int(t[0]) ))))\r
-\r
-# This is the second part of the hack. It combines the various "unquoted"\r
-# partial strings into a single one. Then, the parse action puts\r
-# a single matched pair of quotes around it.\r
-delphi_string = Combine(\r
- OneOrMore(CONCAT | pound_char | unquoted_sglQuotedString)\r
- , adjacent=False\r
- ).setParseAction(lambda s, l, t: "'%s'" % t[0])\r
-\r
-string_value = delphi_string | base16_value\r
-\r
-list_value = LBRACE + Optional(Group(delimitedList(identifier | number_value | string_value))) + RBRACE\r
-paren_list_value = LPAREN + ZeroOrMore(identifier | number_value | string_value) + RPAREN\r
-\r
-item_list_entry = ITEM + ZeroOrMore(attribute_value_pair) + END\r
-item_list = LANGLE + ZeroOrMore(item_list_entry) + RANGLE\r
-\r
-generic_value = identifier\r
-value = item_list | number_value | string_value | list_value | paren_list_value | generic_value\r
-\r
-category_attribute = CATEGORIES + PERIOD + oneOf("strings itemsvisibles visibles", True)\r
-event_attribute = oneOf("onactivate onclosequery onclose oncreate ondeactivate onhide onshow", True)\r
-font_attribute = FONT + PERIOD + oneOf("charset color height name style", True)\r
-hint_attribute = HINT\r
-layout_attribute = oneOf("left top width height", True)\r
-generic_attribute = identifier\r
-attribute = (category_attribute | event_attribute | font_attribute | hint_attribute | layout_attribute | generic_attribute)\r
-\r
-category_attribute_value_pair = category_attribute + EQUALS + paren_list_value\r
-event_attribute_value_pair = event_attribute + EQUALS + value\r
-font_attribute_value_pair = font_attribute + EQUALS + value\r
-hint_attribute_value_pair = hint_attribute + EQUALS + value\r
-layout_attribute_value_pair = layout_attribute + EQUALS + value\r
-generic_attribute_value_pair = attribute + EQUALS + value\r
-attribute_value_pair << Group(\r
- category_attribute_value_pair \r
- | event_attribute_value_pair \r
- | font_attribute_value_pair \r
- | hint_attribute_value_pair \r
- | layout_attribute_value_pair \r
- | generic_attribute_value_pair\r
- )\r
-\r
-object_declaration = Group((OBJECT + object_name + COLON + object_type))\r
-object_attributes = Group(ZeroOrMore(attribute_value_pair))\r
-\r
-nested_object = Forward()\r
-object_definition = object_declaration + object_attributes + ZeroOrMore(nested_object) + END\r
-nested_object << Group(object_definition)\r
-\r
-#################\r
-# END GRAMMAR\r
-#################\r
-\r
-def printer(s, loc, tok):\r
- print(tok, end=' ')\r
- return tok\r
-\r
-def get_filename_list(tf):\r
- import sys, glob\r
- if tf == None:\r
- if len(sys.argv) > 1:\r
- tf = sys.argv[1:]\r
- else:\r
- tf = glob.glob("*.dfm")\r
- elif type(tf) == str:\r
- tf = [tf]\r
- testfiles = []\r
- for arg in tf:\r
- testfiles.extend(glob.glob(arg))\r
- return testfiles\r
-\r
-def main(testfiles=None, action=printer):\r
- """testfiles can be None, in which case the command line arguments are used as filenames.\r
- testfiles can be a string, in which case that file is parsed.\r
- testfiles can be a list.\r
- In all cases, the filenames will be globbed.\r
- If more than one file is parsed successfully, a dictionary of ParseResults is returned.\r
- Otherwise, a simple ParseResults is returned.\r
- """\r
- testfiles = get_filename_list(testfiles)\r
- print(testfiles)\r
-\r
- if action:\r
- for i in (simple_identifier, value, item_list):\r
- i.setParseAction(action)\r
-\r
- success = 0\r
- failures = []\r
-\r
- retval = {}\r
- for f in testfiles:\r
- try:\r
- retval[f] = object_definition.parseFile(f)\r
- success += 1\r
- except:\r
- failures.append(f)\r
-\r
- if failures:\r
- print('\nfailed while processing %s' % ', '.join(failures))\r
- print('\nsucceeded on %d of %d files' %(success, len(testfiles)))\r
-\r
- if len(retval) == 1 and len(testfiles) == 1:\r
- # if only one file is parsed, return the parseResults directly\r
- return retval[list(retval.keys())[0]]\r
-\r
- # else, return a dictionary of parseResults\r
- return retval\r
-\r
-if __name__ == "__main__":\r
- main()
\ No newline at end of file
+++ /dev/null
-# \r
-# dhcpd_leases_parser.py\r
-#\r
-# Copyright 2008, Paul McGuire\r
-#\r
-# Sample parser to parse a dhcpd.leases file to extract leases \r
-# and lease attributes\r
-#\r
-# format ref: http://www.linuxmanpages.com/man5/dhcpd.leases.5.php\r
-#\r
-\r
-sample = r"""\\r
-# All times in this file are in UTC (GMT), not your local timezone. This is\r
-# not a bug, so please don't ask about it. There is no portable way to\r
-# store leases in the local timezone, so please don't request this as a\r
-# feature. If this is inconvenient or confusing to you, we sincerely\r
-# apologize. Seriously, though - don't ask.\r
-# The format of this file is documented in the dhcpd.leases(5) manual page.\r
-# This lease file was written by isc-dhcp-V3.0.4\r
-\r
-lease 192.168.0.250 {\r
- starts 3 2008/01/23 17:16:41;\r
- ends 6 2008/02/02 17:16:41;\r
- tstp 6 2008/02/02 17:16:41;\r
- binding state free;\r
- hardware ethernet 00:17:f2:9b:d8:19;\r
- uid "\001\000\027\362\233\330\031";\r
-}\r
-lease 192.168.0.198 {\r
- starts 1 2008/02/04 13:46:55;\r
- ends never;\r
- tstp 1 2008/02/04 17:04:14;\r
- binding state free;\r
- hardware ethernet 00:13:72:d3:3b:98;\r
- uid "\001\000\023r\323;\230";\r
-}\r
-lease 192.168.0.239 {\r
- starts 3 2008/02/06 12:12:03;\r
- ends 4 2008/02/07 12:12:03;\r
- tstp 4 2008/02/07 12:12:03;\r
- binding state free;\r
- hardware ethernet 00:1d:09:65:93:26;\r
-}\r
-"""\r
-\r
-from pyparsing import *\r
-import datetime,time\r
-\r
-LBRACE,RBRACE,SEMI,QUOTE = map(Suppress,'{};"')\r
-ipAddress = Combine(Word(nums) + ('.' + Word(nums))*3)\r
-hexint = Word(hexnums,exact=2)\r
-macAddress = Combine(hexint + (':'+hexint)*5)\r
-hdwType = Word(alphanums)\r
-\r
-yyyymmdd = Combine((Word(nums,exact=4)|Word(nums,exact=2))+\r
- ('/'+Word(nums,exact=2))*2)\r
-hhmmss = Combine(Word(nums,exact=2)+(':'+Word(nums,exact=2))*2)\r
-dateRef = oneOf(list("0123456"))("weekday") + yyyymmdd("date") + \\r
- hhmmss("time")\r
-\r
-def utcToLocalTime(tokens):\r
- utctime = datetime.datetime.strptime("%(date)s %(time)s" % tokens,\r
- "%Y/%m/%d %H:%M:%S")\r
- localtime = utctime-datetime.timedelta(0,time.timezone,0)\r
- tokens["utcdate"],tokens["utctime"] = tokens["date"],tokens["time"]\r
- tokens["localdate"],tokens["localtime"] = str(localtime).split()\r
- del tokens["date"]\r
- del tokens["time"]\r
-dateRef.setParseAction(utcToLocalTime)\r
-\r
-startsStmt = "starts" + dateRef + SEMI\r
-endsStmt = "ends" + (dateRef | "never") + SEMI\r
-tstpStmt = "tstp" + dateRef + SEMI\r
-tsfpStmt = "tsfp" + dateRef + SEMI\r
-hdwStmt = "hardware" + hdwType("type") + macAddress("mac") + SEMI\r
-uidStmt = "uid" + QuotedString('"')("uid") + SEMI\r
-bindingStmt = "binding" + Word(alphanums) + Word(alphanums) + SEMI\r
-\r
-leaseStatement = startsStmt | endsStmt | tstpStmt | tsfpStmt | hdwStmt | \\r
- uidStmt | bindingStmt\r
-leaseDef = "lease" + ipAddress("ipaddress") + LBRACE + \\r
- Dict(ZeroOrMore(Group(leaseStatement))) + RBRACE\r
-\r
-for lease in leaseDef.searchString(sample):\r
- print(lease.dump())\r
- print(lease.ipaddress,'->',lease.hardware.mac)\r
- print()\r
+++ /dev/null
-#\r
-# dictExample.py\r
-#\r
-# Illustration of using pyparsing's Dict class to process tabular data\r
-#\r
-# Copyright (c) 2003, Paul McGuire\r
-#\r
-from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList\r
-import pprint\r
-\r
-testData = """\r
-+-------+------+------+------+------+------+------+------+------+\r
-| | A1 | B1 | C1 | D1 | A2 | B2 | C2 | D2 |\r
-+=======+======+======+======+======+======+======+======+======+\r
-| min | 7 | 43 | 7 | 15 | 82 | 98 | 1 | 37 |\r
-| max | 11 | 52 | 10 | 17 | 85 | 112 | 4 | 39 |\r
-| ave | 9 | 47 | 8 | 16 | 84 | 106 | 3 | 38 |\r
-| sdev | 1 | 3 | 1 | 1 | 1 | 3 | 1 | 1 |\r
-+-------+------+------+------+------+------+------+------+------+\r
-"""\r
-\r
-# define grammar for datatable\r
-heading = (Literal(\r
-"+-------+------+------+------+------+------+------+------+------+") + \r
-"| | A1 | B1 | C1 | D1 | A2 | B2 | C2 | D2 |" + \r
-"+=======+======+======+======+======+======+======+======+======+").suppress()\r
-vert = Literal("|").suppress()\r
-number = Word(nums)\r
-rowData = Group( vert + Word(alphas) + vert + delimitedList(number,"|") + vert )\r
-trailing = Literal(\r
-"+-------+------+------+------+------+------+------+------+------+").suppress()\r
-\r
-datatable = heading + Dict( ZeroOrMore(rowData) ) + trailing\r
-\r
-# now parse data and print results\r
-data = datatable.parseString(testData)\r
-print(data)\r
-pprint.pprint(data.asList())\r
-print("data keys=", list(data.keys()))\r
-print("data['min']=", data['min'])\r
-print("data.max", data.max)\r
+++ /dev/null
-#\r
-# dictExample2.py\r
-#\r
-# Illustration of using pyparsing's Dict class to process tabular data\r
-# Enhanced Dict example, courtesy of Mike Kelly\r
-#\r
-# Copyright (c) 2004, Paul McGuire\r
-#\r
-from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList, pyparsing_common\r
-import pprint\r
-\r
-testData = """\r
-+-------+------+------+------+------+------+------+------+------+\r
-| | A1 | B1 | C1 | D1 | A2 | B2 | C2 | D2 |\r
-+=======+======+======+======+======+======+======+======+======+\r
-| min | 7 | 43 | 7 | 15 | 82 | 98 | 1 | 37 |\r
-| max | 11 | 52 | 10 | 17 | 85 | 112 | 4 | 39 |\r
-| ave | 9 | 47 | 8 | 16 | 84 | 106 | 3 | 38 |\r
-| sdev | 1 | 3 | 1 | 1 | 1 | 3 | 1 | 1 |\r
-+-------+------+------+------+------+------+------+------+------+\r
-"""\r
-\r
-# define grammar for datatable\r
-underline = Word("-=")\r
-number = pyparsing_common.integer\r
-\r
-vert = Literal("|").suppress()\r
-\r
-rowDelim = ("+" + ZeroOrMore( underline + "+" ) ).suppress()\r
-columnHeader = Group(vert + vert + delimitedList(Word(alphas + nums), "|") + vert)\r
-\r
-heading = rowDelim + columnHeader("columns") + rowDelim\r
-rowData = Group( vert + Word(alphas) + vert + delimitedList(number,"|") + vert )\r
-trailing = rowDelim\r
-\r
-datatable = heading + Dict( ZeroOrMore(rowData) ) + trailing\r
-\r
-# now parse data and print results\r
-data = datatable.parseString(testData)\r
-print(data.dump())\r
-print("data keys=", list(data.keys()))\r
-print("data['min']=", data['min'])\r
-print("sum(data['min']) =", sum(data['min']))\r
-print("data.max =", data.max)\r
-print("sum(data.max) =", sum(data.max))\r
-\r
-# now print transpose of data table, using column labels read from table header and \r
-# values from data lists\r
-print() \r
-print(" " * 5, end=' ')\r
-for i in range(1,len(data)):\r
- print("|%5s" % data[i][0], end=' ')\r
-print()\r
-print(("-" * 6) + ("+------" * (len(data)-1)))\r
-for i in range(len(data.columns)):\r
- print("%5s" % data.columns[i], end=' ')\r
- for j in range(len(data) - 1):\r
- print('|%5s' % data[j + 1][i + 1], end=' ')\r
- print() \r
+++ /dev/null
-# This module tries to implement ISO 14977 standard with pyparsing.\r
-# pyparsing version 1.1 or greater is required.\r
-\r
-# ISO 14977 standardize The Extended Backus-Naur Form(EBNF) syntax.\r
-# You can read a final draft version here:\r
-# http://www.cl.cam.ac.uk/~mgk25/iso-ebnf.html\r
-#\r
-# Submitted 2004 by Seo Sanghyeon\r
-#\r
-\r
-from pyparsing import *\r
-\r
-\r
-all_names = '''\r
-integer\r
-meta_identifier\r
-terminal_string\r
-optional_sequence\r
-repeated_sequence\r
-grouped_sequence\r
-syntactic_primary\r
-syntactic_factor\r
-syntactic_term\r
-single_definition\r
-definitions_list\r
-syntax_rule\r
-syntax\r
-'''.split()\r
-\r
-\r
-integer = Word(nums)\r
-meta_identifier = Word(alphas, alphanums + '_')\r
-terminal_string = Suppress("'") + CharsNotIn("'") + Suppress("'") ^ \\r
- Suppress('"') + CharsNotIn('"') + Suppress('"')\r
-definitions_list = Forward()\r
-optional_sequence = Suppress('[') + definitions_list + Suppress(']')\r
-repeated_sequence = Suppress('{') + definitions_list + Suppress('}')\r
-grouped_sequence = Suppress('(') + definitions_list + Suppress(')')\r
-syntactic_primary = optional_sequence ^ repeated_sequence ^ \\r
- grouped_sequence ^ meta_identifier ^ terminal_string\r
-syntactic_factor = Optional(integer + Suppress('*')) + syntactic_primary\r
-syntactic_term = syntactic_factor + Optional(Suppress('-') + syntactic_factor)\r
-single_definition = delimitedList(syntactic_term, ',')\r
-definitions_list << delimitedList(single_definition, '|')\r
-syntax_rule = meta_identifier + Suppress('=') + definitions_list + \\r
- Suppress(';')\r
-\r
-ebnfComment = ( "(*" +\r
- ZeroOrMore( CharsNotIn("*") | ( "*" + ~Literal(")") ) ) +\r
- "*)" ).streamline().setName("ebnfComment")\r
-\r
-syntax = OneOrMore(syntax_rule)\r
-syntax.ignore(ebnfComment)\r
-\r
-\r
-def do_integer(str, loc, toks):\r
- return int(toks[0])\r
- \r
-def do_meta_identifier(str, loc, toks):\r
- if toks[0] in symbol_table:\r
- return symbol_table[toks[0]]\r
- else:\r
- forward_count.value += 1\r
- symbol_table[toks[0]] = Forward()\r
- return symbol_table[toks[0]]\r
-\r
-def do_terminal_string(str, loc, toks):\r
- return Literal(toks[0])\r
-\r
-def do_optional_sequence(str, loc, toks):\r
- return Optional(toks[0])\r
-\r
-def do_repeated_sequence(str, loc, toks):\r
- return ZeroOrMore(toks[0])\r
-\r
-def do_grouped_sequence(str, loc, toks):\r
- return Group(toks[0])\r
-\r
-def do_syntactic_primary(str, loc, toks):\r
- return toks[0]\r
-\r
-def do_syntactic_factor(str, loc, toks):\r
- if len(toks) == 2:\r
- # integer * syntactic_primary\r
- return And([toks[1]] * toks[0])\r
- else:\r
- # syntactic_primary\r
- return [ toks[0] ]\r
-\r
-def do_syntactic_term(str, loc, toks):\r
- if len(toks) == 2:\r
- # syntactic_factor - syntactic_factor\r
- return NotAny(toks[1]) + toks[0]\r
- else:\r
- # syntactic_factor\r
- return [ toks[0] ]\r
-\r
-def do_single_definition(str, loc, toks):\r
- toks = toks.asList()\r
- if len(toks) > 1:\r
- # syntactic_term , syntactic_term , ...\r
- return And(toks)\r
- else:\r
- # syntactic_term\r
- return [ toks[0] ]\r
-\r
-def do_definitions_list(str, loc, toks):\r
- toks = toks.asList()\r
- if len(toks) > 1:\r
- # single_definition | single_definition | ...\r
- return Or(toks)\r
- else:\r
- # single_definition\r
- return [ toks[0] ]\r
-\r
-def do_syntax_rule(str, loc, toks):\r
- # meta_identifier = definitions_list ;\r
- assert toks[0].expr is None, "Duplicate definition"\r
- forward_count.value -= 1\r
- toks[0] << toks[1]\r
- return [ toks[0] ]\r
-\r
-def do_syntax(str, loc, toks):\r
- # syntax_rule syntax_rule ...\r
- return symbol_table\r
-\r
-\r
-\r
-symbol_table = {}\r
-class forward_count:\r
- pass\r
-forward_count.value = 0\r
-for name in all_names:\r
- expr = vars()[name]\r
- action = vars()['do_' + name]\r
- expr.setName(name)\r
- expr.setParseAction(action)\r
- #~ expr.setDebug()\r
-\r
-\r
-def parse(ebnf, given_table={}):\r
- symbol_table.clear()\r
- symbol_table.update(given_table)\r
- forward_count.value = 0\r
- table = syntax.parseString(ebnf)[0]\r
- assert forward_count.value == 0, "Missing definition"\r
- for name in table:\r
- expr = table[name]\r
- expr.setName(name)\r
- #~ expr.setDebug()\r
- return table\r
+++ /dev/null
-#\r
-# ebnftest.py \r
-#\r
-# Test script for ebnf.py\r
-#\r
-# Submitted 2004 by Seo Sanghyeon\r
-#\r
-print('Importing pyparsing...')\r
-from pyparsing import *\r
-\r
-print('Constructing EBNF parser with pyparsing...')\r
-import ebnf\r
-\r
-\r
-grammar = '''\r
-syntax = (syntax_rule), {(syntax_rule)};\r
-syntax_rule = meta_identifier, '=', definitions_list, ';';\r
-definitions_list = single_definition, {'|', single_definition};\r
-single_definition = syntactic_term, {',', syntactic_term};\r
-syntactic_term = syntactic_factor,['-', syntactic_factor];\r
-syntactic_factor = [integer, '*'], syntactic_primary;\r
-syntactic_primary = optional_sequence | repeated_sequence |\r
- grouped_sequence | meta_identifier | terminal_string;\r
-optional_sequence = '[', definitions_list, ']';\r
-repeated_sequence = '{', definitions_list, '}';\r
-grouped_sequence = '(', definitions_list, ')';\r
-(* \r
-terminal_string = "'", character - "'", {character - "'"}, "'" |\r
- '"', character - '"', {character - '"'}, '"';\r
- meta_identifier = letter, {letter | digit};\r
-integer = digit, {digit}; \r
-*)\r
-'''\r
-\r
-table = {}\r
-#~ table['character'] = Word(printables, exact=1)\r
-#~ table['letter'] = Word(alphas + '_', exact=1)\r
-#~ table['digit'] = Word(nums, exact=1)\r
-table['terminal_string'] = sglQuotedString\r
-table['meta_identifier'] = Word(alphas+"_", alphas+"_"+nums)\r
-table['integer'] = Word(nums)\r
-\r
-print('Parsing EBNF grammar with EBNF parser...')\r
-parsers = ebnf.parse(grammar, table)\r
-ebnf_parser = parsers['syntax']\r
-\r
-commentcharcount = 0\r
-commentlocs = set()\r
-def tallyCommentChars(s,l,t):\r
- global commentcharcount,commentlocs\r
- # only count this comment if we haven't seen it before\r
- if l not in commentlocs:\r
- charCount = ( len(t[0]) - len(list(filter(str.isspace, t[0]))) )\r
- commentcharcount += charCount\r
- commentlocs.add(l)\r
- return l,t\r
-\r
-#ordinarily, these lines wouldn't be necessary, but we are doing extra stuff with the comment expression\r
-ebnf.ebnfComment.setParseAction( tallyCommentChars )\r
-ebnf_parser.ignore( ebnf.ebnfComment )\r
-\r
-print('Parsing EBNF grammar with generated EBNF parser...\n')\r
-parsed_chars = ebnf_parser.parseString(grammar)\r
-parsed_char_len = len(parsed_chars)\r
-\r
-print("],\n".join(str( parsed_chars.asList() ).split("],")))\r
-\r
-#~ grammar_length = len(grammar) - len(filter(str.isspace, grammar))-commentcharcount\r
-\r
-#~ assert parsed_char_len == grammar_length\r
-\r
-print('Ok!')\r
+++ /dev/null
-# eval_arith.py\r
-#\r
-# Copyright 2009, 2011 Paul McGuire\r
-#\r
-# Expansion on the pyparsing example simpleArith.py, to include evaluation\r
-# of the parsed tokens.\r
-#\r
-# Added support for exponentiation, using right-to-left evaluation of\r
-# operands\r
-#\r
-from pyparsing import Word, nums, alphas, Combine, oneOf, \\r
- opAssoc, infixNotation, Literal\r
-\r
-class EvalConstant(object):\r
- "Class to evaluate a parsed constant or variable"\r
- vars_ = {}\r
- def __init__(self, tokens):\r
- self.value = tokens[0]\r
- def eval(self):\r
- if self.value in EvalConstant.vars_:\r
- return EvalConstant.vars_[self.value]\r
- else:\r
- return float(self.value)\r
-\r
-class EvalSignOp(object):\r
- "Class to evaluate expressions with a leading + or - sign"\r
- def __init__(self, tokens):\r
- self.sign, self.value = tokens[0]\r
- def eval(self):\r
- mult = {'+':1, '-':-1}[self.sign]\r
- return mult * self.value.eval()\r
-\r
-def operatorOperands(tokenlist):\r
- "generator to extract operators and operands in pairs"\r
- it = iter(tokenlist)\r
- while 1:\r
- try:\r
- yield (next(it), next(it))\r
- except StopIteration:\r
- break\r
- \r
-class EvalPowerOp(object):\r
- "Class to evaluate multiplication and division expressions"\r
- def __init__(self, tokens):\r
- self.value = tokens[0]\r
- def eval(self):\r
- res = self.value[-1].eval()\r
- for val in self.value[-3::-2]:\r
- res = val.eval()**res\r
- return res\r
- \r
-class EvalMultOp(object):\r
- "Class to evaluate multiplication and division expressions"\r
- def __init__(self, tokens):\r
- self.value = tokens[0]\r
- def eval(self):\r
- prod = self.value[0].eval()\r
- for op,val in operatorOperands(self.value[1:]):\r
- if op == '*':\r
- prod *= val.eval()\r
- if op == '/':\r
- prod /= val.eval()\r
- return prod\r
- \r
-class EvalAddOp(object):\r
- "Class to evaluate addition and subtraction expressions"\r
- def __init__(self, tokens):\r
- self.value = tokens[0]\r
- def eval(self):\r
- sum = self.value[0].eval()\r
- for op,val in operatorOperands(self.value[1:]):\r
- if op == '+':\r
- sum += val.eval()\r
- if op == '-':\r
- sum -= val.eval()\r
- return sum\r
-\r
-class EvalComparisonOp(object):\r
- "Class to evaluate comparison expressions"\r
- opMap = {\r
- "<" : lambda a,b : a < b,\r
- "<=" : lambda a,b : a <= b,\r
- ">" : lambda a,b : a > b,\r
- ">=" : lambda a,b : a >= b,\r
- "!=" : lambda a,b : a != b,\r
- "=" : lambda a,b : a == b,\r
- "LT" : lambda a,b : a < b,\r
- "LE" : lambda a,b : a <= b,\r
- "GT" : lambda a,b : a > b,\r
- "GE" : lambda a,b : a >= b,\r
- "NE" : lambda a,b : a != b,\r
- "EQ" : lambda a,b : a == b,\r
- "<>" : lambda a,b : a != b,\r
- }\r
- def __init__(self, tokens):\r
- self.value = tokens[0]\r
- def eval(self):\r
- val1 = self.value[0].eval()\r
- for op,val in operatorOperands(self.value[1:]):\r
- fn = EvalComparisonOp.opMap[op]\r
- val2 = val.eval()\r
- if not fn(val1,val2):\r
- break\r
- val1 = val2\r
- else:\r
- return True\r
- return False\r
- \r
-\r
-# define the parser\r
-integer = Word(nums)\r
-real = Combine(Word(nums) + "." + Word(nums))\r
-variable = Word(alphas,exact=1)\r
-operand = real | integer | variable\r
-\r
-signop = oneOf('+ -')\r
-multop = oneOf('* /')\r
-plusop = oneOf('+ -')\r
-expop = Literal('**')\r
-\r
-# use parse actions to attach EvalXXX constructors to sub-expressions\r
-operand.setParseAction(EvalConstant)\r
-arith_expr = infixNotation(operand,\r
- [\r
- (signop, 1, opAssoc.RIGHT, EvalSignOp),\r
- (expop, 2, opAssoc.LEFT, EvalPowerOp),\r
- (multop, 2, opAssoc.LEFT, EvalMultOp),\r
- (plusop, 2, opAssoc.LEFT, EvalAddOp),\r
- ])\r
-\r
-comparisonop = oneOf("< <= > >= != = <> LT GT LE GE EQ NE")\r
-comp_expr = infixNotation(arith_expr,\r
- [\r
- (comparisonop, 2, opAssoc.LEFT, EvalComparisonOp),\r
- ])\r
-\r
-def main():\r
- # sample expressions posted on comp.lang.python, asking for advice\r
- # in safely evaluating them\r
- rules=[ \r
- '( A - B ) = 0', \r
- '(A + B + C + D + E + F + G + H + I) = J', \r
- '(A + B + C + D + E + F + G + H) = I', \r
- '(A + B + C + D + E + F) = G', \r
- '(A + B + C + D + E) = (F + G + H + I + J)', \r
- '(A + B + C + D + E) = (F + G + H + I)', \r
- '(A + B + C + D + E) = F', \r
- '(A + B + C + D) = (E + F + G + H)', \r
- '(A + B + C) = (D + E + F)', \r
- '(A + B) = (C + D + E + F)', \r
- '(A + B) = (C + D)', \r
- '(A + B) = (C - D + E - F - G + H + I + J)', \r
- '(A + B) = C', \r
- '(A + B) = 0', \r
- '(A+B+C+D+E) = (F+G+H+I+J)', \r
- '(A+B+C+D) = (E+F+G+H)', \r
- '(A+B+C+D)=(E+F+G+H)', \r
- '(A+B+C)=(D+E+F)', \r
- '(A+B)=(C+D)', \r
- '(A+B)=C', \r
- '(A-B)=C', \r
- '(A/(B+C))', \r
- '(B/(C+D))', \r
- '(G + H) = I', \r
- '-0.99 LE ((A+B+C)-(D+E+F+G)) LE 0.99', \r
- '-0.99 LE (A-(B+C)) LE 0.99', \r
- '-1000.00 LE A LE 0.00', \r
- '-5000.00 LE A LE 0.00', \r
- 'A < B', \r
- 'A < 7000', \r
- 'A = -(B)', \r
- 'A = C', \r
- 'A = 0', \r
- 'A GT 0', \r
- 'A GT 0.00', \r
- 'A GT 7.00', \r
- 'A LE B', \r
- 'A LT -1000.00', \r
- 'A LT -5000', \r
- 'A LT 0', \r
- 'A=(B+C+D)', \r
- 'A=B', \r
- 'I = (G + H)', \r
- '0.00 LE A LE 4.00', \r
- '4.00 LT A LE 7.00',\r
- '0.00 LE A LE 4.00 LE E > D',\r
- '2**2**(A+3)',\r
- ] \r
- vars_={'A': 0, 'B': 1.1, 'C': 2.2, 'D': 3.3, 'E': 4.4, 'F': 5.5, 'G': \r
- 6.6, 'H':7.7, 'I':8.8, 'J':9.9} \r
-\r
- # define tests from given rules\r
- tests = []\r
- for t in rules:\r
- t_orig = t\r
- t = t.replace("=","==")\r
- t = t.replace("EQ","==")\r
- t = t.replace("LE","<=")\r
- t = t.replace("GT",">")\r
- t = t.replace("LT","<")\r
- t = t.replace("GE",">=")\r
- t = t.replace("LE","<=")\r
- t = t.replace("NE","!=")\r
- t = t.replace("<>","!=")\r
- tests.append( (t_orig,eval(t,vars_)) )\r
-\r
- # copy vars_ to EvalConstant lookup dict\r
- EvalConstant.vars_ = vars_\r
- failed = 0\r
- for test,expected in tests:\r
- ret = comp_expr.parseString(test)[0]\r
- parsedvalue = ret.eval()\r
- print(test, expected, parsedvalue)\r
- if parsedvalue != expected:\r
- print("<<< FAIL")\r
- failed += 1\r
- else:\r
- print('')\r
- \r
- print('')\r
- if failed:\r
- print(failed, "tests FAILED")\r
- else:\r
- print("all tests PASSED")\r
-\r
-if __name__=='__main__': \r
- main()\r
+++ /dev/null
-# excelExpr.py\r
-#\r
-# Copyright 2010, Paul McGuire\r
-# \r
-# A partial implementation of a parser of Excel formula expressions.\r
-#\r
-from pyparsing import (CaselessKeyword, Suppress, Word, alphas, \r
- alphanums, nums, Optional, Group, oneOf, Forward, Regex, \r
- infixNotation, opAssoc, dblQuotedString, delimitedList, \r
- Combine, Literal, QuotedString, ParserElement, pyparsing_common)\r
-ParserElement.enablePackrat()\r
-\r
-EQ,LPAR,RPAR,COLON,COMMA = map(Suppress, '=():,')\r
-EXCL, DOLLAR = map(Literal,"!$")\r
-sheetRef = Word(alphas, alphanums) | QuotedString("'",escQuote="''")\r
-colRef = Optional(DOLLAR) + Word(alphas,max=2)\r
-rowRef = Optional(DOLLAR) + Word(nums)\r
-cellRef = Combine(Group(Optional(sheetRef + EXCL)("sheet") + colRef("col") + \r
- rowRef("row")))\r
-\r
-cellRange = (Group(cellRef("start") + COLON + cellRef("end"))("range") \r
- | cellRef | Word(alphas,alphanums))\r
-\r
-expr = Forward()\r
-\r
-COMPARISON_OP = oneOf("< = > >= <= != <>")\r
-condExpr = expr + COMPARISON_OP + expr\r
-\r
-ifFunc = (CaselessKeyword("if") - \r
- LPAR + \r
- Group(condExpr)("condition") + \r
- COMMA + Group(expr)("if_true") + \r
- COMMA + Group(expr)("if_false") + RPAR)\r
-\r
-statFunc = lambda name : Group(CaselessKeyword(name) + Group(LPAR + delimitedList(expr) + RPAR))\r
-sumFunc = statFunc("sum")\r
-minFunc = statFunc("min")\r
-maxFunc = statFunc("max")\r
-aveFunc = statFunc("ave")\r
-funcCall = ifFunc | sumFunc | minFunc | maxFunc | aveFunc\r
-\r
-multOp = oneOf("* /")\r
-addOp = oneOf("+ -")\r
-numericLiteral = pyparsing_common.number\r
-operand = numericLiteral | funcCall | cellRange | cellRef \r
-arithExpr = infixNotation(operand,\r
- [\r
- (multOp, 2, opAssoc.LEFT),\r
- (addOp, 2, opAssoc.LEFT),\r
- ])\r
-\r
-textOperand = dblQuotedString | cellRef\r
-textExpr = infixNotation(textOperand,\r
- [\r
- ('&', 2, opAssoc.LEFT),\r
- ])\r
-\r
-expr << (arithExpr | textExpr)\r
-\r
-\r
-(EQ + expr).runTests("""\\r
- =3*A7+5\r
- =3*Sheet1!$A$7+5\r
- =3*'Sheet 1'!$A$7+5"\r
- =3*'O''Reilly''s sheet'!$A$7+5\r
- =if(Sum(A1:A25)>42,Min(B1:B25),if(Sum(C1:C25)>3.14, (Min(C1:C25)+3)*18,Max(B1:B25)))\r
- =sum(a1:a25,10,min(b1,c2,d3))\r
- =if("T"&a2="TTime", "Ready", "Not ready")\r
-""")
\ No newline at end of file
+++ /dev/null
-# fourFn.py\r
-#\r
-# Demonstration of the pyparsing module, implementing a simple 4-function expression parser,\r
-# with support for scientific notation, and symbols for e and pi.\r
-# Extended to add exponentiation and simple built-in functions.\r
-# Extended test cases, simplified pushFirst method.\r
-# Removed unnecessary expr.suppress() call (thanks Nathaniel Peterson!), and added Group\r
-# Changed fnumber to use a Regex, which is now the preferred method\r
-#\r
-# Copyright 2003-2009 by Paul McGuire\r
-#\r
-from pyparsing import Literal,CaselessLiteral,Word,Group,Optional,\\r
- ZeroOrMore,Forward,nums,alphas,alphanums,Regex,ParseException,\\r
- CaselessKeyword, Suppress\r
-import math\r
-import operator\r
-\r
-exprStack = []\r
-\r
-def pushFirst( strg, loc, toks ):\r
- exprStack.append( toks[0] )\r
-def pushUMinus( strg, loc, toks ):\r
- for t in toks:\r
- if t == '-': \r
- exprStack.append( 'unary -' )\r
- #~ exprStack.append( '-1' )\r
- #~ exprStack.append( '*' )\r
- else:\r
- break\r
-\r
-bnf = None\r
-def BNF():\r
- """\r
- expop :: '^'\r
- multop :: '*' | '/'\r
- addop :: '+' | '-'\r
- integer :: ['+' | '-'] '0'..'9'+\r
- atom :: PI | E | real | fn '(' expr ')' | '(' expr ')'\r
- factor :: atom [ expop factor ]*\r
- term :: factor [ multop factor ]*\r
- expr :: term [ addop term ]*\r
- """\r
- global bnf\r
- if not bnf:\r
- point = Literal( "." )\r
- # use CaselessKeyword for e and pi, to avoid accidentally matching\r
- # functions that start with 'e' or 'pi' (such as 'exp'); Keyword\r
- # and CaselessKeyword only match whole words\r
- e = CaselessKeyword( "E" )\r
- pi = CaselessKeyword( "PI" )\r
- #~ fnumber = Combine( Word( "+-"+nums, nums ) + \r
- #~ Optional( point + Optional( Word( nums ) ) ) +\r
- #~ Optional( e + Word( "+-"+nums, nums ) ) )\r
- fnumber = Regex(r"[+-]?\d+(?:\.\d*)?(?:[eE][+-]?\d+)?")\r
- ident = Word(alphas, alphanums+"_$")\r
- \r
- plus, minus, mult, div = map(Literal, "+-*/")\r
- lpar, rpar = map(Suppress, "()")\r
- addop = plus | minus\r
- multop = mult | div\r
- expop = Literal( "^" )\r
- \r
- expr = Forward()\r
- atom = ((0,None)*minus + ( pi | e | fnumber | ident + lpar + expr + rpar | ident ).setParseAction( pushFirst ) | \r
- Group( lpar + expr + rpar )).setParseAction(pushUMinus) \r
- \r
- # by defining exponentiation as "atom [ ^ factor ]..." instead of "atom [ ^ atom ]...", we get right-to-left exponents, instead of left-to-righ\r
- # that is, 2^3^2 = 2^(3^2), not (2^3)^2.\r
- factor = Forward()\r
- factor << atom + ZeroOrMore( ( expop + factor ).setParseAction( pushFirst ) )\r
- \r
- term = factor + ZeroOrMore( ( multop + factor ).setParseAction( pushFirst ) )\r
- expr << term + ZeroOrMore( ( addop + term ).setParseAction( pushFirst ) )\r
- bnf = expr\r
- return bnf\r
-\r
-# map operator symbols to corresponding arithmetic operations\r
-epsilon = 1e-12\r
-opn = { "+" : operator.add,\r
- "-" : operator.sub,\r
- "*" : operator.mul,\r
- "/" : operator.truediv,\r
- "^" : operator.pow }\r
-fn = { "sin" : math.sin,\r
- "cos" : math.cos,\r
- "tan" : math.tan,\r
- "exp" : math.exp,\r
- "abs" : abs,\r
- "trunc" : lambda a: int(a),\r
- "round" : round,\r
- "sgn" : lambda a: (a > epsilon) - (a < -epsilon) }\r
-def evaluateStack( s ):\r
- op = s.pop()\r
- if op == 'unary -':\r
- return -evaluateStack( s )\r
- if op in "+-*/^":\r
- op2 = evaluateStack( s )\r
- op1 = evaluateStack( s )\r
- return opn[op]( op1, op2 )\r
- elif op == "PI":\r
- return math.pi # 3.1415926535\r
- elif op == "E":\r
- return math.e # 2.718281828\r
- elif op in fn:\r
- return fn[op]( evaluateStack( s ) )\r
- elif op[0].isalpha():\r
- raise Exception("invalid identifier '%s'" % op)\r
- else:\r
- return float( op )\r
-\r
-if __name__ == "__main__":\r
- \r
- def test( s, expVal ):\r
- global exprStack\r
- exprStack[:] = []\r
- try:\r
- results = BNF().parseString( s, parseAll=True )\r
- val = evaluateStack( exprStack[:] )\r
- except ParseException as e:\r
- print(s, "failed parse:", str(pe))\r
- except Exception as e:\r
- print(s, "failed eval:", str(e))\r
- else:\r
- if val == expVal:\r
- print(s, "=", val, results, "=>", exprStack)\r
- else:\r
- print(s+"!!!", val, "!=", expVal, results, "=>", exprStack)\r
- \r
- test( "9", 9 )\r
- test( "-9", -9 )\r
- test( "--9", 9 )\r
- test( "-E", -math.e )\r
- test( "9 + 3 + 6", 9 + 3 + 6 )\r
- test( "9 + 3 / 11", 9 + 3.0 / 11 )\r
- test( "(9 + 3)", (9 + 3) )\r
- test( "(9+3) / 11", (9+3.0) / 11 )\r
- test( "9 - 12 - 6", 9 - 12 - 6 )\r
- test( "9 - (12 - 6)", 9 - (12 - 6) )\r
- test( "2*3.14159", 2*3.14159 )\r
- test( "3.1415926535*3.1415926535 / 10", 3.1415926535*3.1415926535 / 10 )\r
- test( "PI * PI / 10", math.pi * math.pi / 10 )\r
- test( "PI*PI/10", math.pi*math.pi/10 )\r
- test( "PI^2", math.pi**2 )\r
- test( "round(PI^2)", round(math.pi**2) )\r
- test( "6.02E23 * 8.048", 6.02E23 * 8.048 )\r
- test( "e / 3", math.e / 3 )\r
- test( "sin(PI/2)", math.sin(math.pi/2) )\r
- test( "trunc(E)", int(math.e) )\r
- test( "trunc(-E)", int(-math.e) )\r
- test( "round(E)", round(math.e) )\r
- test( "round(-E)", round(-math.e) )\r
- test( "E^PI", math.e**math.pi )\r
- test( "exp(0)", 1 )\r
- test( "exp(1)", math.e )\r
- test( "2^3^2", 2**3**2 )\r
- test( "2^3+2", 2**3+2 )\r
- test( "2^3+5", 2**3+5 )\r
- test( "2^9", 2**9 )\r
- test( "sgn(-2)", -1 )\r
- test( "sgn(0)", 0 )\r
- test( "foo(0.1)", None )\r
- test( "sgn(0.1)", 1 )\r
-\r
-\r
-"""\r
-Test output:\r
->pythonw -u fourFn.py\r
-9 = 9.0 ['9'] => ['9']\r
-9 + 3 + 6 = 18.0 ['9', '+', '3', '+', '6'] => ['9', '3', '+', '6', '+']\r
-9 + 3 / 11 = 9.27272727273 ['9', '+', '3', '/', '11'] => ['9', '3', '11', '/', '+']\r
-(9 + 3) = 12.0 [] => ['9', '3', '+']\r
-(9+3) / 11 = 1.09090909091 ['/', '11'] => ['9', '3', '+', '11', '/']\r
-9 - 12 - 6 = -9.0 ['9', '-', '12', '-', '6'] => ['9', '12', '-', '6', '-']\r
-9 - (12 - 6) = 3.0 ['9', '-'] => ['9', '12', '6', '-', '-']\r
-2*3.14159 = 6.28318 ['2', '*', '3.14159'] => ['2', '3.14159', '*']\r
-3.1415926535*3.1415926535 / 10 = 0.986960440053 ['3.1415926535', '*', '3.1415926535', '/', '10'] => ['3.1415926535', '3.1415926535', '*', '10', '/']\r
-PI * PI / 10 = 0.986960440109 ['PI', '*', 'PI', '/', '10'] => ['PI', 'PI', '*', '10', '/']\r
-PI*PI/10 = 0.986960440109 ['PI', '*', 'PI', '/', '10'] => ['PI', 'PI', '*', '10', '/']\r
-PI^2 = 9.86960440109 ['PI', '^', '2'] => ['PI', '2', '^']\r
-6.02E23 * 8.048 = 4.844896e+024 ['6.02E23', '*', '8.048'] => ['6.02E23', '8.048', '*']\r
-e / 3 = 0.90609394282 ['E', '/', '3'] => ['E', '3', '/']\r
-sin(PI/2) = 1.0 ['sin', 'PI', '/', '2'] => ['PI', '2', '/', 'sin']\r
-trunc(E) = 2 ['trunc', 'E'] => ['E', 'trunc']\r
-E^PI = 23.1406926328 ['E', '^', 'PI'] => ['E', 'PI', '^']\r
-2^3^2 = 512.0 ['2', '^', '3', '^', '2'] => ['2', '3', '2', '^', '^']\r
-2^3+2 = 10.0 ['2', '^', '3', '+', '2'] => ['2', '3', '^', '2', '+']\r
-2^9 = 512.0 ['2', '^', '9'] => ['2', '9', '^']\r
-sgn(-2) = -1 ['sgn', '-2'] => ['-2', 'sgn']\r
-sgn(0) = 0 ['sgn', '0'] => ['0', 'sgn']\r
-sgn(0.1) = 1 ['sgn', '0.1'] => ['0.1', 'sgn']\r
->Exit code: 0\r
-"""\r
+++ /dev/null
-#\r
-# gen_ctypes.py\r
-#\r
-# Parse a .h header file to generate ctypes argtype and return type definitions\r
-#\r
-# Copyright 2004-2016, by Paul McGuire\r
-#\r
-from pyparsing import *\r
-\r
-typemap = {\r
- "byte" : "c_byte",\r
- "char" : "c_char",\r
- "char *" : "c_char_p",\r
- "double" : "c_double",\r
- "float" : "c_float",\r
- "int" : "c_int",\r
- "int16" : "c_int16",\r
- "int32" : "c_int32",\r
- "int64" : "c_int64",\r
- "int8" : "c_int8",\r
- "long" : "c_long",\r
- "longlong" : "c_longlong",\r
- "short" : "c_short",\r
- "size_t" : "c_size_t",\r
- "ubyte" : "c_ubyte",\r
- "uchar" : "c_ubyte",\r
- "u_char" : "c_ubyte",\r
- "uint" : "c_uint",\r
- "u_int" : "c_uint",\r
- "uint16" : "c_uint16",\r
- "uint32" : "c_uint32",\r
- "uint64" : "c_uint64",\r
- "uint8" : "c_uint8",\r
- "u_long" : "c_ulong",\r
- "ulong" : "c_ulong",\r
- "ulonglong" : "c_ulonglong",\r
- "ushort" : "c_ushort",\r
- "u_short" : "c_ushort",\r
- "void *" : "c_void_p",\r
- "voidp" : "c_voidp",\r
- "wchar" : "c_wchar",\r
- "wchar *" : "c_wchar_p",\r
- "Bool" : "c_bool",\r
- "void" : "None",\r
- }\r
- \r
-LPAR,RPAR,LBRACE,RBRACE,COMMA,SEMI = map(Suppress,"(){},;")\r
-ident = Word(alphas, alphanums + "_")\r
-integer = Regex(r"[+-]?\d+")\r
-hexinteger = Regex(r"0x[0-9a-fA-F]+")\r
-\r
-const = Suppress("const")\r
-primitiveType = oneOf(t for t in typemap if not t.endswith("*"))\r
-structType = Suppress("struct") + ident\r
-vartype = (Optional(const) + \r
- (primitiveType | structType | ident) + \r
- Optional(Word("*")("ptr")))\r
-def normalizetype(t):\r
- if isinstance(t, ParseResults):\r
- return ' '.join(t)\r
- #~ ret = ParseResults([' '.join(t)])\r
- #~ return ret\r
- \r
-vartype.setParseAction(normalizetype)\r
-\r
-arg = Group(vartype("argtype") + Optional(ident("argname")))\r
-func_def = (vartype("fn_type") + ident("fn_name") + \r
- LPAR + Optional(delimitedList(arg|"..."))("fn_args") + RPAR + SEMI)\r
-def derivefields(t):\r
- if t.fn_args and t.fn_args[-1] == "...":\r
- t["varargs"]=True\r
-func_def.setParseAction(derivefields)\r
-\r
-fn_typedef = "typedef" + func_def\r
-var_typedef = "typedef" + primitiveType("primType") + ident("name") + SEMI\r
-\r
-enum_def = (Keyword("enum") + LBRACE + \r
- delimitedList(Group(ident("name") + '=' + (hexinteger|integer)("value")))("evalues")\r
- + Optional(COMMA)\r
- + RBRACE)\r
-\r
-c_header = open("snmp_api.h").read()\r
-\r
-\r
-module = "pynetsnmp"\r
-\r
-user_defined_types = set()\r
-typedefs = []\r
-fn_typedefs = []\r
-functions = []\r
-enum_constants = []\r
-\r
-# add structures commonly included from std lib headers\r
-def addStdType(t,namespace=""):\r
- fullname = namespace+'_'+t if namespace else t\r
- typemap[t] = fullname\r
- user_defined_types.add(t)\r
-addStdType("fd_set", "sys_select")\r
-addStdType("timeval", "sys_time")\r
-\r
-def getUDType(typestr):\r
- key = typestr.rstrip(" *")\r
- if key not in typemap:\r
- user_defined_types.add(key)\r
- typemap[key] = "%s_%s" % (module, key)\r
-\r
-def typeAsCtypes(typestr):\r
- if typestr in typemap:\r
- return typemap[typestr]\r
- if typestr.endswith("*"):\r
- return "POINTER(%s)" % typeAsCtypes(typestr.rstrip(" *"))\r
- return typestr\r
-\r
-# scan input header text for primitive typedefs\r
-for td,_,_ in var_typedef.scanString(c_header):\r
- typedefs.append( (td.name, td.primType) )\r
- # add typedef type to typemap to map to itself\r
- typemap[td.name] = td.name\r
-\r
-# scan input header text for function typedefs\r
-fn_typedefs = fn_typedef.searchString(c_header)\r
-# add each function typedef to typemap to map to itself\r
-for fntd in fn_typedefs:\r
- typemap[fntd.fn_name] = fntd.fn_name\r
-\r
-# scan input header text, and keep running list of user-defined types\r
-for fn,_,_ in (cStyleComment.suppress() | fn_typedef.suppress() | func_def).scanString(c_header):\r
- if not fn: continue\r
- getUDType(fn.fn_type)\r
- for arg in fn.fn_args:\r
- if arg != "...":\r
- if arg.argtype not in typemap:\r
- getUDType(arg.argtype)\r
- functions.append(fn) \r
-\r
-# scan input header text for enums\r
-enum_def.ignore(cppStyleComment)\r
-for en_,_,_ in enum_def.scanString(c_header):\r
- for ev in en_.evalues:\r
- enum_constants.append( (ev.name, ev.value) )\r
-\r
-print("from ctypes import *")\r
-print("%s = CDLL('%s.dll')" % (module, module))\r
-print()\r
-print("# user defined types")\r
-for tdname,tdtyp in typedefs:\r
- print("%s = %s" % (tdname, typemap[tdtyp]))\r
-for fntd in fn_typedefs:\r
- print("%s = CFUNCTYPE(%s)" % (fntd.fn_name,\r
- ',\n '.join(typeAsCtypes(a.argtype) for a in fntd.fn_args)))\r
-for udtype in user_defined_types:\r
- print("class %s(Structure): pass" % typemap[udtype])\r
-\r
-print()\r
-print("# constant definitions")\r
-for en,ev in enum_constants:\r
- print("%s = %s" % (en,ev))\r
-\r
-print()\r
-print("# functions")\r
-for fn in functions:\r
- prefix = "%s.%s" % (module, fn.fn_name)\r
- \r
- print("%s.restype = %s" % (prefix, typeAsCtypes(fn.fn_type)))\r
- if fn.varargs:\r
- print("# warning - %s takes variable argument list" % prefix)\r
- del fn.fn_args[-1]\r
-\r
- if fn.fn_args.asList() != [['void']]:\r
- print("%s.argtypes = (%s,)" % (prefix, ','.join(typeAsCtypes(a.argtype) for a in fn.fn_args)))\r
- else:\r
- print("%s.argtypes = ()" % (prefix))\r
- \r
-\r
+++ /dev/null
-# getNTPservers.py\r
-#\r
-# Demonstration of the parsing module, implementing a HTML page scanner,\r
-# to extract a list of NTP time servers from the NIST web site.\r
-#\r
-# Copyright 2004, by Paul McGuire\r
-#\r
-from pyparsing import Word, Combine, Suppress, CharsNotIn, nums\r
-import urllib.request, urllib.parse, urllib.error\r
-\r
-integer = Word(nums)\r
-ipAddress = Combine( integer + "." + integer + "." + integer + "." + integer )\r
-tdStart = Suppress("<td>")\r
-tdEnd = Suppress("</td>")\r
-timeServerPattern = tdStart + ipAddress.setResultsName("ipAddr") + tdEnd + \\r
- tdStart + CharsNotIn("<").setResultsName("loc") + tdEnd\r
-\r
-# get list of time servers\r
-nistTimeServerURL = "http://www.boulder.nist.gov/timefreq/service/time-servers.html"\r
-serverListPage = urllib.request.urlopen( nistTimeServerURL )\r
-serverListHTML = serverListPage.read()\r
-serverListPage.close()\r
-\r
-addrs = {}\r
-for srvr,startloc,endloc in timeServerPattern.scanString( serverListHTML ):\r
- print(srvr.ipAddr, "-", srvr.loc)\r
- addrs[srvr.ipAddr] = srvr.loc\r
- # or do this:\r
- #~ addr,loc = srvr\r
- #~ print addr, "-", loc\r
+++ /dev/null
-# getNTPserversNew.py\r
-#\r
-# Demonstration of the parsing module, implementing a HTML page scanner,\r
-# to extract a list of NTP time servers from the NIST web site.\r
-#\r
-# Copyright 2004-2010, by Paul McGuire\r
-# September, 2010 - updated to more current use of setResultsName, new NIST URL\r
-#\r
-from pyparsing import (Word, Combine, Suppress, SkipTo, nums, makeHTMLTags,\r
- delimitedList, alphas, alphanums)\r
-try:\r
- import urllib.request\r
- urlopen = urllib.request.urlopen\r
-except ImportError:\r
- import urllib\r
- urlopen = urllib.urlopen\r
-\r
-integer = Word(nums)\r
-ipAddress = Combine( integer + "." + integer + "." + integer + "." + integer )\r
-hostname = delimitedList(Word(alphas,alphanums+"-_"),".",combine=True)\r
-tdStart,tdEnd = makeHTMLTags("td")\r
-timeServerPattern = (tdStart + hostname("hostname") + tdEnd + \r
- tdStart + ipAddress("ipAddr") + tdEnd + \r
- tdStart + SkipTo(tdEnd)("loc") + tdEnd)\r
-\r
-# get list of time servers\r
-nistTimeServerURL = "http://tf.nist.gov/tf-cgi/servers.cgi#"\r
-serverListPage = urlopen( nistTimeServerURL )\r
-serverListHTML = serverListPage.read().decode("UTF-8")\r
-serverListPage.close()\r
-\r
-addrs = {}\r
-for srvr,startloc,endloc in timeServerPattern.scanString( serverListHTML ):\r
- print("%s (%s) - %s" % (srvr.ipAddr, srvr.hostname.strip(), srvr.loc.strip()))\r
- addrs[srvr.ipAddr] = srvr.loc\r
+++ /dev/null
-# greeting.py\r
-#\r
-# Demonstration of the pyparsing module, on the prototypical "Hello, World!"\r
-# example\r
-#\r
-# Copyright 2003, by Paul McGuire\r
-#\r
-from pyparsing import Word, alphas\r
-\r
-# define grammar\r
-greet = Word( alphas ) + "," + Word( alphas ) + "!"\r
-\r
-# input string\r
-hello = "Hello, World!"\r
-\r
-# parse input string\r
-print(hello, "->", greet.parseString( hello ))\r
+++ /dev/null
-# vim:fileencoding=utf-8 \r
-#\r
-# greetingInGreek.py\r
-#\r
-# Demonstration of the parsing module, on the prototypical "Hello, World!" example\r
-#\r
-# Copyright 2004-2016, by Paul McGuire\r
-#\r
-from pyparsing import Word \r
-\r
-# define grammar\r
-alphas = ''.join(chr(x) for x in range(0x386, 0x3ce)) \r
-greet = Word(alphas) + ',' + Word(alphas) + '!' \r
-\r
-# input string\r
-hello = "Καλημέρα, κόσμε!".decode('utf-8') \r
-\r
-# parse input string\r
-print(greet.parseString( hello ))\r
-\r
+++ /dev/null
-# vim:fileencoding=utf-8 \r
-#\r
-# greetingInKorean.py\r
-#\r
-# Demonstration of the parsing module, on the prototypical "Hello, World!" example\r
-#\r
-# Copyright 2004-2016, by Paul McGuire\r
-#\r
-from pyparsing import Word, srange\r
-\r
-koreanChars = srange(r"[\0xac00-\0xd7a3]")\r
-koreanWord = Word(koreanChars,min=2)\r
-\r
-# define grammar\r
-greet = koreanWord + "," + koreanWord + "!"\r
-\r
-# input string\r
-hello = '\uc548\ub155, \uc5ec\ub7ec\ubd84!' #"Hello, World!" in Korean\r
-\r
-# parse input string\r
-print(greet.parseString( hello ))\r
-\r
+++ /dev/null
-#\r
-# A simple example showing the use of the implied listAllMatches=True for\r
-# results names with a trailing '*' character.\r
-#\r
-# This example performs work similar to itertools.groupby, but without\r
-# having to sort the input first.\r
-#\r
-# Copyright 2004-2016, by Paul McGuire\r
-#\r
-from pyparsing import Word, ZeroOrMore, nums\r
-\r
-aExpr = Word("A", nums)\r
-bExpr = Word("B", nums)\r
-cExpr = Word("C", nums)\r
-grammar = ZeroOrMore(aExpr("A*") | bExpr("B*") | cExpr("C*"))\r
-\r
-grammar.runTests("A1 B1 A2 C1 B2 A3")\r
+++ /dev/null
-# -*- coding: UTF-8 -*-\r
-\r
-# escrito por Marco Alfonso, 2004 Noviembre\r
-\r
-# importamos el modulo \r
-from pyparsing import * \r
-saludo= Word(alphas) + ',' + Word(alphas) + '!' \r
- \r
-# Aqui decimos que la gramatica "saludo" DEBE contener \r
-# una palabra compuesta de caracteres alfanumericos \r
-# (Word(alphas)) mas una ',' mas otra palabra alfanumerica, \r
-# mas '!' y esos seian nuestros tokens \r
-tokens = saludo.parseString("Hola, Mundo !") \r
- \r
-# Ahora parseamos una cadena, "Hola, Mundo!", \r
-# el metodo parseString, nos devuelve una lista con los tokens \r
-# encontrados, en caso de no haber errores... \r
-for i in range(len(tokens)):\r
- print ("Token %d -> %s" % (i,tokens[i]))\r
-\r
-#imprimimos cada uno de los tokens Y listooo!!, he aquí a salida \r
-# Token 0 -> Hola\r
-# Token 1 -> ,\r
-# Token 2-> Mundo \r
-# Token 3 -> ! \r
- \r
-# Por supuesto, se pueden "reutilizar" gramáticas, por ejemplo: \r
-numimag = Word(nums) + 'i' \r
-numreal = Word(nums) \r
-numcomplex = numreal + '+' + numimag \r
-print (numcomplex.parseString("3+5i"))\r
-\r
-# Cambiar a complejo numero durante parsear:\r
-numcomplex.setParseAction(lambda t: complex(''.join(t).replace('i','j')))\r
-print (numcomplex.parseString("3+5i"))\r
-\r
-# Excelente!!, bueno, los dejo, me voy a seguir tirando código...\r
-\r
+++ /dev/null
-#\r
-# htmlStripper.py\r
-#\r
-# Sample code for stripping HTML markup tags and scripts from \r
-# HTML source files.\r
-#\r
-# Copyright (c) 2006, 2016, Paul McGuire\r
-#\r
-from contextlib import closing\r
-import urllib.request, urllib.parse, urllib.error\r
-from pyparsing import (makeHTMLTags, SkipTo, commonHTMLEntity, replaceHTMLEntity, \r
- htmlComment, anyOpenTag, anyCloseTag, LineEnd, OneOrMore, replaceWith)\r
-\r
-scriptOpen,scriptClose = makeHTMLTags("script")\r
-scriptBody = scriptOpen + SkipTo(scriptClose) + scriptClose\r
-commonHTMLEntity.setParseAction(replaceHTMLEntity)\r
-\r
-# get some HTML\r
-targetURL = "http://wiki.python.org/moin/PythonDecoratorLibrary"\r
-with closing(urllib.request.urlopen( targetURL )) as targetPage:\r
- targetHTML = targetPage.read().decode("UTF-8")\r
-\r
-# first pass, strip out tags and translate entities\r
-firstPass = (htmlComment | scriptBody | commonHTMLEntity | \r
- anyOpenTag | anyCloseTag ).suppress().transformString(targetHTML)\r
-\r
-# first pass leaves many blank lines, collapse these down\r
-repeatedNewlines = LineEnd() + OneOrMore(LineEnd())\r
-repeatedNewlines.setParseAction(replaceWith("\n\n"))\r
-secondPass = repeatedNewlines.transformString(firstPass)\r
-\r
-print(secondPass)
\ No newline at end of file
+++ /dev/null
-# httpServerLogParser.py\r
-#\r
-# Copyright (c) 2016, Paul McGuire\r
-#\r
-"""\r
-Parser for HTTP server log output, of the form:\r
-\r
-195.146.134.15 - - [20/Jan/2003:08:55:36 -0800] \r
-"GET /path/to/page.html HTTP/1.0" 200 4649 "http://www.somedomain.com/020602/page.html" \r
-"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r
-127.0.0.1 - u.surname@domain.com [12/Sep/2006:14:13:53 +0300] \r
-"GET /skins/monobook/external.png HTTP/1.0" 304 - "http://wiki.mysite.com/skins/monobook/main.css" \r
-"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5.0.6"\r
-\r
-You can then break it up as follows:\r
-IP ADDRESS - -\r
-Server Date / Time [SPACE]\r
-"GET /path/to/page\r
-HTTP/Type Request"\r
-Success Code\r
-Bytes Sent To Client\r
-Referer\r
-Client Software\r
-"""\r
-\r
-from pyparsing import alphas,nums, dblQuotedString, Combine, Word, Group, delimitedList, Suppress, removeQuotes\r
-import string\r
-\r
-def getCmdFields( s, l, t ):\r
- t["method"],t["requestURI"],t["protocolVersion"] = t[0].strip('"').split()\r
-\r
-logLineBNF = None\r
-def getLogLineBNF():\r
- global logLineBNF\r
- \r
- if logLineBNF is None:\r
- integer = Word( nums )\r
- ipAddress = delimitedList( integer, ".", combine=True )\r
- \r
- timeZoneOffset = Word("+-",nums)\r
- month = Word(string.uppercase, string.lowercase, exact=3)\r
- serverDateTime = Group( Suppress("[") + \r
- Combine( integer + "/" + month + "/" + integer +\r
- ":" + integer + ":" + integer + ":" + integer ) +\r
- timeZoneOffset + \r
- Suppress("]") )\r
- \r
- logLineBNF = ( ipAddress.setResultsName("ipAddr") + \r
- Suppress("-") +\r
- ("-" | Word( alphas+nums+"@._" )).setResultsName("auth") +\r
- serverDateTime.setResultsName("timestamp") + \r
- dblQuotedString.setResultsName("cmd").setParseAction(getCmdFields) +\r
- (integer | "-").setResultsName("statusCode") + \r
- (integer | "-").setResultsName("numBytesSent") + \r
- dblQuotedString.setResultsName("referrer").setParseAction(removeQuotes) +\r
- dblQuotedString.setResultsName("clientSfw").setParseAction(removeQuotes) )\r
- return logLineBNF\r
- \r
-testdata = """\r
-195.146.134.15 - - [20/Jan/2003:08:55:36 -0800] "GET /path/to/page.html HTTP/1.0" 200 4649 "http://www.somedomain.com/020602/page.html" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r
-111.111.111.11 - - [16/Feb/2004:04:09:49 -0800] "GET /ads/redirectads/336x280redirect.htm HTTP/1.1" 304 - "http://www.foobarp.org/theme_detail.php?type=vs&cat=0&mid=27512" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"\r
-11.111.11.111 - - [16/Feb/2004:10:35:12 -0800] "GET /ads/redirectads/468x60redirect.htm HTTP/1.1" 200 541 "http://11.11.111.11/adframe.php?n=ad1f311a&what=zone:56" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.20 [ru\"]"\r
-127.0.0.1 - u.surname@domain.com [12/Sep/2006:14:13:53 +0300] "GET /skins/monobook/external.png HTTP/1.0" 304 - "http://wiki.mysite.com/skins/monobook/main.css" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5.0.6"\r
-"""\r
-for line in testdata.split("\n"):\r
- if not line: continue\r
- fields = getLogLineBNF().parseString(line)\r
- print(fields.dump())\r
- #~ print repr(fields)\r
- #~ for k in fields.keys():\r
- #~ print "fields." + k + " =", fields[k]\r
- print(fields.asXML("LOG"))\r
- print()\r
+++ /dev/null
-#\r
-# idlparse.py\r
-#\r
-# an example of using the parsing module to be able to process a subset of the CORBA IDL grammar\r
-#\r
-# Copyright (c) 2003, Paul McGuire\r
-#\r
-\r
-from pyparsing import Literal, CaselessLiteral, Word, OneOrMore, ZeroOrMore, \\r
- Forward, NotAny, delimitedList, oneOf, Group, Optional, Combine, alphas, nums, restOfLine, cStyleComment, \\r
- alphanums, printables, empty, quotedString, ParseException, ParseResults, Keyword, Regex\r
-import pprint\r
-#~ import tree2image\r
-\r
-bnf = None\r
-def CORBA_IDL_BNF():\r
- global bnf\r
- \r
- if not bnf:\r
-\r
- # punctuation\r
- (colon,lbrace,rbrace,lbrack,rbrack,lparen,rparen,\r
- equals,comma,dot,slash,bslash,star,semi,langle,rangle) = map(Literal, r":{}[]()=,./\*;<>")\r
- \r
- # keywords\r
- (any_, attribute_, boolean_, case_, char_, const_, context_, default_, double_, enum_, exception_, \r
- FALSE_, fixed_, float_, inout_, interface_, in_, long_, module_, Object_, octet_, oneway_, out_, raises_, \r
- readonly_, sequence_, short_, string_, struct_, switch_, TRUE_, typedef_, unsigned_, union_, void_, \r
- wchar_, wstring_) = map(Keyword, """any attribute boolean case char const context \r
- default double enum exception FALSE fixed float inout interface in long module \r
- Object octet oneway out raises readonly sequence short string struct switch\r
- TRUE typedef unsigned union void wchar wstring""".split())\r
- \r
- identifier = Word( alphas, alphanums + "_" ).setName("identifier")\r
- \r
- real = Regex(r"[+-]?\d+\.\d*([Ee][+-]?\d+)?").setName("real")\r
- integer = Regex(r"0x[0-9a-fA-F]+|[+-]?\d+").setName("int")\r
-\r
- udTypeName = delimitedList( identifier, "::", combine=True ).setName("udType")\r
- typeName = ( any_ | boolean_ | char_ | double_ | fixed_ | \r
- float_ | long_ | octet_ | short_ | string_ | \r
- wchar_ | wstring_ | udTypeName ).setName("type")\r
- sequenceDef = Forward().setName("seq")\r
- sequenceDef << Group( sequence_ + langle + ( sequenceDef | typeName ) + rangle )\r
- typeDef = sequenceDef | ( typeName + Optional( lbrack + integer + rbrack ) )\r
- typedefDef = Group( typedef_ + typeDef + identifier + semi ).setName("typedef")\r
-\r
- moduleDef = Forward()\r
- constDef = Group( const_ + typeDef + identifier + equals + ( real | integer | quotedString ) + semi ) #| quotedString )\r
- exceptionItem = Group( typeDef + identifier + semi )\r
- exceptionDef = ( exception_ + identifier + lbrace + ZeroOrMore( exceptionItem ) + rbrace + semi )\r
- attributeDef = Optional( readonly_ ) + attribute_ + typeDef + identifier + semi\r
- paramlist = delimitedList( Group( ( inout_ | in_ | out_ ) + typeName + identifier ) ).setName( "paramlist" )\r
- operationDef = ( ( void_ ^ typeDef ) + identifier + lparen + Optional( paramlist ) + rparen + \\r
- Optional( raises_ + lparen + Group( delimitedList( typeName ) ) + rparen ) + semi )\r
- interfaceItem = ( constDef | exceptionDef | attributeDef | operationDef )\r
- interfaceDef = Group( interface_ + identifier + Optional( colon + delimitedList( typeName ) ) + lbrace + \\r
- ZeroOrMore( interfaceItem ) + rbrace + semi ).setName("opnDef")\r
- moduleItem = ( interfaceDef | exceptionDef | constDef | typedefDef | moduleDef )\r
- moduleDef << module_ + identifier + lbrace + ZeroOrMore( moduleItem ) + rbrace + semi\r
-\r
- bnf = ( moduleDef | OneOrMore( moduleItem ) )\r
- \r
- singleLineComment = "//" + restOfLine\r
- bnf.ignore( singleLineComment )\r
- bnf.ignore( cStyleComment )\r
- \r
- return bnf\r
-\r
-testnum = 1\r
-def test( strng ):\r
- global testnum\r
- print(strng)\r
- try:\r
- bnf = CORBA_IDL_BNF()\r
- tokens = bnf.parseString( strng )\r
- print("tokens = ")\r
- pprint.pprint( tokens.asList() )\r
- imgname = "idlParse%02d.bmp" % testnum\r
- testnum += 1\r
- #~ tree2image.str2image( str(tokens.asList()), imgname )\r
- except ParseException as err:\r
- print(err.line)\r
- print(" "*(err.column-1) + "^")\r
- print(err)\r
- print()\r
- \r
-if __name__ == "__main__":\r
- test(\r
- """\r
- /*\r
- * a block comment *\r
- */\r
- typedef string[10] tenStrings;\r
- typedef sequence<string> stringSeq;\r
- typedef sequence< sequence<string> > stringSeqSeq;\r
- \r
- interface QoSAdmin {\r
- stringSeq method1( in string arg1, inout long arg2 );\r
- stringSeqSeq method2( in string arg1, inout long arg2, inout long arg3);\r
- string method3();\r
- };\r
- """\r
- )\r
- test(\r
- """\r
- /*\r
- * a block comment *\r
- */\r
- typedef string[10] tenStrings;\r
- typedef \r
- /** ** *** **** *\r
- * a block comment *\r
- */\r
- sequence<string> /*comment inside an And */ stringSeq;\r
- /* */ /**/ /***/ /****/\r
- typedef sequence< sequence<string> > stringSeqSeq;\r
- \r
- interface QoSAdmin {\r
- stringSeq method1( in string arg1, inout long arg2 );\r
- stringSeqSeq method2( in string arg1, inout long arg2, inout long arg3);\r
- string method3();\r
- };\r
- """\r
- )\r
- test(\r
- r"""\r
- const string test="Test String\n";\r
- const long a = 0;\r
- const long b = -100;\r
- const float c = 3.14159;\r
- const long d = 0x007f7f7f;\r
- exception TestException\r
- {\r
- string msg;\r
- sequence<string> dataStrings;\r
- };\r
- \r
- interface TestInterface\r
- {\r
- void method1( in string arg1, inout long arg2 );\r
- };\r
- """\r
- )\r
- test(\r
- """\r
- module Test1 \r
- {\r
- exception TestException\r
- {\r
- string msg;\r
- ];\r
- \r
- interface TestInterface\r
- {\r
- void method1( in string arg1, inout long arg2 ) \r
- raises ( TestException );\r
- };\r
- };\r
- """\r
- )\r
- test(\r
- """\r
- module Test1 \r
- {\r
- exception TestException\r
- {\r
- string msg;\r
- };\r
- \r
- };\r
- """\r
- )\r
+++ /dev/null
-# indentedGrammarExample.py\r
-#\r
-# Copyright (c) 2006,2016 Paul McGuire\r
-#\r
-# A sample of a pyparsing grammar using indentation for \r
-# grouping (like Python does).\r
-#\r
-# Updated to use indentedBlock helper method.\r
-#\r
-\r
-from pyparsing import *\r
-\r
-data = """\\r
-def A(z):\r
- A1\r
- B = 100\r
- G = A2\r
- A2\r
- A3\r
-B\r
-def BB(a,b,c):\r
- BB1\r
- def BBA():\r
- bba1\r
- bba2\r
- bba3\r
-C\r
-D\r
-def spam(x,y):\r
- def eggs(z):\r
- pass\r
-"""\r
-\r
-\r
-indentStack = [1]\r
-stmt = Forward()\r
-suite = indentedBlock(stmt, indentStack)\r
-\r
-identifier = Word(alphas, alphanums)\r
-funcDecl = ("def" + identifier + Group( "(" + Optional( delimitedList(identifier) ) + ")" ) + ":")\r
-funcDef = Group( funcDecl + suite )\r
-\r
-rvalue = Forward()\r
-funcCall = Group(identifier + "(" + Optional(delimitedList(rvalue)) + ")")\r
-rvalue << (funcCall | identifier | Word(nums))\r
-assignment = Group(identifier + "=" + rvalue)\r
-stmt << ( funcDef | assignment | identifier )\r
-\r
-module_body = OneOrMore(stmt)\r
-\r
-print(data)\r
-parseTree = module_body.parseString(data)\r
-parseTree.pprint()\r
-\r
+++ /dev/null
-# \r
-# invRegex.py\r
-#\r
-# Copyright 2008, Paul McGuire\r
-#\r
-# pyparsing script to expand a regular expression into all possible matching strings\r
-# Supports:\r
-# - {n} and {m,n} repetition, but not unbounded + or * repetition\r
-# - ? optional elements\r
-# - [] character ranges\r
-# - () grouping\r
-# - | alternation\r
-#\r
-__all__ = ["count","invert"]\r
-\r
-from pyparsing import (Literal, oneOf, printables, ParserElement, Combine, \r
- SkipTo, infixNotation, ParseFatalException, Word, nums, opAssoc,\r
- Suppress, ParseResults, srange)\r
-\r
-class CharacterRangeEmitter(object):\r
- def __init__(self,chars):\r
- # remove duplicate chars in character range, but preserve original order\r
- seen = set()\r
- self.charset = "".join( seen.add(c) or c for c in chars if c not in seen )\r
- def __str__(self):\r
- return '['+self.charset+']'\r
- def __repr__(self):\r
- return '['+self.charset+']'\r
- def makeGenerator(self):\r
- def genChars():\r
- for s in self.charset:\r
- yield s\r
- return genChars\r
-\r
-class OptionalEmitter(object):\r
- def __init__(self,expr):\r
- self.expr = expr\r
- def makeGenerator(self):\r
- def optionalGen():\r
- yield ""\r
- for s in self.expr.makeGenerator()():\r
- yield s\r
- return optionalGen\r
-\r
-class DotEmitter(object):\r
- def makeGenerator(self):\r
- def dotGen():\r
- for c in printables:\r
- yield c\r
- return dotGen\r
-\r
-class GroupEmitter(object):\r
- def __init__(self,exprs):\r
- self.exprs = ParseResults(exprs)\r
- def makeGenerator(self):\r
- def groupGen():\r
- def recurseList(elist):\r
- if len(elist)==1:\r
- for s in elist[0].makeGenerator()():\r
- yield s\r
- else:\r
- for s in elist[0].makeGenerator()():\r
- for s2 in recurseList(elist[1:]):\r
- yield s + s2\r
- if self.exprs:\r
- for s in recurseList(self.exprs):\r
- yield s\r
- return groupGen\r
-\r
-class AlternativeEmitter(object):\r
- def __init__(self,exprs):\r
- self.exprs = exprs\r
- def makeGenerator(self):\r
- def altGen():\r
- for e in self.exprs:\r
- for s in e.makeGenerator()():\r
- yield s\r
- return altGen\r
- \r
-class LiteralEmitter(object):\r
- def __init__(self,lit):\r
- self.lit = lit\r
- def __str__(self):\r
- return "Lit:"+self.lit\r
- def __repr__(self):\r
- return "Lit:"+self.lit\r
- def makeGenerator(self):\r
- def litGen():\r
- yield self.lit\r
- return litGen\r
-\r
-def handleRange(toks):\r
- return CharacterRangeEmitter(srange(toks[0]))\r
- \r
-def handleRepetition(toks):\r
- toks=toks[0]\r
- if toks[1] in "*+":\r
- raise ParseFatalException("",0,"unbounded repetition operators not supported")\r
- if toks[1] == "?":\r
- return OptionalEmitter(toks[0])\r
- if "count" in toks:\r
- return GroupEmitter([toks[0]] * int(toks.count))\r
- if "minCount" in toks:\r
- mincount = int(toks.minCount)\r
- maxcount = int(toks.maxCount)\r
- optcount = maxcount - mincount\r
- if optcount:\r
- opt = OptionalEmitter(toks[0])\r
- for i in range(1,optcount):\r
- opt = OptionalEmitter(GroupEmitter([toks[0],opt]))\r
- return GroupEmitter([toks[0]] * mincount + [opt])\r
- else:\r
- return [toks[0]] * mincount\r
- \r
-def handleLiteral(toks):\r
- lit = ""\r
- for t in toks:\r
- if t[0] == "\\":\r
- if t[1] == "t":\r
- lit += '\t'\r
- else:\r
- lit += t[1]\r
- else:\r
- lit += t\r
- return LiteralEmitter(lit) \r
-\r
-def handleMacro(toks):\r
- macroChar = toks[0][1]\r
- if macroChar == "d":\r
- return CharacterRangeEmitter("0123456789")\r
- elif macroChar == "w":\r
- return CharacterRangeEmitter(srange("[A-Za-z0-9_]"))\r
- elif macroChar == "s":\r
- return LiteralEmitter(" ")\r
- else:\r
- raise ParseFatalException("",0,"unsupported macro character (" + macroChar + ")")\r
-\r
-def handleSequence(toks):\r
- return GroupEmitter(toks[0])\r
-\r
-def handleDot():\r
- return CharacterRangeEmitter(printables)\r
-\r
-def handleAlternative(toks):\r
- return AlternativeEmitter(toks[0])\r
-\r
-\r
-_parser = None\r
-def parser():\r
- global _parser\r
- if _parser is None:\r
- ParserElement.setDefaultWhitespaceChars("")\r
- lbrack,rbrack,lbrace,rbrace,lparen,rparen,colon,qmark = map(Literal,"[]{}():?")\r
-\r
- reMacro = Combine("\\" + oneOf(list("dws")))\r
- escapedChar = ~reMacro + Combine("\\" + oneOf(list(printables)))\r
- reLiteralChar = "".join(c for c in printables if c not in r"\[]{}().*?+|") + " \t"\r
-\r
- reRange = Combine(lbrack + SkipTo(rbrack,ignore=escapedChar) + rbrack)\r
- reLiteral = ( escapedChar | oneOf(list(reLiteralChar)) )\r
- reNonCaptureGroup = Suppress("?:")\r
- reDot = Literal(".")\r
- repetition = (\r
- ( lbrace + Word(nums)("count") + rbrace ) |\r
- ( lbrace + Word(nums)("minCount")+","+ Word(nums)("maxCount") + rbrace ) |\r
- oneOf(list("*+?")) \r
- )\r
-\r
- reRange.setParseAction(handleRange)\r
- reLiteral.setParseAction(handleLiteral)\r
- reMacro.setParseAction(handleMacro)\r
- reDot.setParseAction(handleDot)\r
- \r
- reTerm = ( reLiteral | reRange | reMacro | reDot | reNonCaptureGroup)\r
- reExpr = infixNotation( reTerm,\r
- [\r
- (repetition, 1, opAssoc.LEFT, handleRepetition),\r
- (None, 2, opAssoc.LEFT, handleSequence),\r
- (Suppress('|'), 2, opAssoc.LEFT, handleAlternative),\r
- ]\r
- )\r
- _parser = reExpr\r
- \r
- return _parser\r
-\r
-def count(gen):\r
- """Simple function to count the number of elements returned by a generator."""\r
- return sum(1 for _ in gen)\r
-\r
-def invert(regex):\r
- r"""Call this routine as a generator to return all the strings that\r
- match the input regular expression.\r
- for s in invert(r"[A-Z]{3}\d{3}"):\r
- print s\r
- """\r
- invReGenerator = GroupEmitter(parser().parseString(regex)).makeGenerator()\r
- return invReGenerator()\r
-\r
-def main():\r
- tests = r"""\r
- [A-EA]\r
- [A-D]*\r
- [A-D]{3}\r
- X[A-C]{3}Y\r
- X[A-C]{3}\(\r
- X\d\r
- foobar\d\d\r
- foobar{2}\r
- foobar{2,9}\r
- fooba[rz]{2}\r
- (foobar){2}\r
- ([01]\d)|(2[0-5])\r
- (?:[01]\d)|(2[0-5])\r
- ([01]\d\d)|(2[0-4]\d)|(25[0-5])\r
- [A-C]{1,2}\r
- [A-C]{0,3}\r
- [A-C]\s[A-C]\s[A-C]\r
- [A-C]\s?[A-C][A-C]\r
- [A-C]\s([A-C][A-C])\r
- [A-C]\s([A-C][A-C])?\r
- [A-C]{2}\d{2}\r
- @|TH[12]\r
- @(@|TH[12])?\r
- @(@|TH[12]|AL[12]|SP[123]|TB(1[0-9]?|20?|[3-9]))?\r
- @(@|TH[12]|AL[12]|SP[123]|TB(1[0-9]?|20?|[3-9])|OH(1[0-9]?|2[0-9]?|30?|[4-9]))?\r
- (([ECMP]|HA|AK)[SD]|HS)T\r
- [A-CV]{2}\r
- A[cglmrstu]|B[aehikr]?|C[adeflmorsu]?|D[bsy]|E[rsu]|F[emr]?|G[ade]|H[efgos]?|I[nr]?|Kr?|L[airu]|M[dgnot]|N[abdeiop]?|Os?|P[abdmortu]?|R[abefghnu]|S[bcegimnr]?|T[abcehilm]|Uu[bhopqst]|U|V|W|Xe|Yb?|Z[nr]\r
- (a|b)|(x|y)\r
- (a|b) (x|y)\r
- [ABCDEFG](?:#|##|b|bb)?(?:maj|min|m|sus|aug|dim)?[0-9]?(?:/[ABCDEFG](?:#|##|b|bb)?)?\r
- (Fri|Mon|S(atur|un)|T(hur|ue)s|Wednes)day\r
- A(pril|ugust)|((Dec|Nov|Sept)em|Octo)ber|(Febr|Jan)uary|Ju(ly|ne)|Ma(rch|y)\r
- """.split('\n')\r
- \r
- for t in tests:\r
- t = t.strip()\r
- if not t: continue\r
- print('-'*50)\r
- print(t)\r
- try:\r
- num = count(invert(t))\r
- print(num)\r
- maxprint = 30\r
- for s in invert(t):\r
- print(s)\r
- maxprint -= 1\r
- if not maxprint:\r
- break\r
- except ParseFatalException as pfe:\r
- print(pfe.msg)\r
- print('')\r
- continue\r
- print('')\r
-\r
-if __name__ == "__main__":\r
- main()\r
+++ /dev/null
-# jsonParser.py\r
-#\r
-# Implementation of a simple JSON parser, returning a hierarchical\r
-# ParseResults object support both list- and dict-style data access.\r
-#\r
-# Copyright 2006, by Paul McGuire\r
-#\r
-# Updated 8 Jan 2007 - fixed dict grouping bug, and made elements and\r
-# members optional in array and object collections\r
-#\r
-# Updated 9 Aug 2016 - use more current pyparsing constructs/idioms\r
-#\r
-json_bnf = """\r
-object \r
- { members } \r
- {} \r
-members \r
- string : value \r
- members , string : value \r
-array \r
- [ elements ]\r
- [] \r
-elements \r
- value \r
- elements , value \r
-value \r
- string\r
- number\r
- object\r
- array\r
- true\r
- false\r
- null\r
-"""\r
-\r
-from pyparsing import *\r
-\r
-def make_keyword(kwd_str, kwd_value):\r
- return Keyword(kwd_str).setParseAction(replaceWith(kwd_value))\r
-TRUE = make_keyword("true", True)\r
-FALSE = make_keyword("false", False)\r
-NULL = make_keyword("null", None)\r
-\r
-LBRACK, RBRACK, LBRACE, RBRACE, COLON = map(Suppress, "[]{}:")\r
-\r
-jsonString = dblQuotedString().setParseAction(removeQuotes)\r
-jsonNumber = pyparsing_common.number()\r
-\r
-jsonObject = Forward()\r
-jsonValue = Forward()\r
-jsonElements = delimitedList( jsonValue )\r
-jsonArray = Group(LBRACK + Optional(jsonElements, []) + RBRACK)\r
-jsonValue << (jsonString | jsonNumber | Group(jsonObject) | jsonArray | TRUE | FALSE | NULL)\r
-memberDef = Group(jsonString + COLON + jsonValue)\r
-jsonMembers = delimitedList(memberDef)\r
-jsonObject << Dict(LBRACE + Optional(jsonMembers) + RBRACE)\r
-\r
-jsonComment = cppStyleComment \r
-jsonObject.ignore(jsonComment)\r
-\r
- \r
-if __name__ == "__main__":\r
- testdata = """\r
- {\r
- "glossary": {\r
- "title": "example glossary",\r
- "GlossDiv": {\r
- "title": "S",\r
- "GlossList": \r
- {\r
- "ID": "SGML",\r
- "SortAs": "SGML",\r
- "GlossTerm": "Standard Generalized Markup Language",\r
- "TrueValue": true,\r
- "FalseValue": false,\r
- "Gravity": -9.8,\r
- "LargestPrimeLessThan100": 97,\r
- "AvogadroNumber": 6.02E23,\r
- "EvenPrimesGreaterThan2": null,\r
- "PrimesLessThan10" : [2,3,5,7],\r
- "Acronym": "SGML",\r
- "Abbrev": "ISO 8879:1986",\r
- "GlossDef": "A meta-markup language, used to create markup languages such as DocBook.",\r
- "GlossSeeAlso": ["GML", "XML", "markup"],\r
- "EmptyDict" : {},\r
- "EmptyList" : []\r
- }\r
- }\r
- }\r
- }\r
- """\r
-\r
- import pprint\r
- results = jsonObject.parseString(testdata)\r
- pprint.pprint( results.asList() )\r
- print()\r
- def testPrint(x):\r
- print(type(x),repr(x))\r
- print(list(results.glossary.GlossDiv.GlossList.keys()))\r
- testPrint( results.glossary.title )\r
- testPrint( results.glossary.GlossDiv.GlossList.ID )\r
- testPrint( results.glossary.GlossDiv.GlossList.FalseValue )\r
- testPrint( results.glossary.GlossDiv.GlossList.Acronym )\r
- testPrint( results.glossary.GlossDiv.GlossList.EvenPrimesGreaterThan2 )\r
- testPrint( results.glossary.GlossDiv.GlossList.PrimesLessThan10 )\r
-\r
-\r
+++ /dev/null
-#\r
-# linenoExample.py\r
-#\r
-# an example of using the location value returned by pyparsing to\r
-# extract the line and column number of the location of the matched text,\r
-# or to extract the entire line of text.\r
-#\r
-# Copyright (c) 2006, Paul McGuire\r
-#\r
-from pyparsing import *\r
-\r
-data = """Now is the time\r
-for all good men\r
-to come to the aid\r
-of their country."""\r
-\r
-# demonstrate use of lineno, line, and col in a parse action\r
-def reportLongWords(st,locn,toks):\r
- word = toks[0]\r
- if len(word) > 3:\r
- print("Found '%s' on line %d at column %d" % (word, lineno(locn,st), col(locn,st)))\r
- print("The full line of text was:")\r
- print("'%s'" % line(locn,st))\r
- print((" "*col(locn,st))+" ^")\r
- print() \r
- \r
-wd = Word(alphas).setParseAction( reportLongWords )\r
-OneOrMore(wd).parseString(data)\r
-\r
-\r
-# demonstrate returning an object from a parse action, containing more information\r
-# than just the matching token text\r
-class Token(object):\r
- def __init__(self, st, locn, tokString):\r
- self.tokenString = tokString\r
- self.locn = locn\r
- self.sourceLine = line(locn,st)\r
- self.lineNo = lineno(locn,st)\r
- self.col = col(locn,st)\r
- def __str__(self):\r
- return "%(tokenString)s (line: %(lineNo)d, col: %(col)d)" % self.__dict__\r
- \r
-def createTokenObject(st,locn,toks):\r
- return Token(st,locn, toks[0])\r
-\r
-wd = Word(alphas).setParseAction( createTokenObject )\r
-\r
-for tokenObj in OneOrMore(wd).parseString(data):\r
- print(tokenObj)\r
+++ /dev/null
-#\r
-# list1.py\r
-#\r
-# an example of using parse actions to convert type of parsed data.\r
-#\r
-# Copyright (c) 2006-2016, Paul McGuire\r
-#\r
-from pyparsing import *\r
-\r
-# first pass\r
-lbrack = Literal("[")\r
-rbrack = Literal("]")\r
-integer = Word(nums).setName("integer")\r
-real = Combine(Optional(oneOf("+ -")) + Word(nums) + "." +\r
- Optional(Word(nums))).setName("real")\r
-\r
-listItem = real | integer | quotedString\r
-\r
-listStr = lbrack + delimitedList(listItem) + rbrack\r
-\r
-test = "['a', 100, 3.14]"\r
-\r
-print(listStr.parseString(test))\r
-\r
-\r
-# second pass, cleanup and add converters\r
-lbrack = Literal("[").suppress()\r
-rbrack = Literal("]").suppress()\r
-cvtInt = lambda s,l,toks: int(toks[0])\r
-cvtReal = lambda s,l,toks: float(toks[0])\r
-integer = Word(nums).setName("integer").setParseAction( cvtInt )\r
-real = Combine(Optional(oneOf("+ -")) + Word(nums) + "." +\r
- Optional(Word(nums))).setName("real").setParseAction( cvtReal )\r
-listItem = real | integer | quotedString.setParseAction( removeQuotes )\r
-\r
-listStr = lbrack + delimitedList(listItem) + rbrack\r
-\r
-test = "['a', 100, 3.14]"\r
-\r
-print(listStr.parseString(test))\r
-\r
-# third pass, add nested list support\r
-lbrack, rbrack = map(Suppress, "[]")\r
-\r
-cvtInt = tokenMap(int)\r
-cvtReal = tokenMap(float)\r
-\r
-integer = Word(nums).setName("integer").setParseAction( cvtInt )\r
-real = Regex(r"[+-]?\d+\.\d*").setName("real").setParseAction( cvtReal )\r
-\r
-listStr = Forward()\r
-listItem = real | integer | quotedString.setParseAction(removeQuotes) | Group(listStr)\r
-listStr << lbrack + delimitedList(listItem) + rbrack\r
-\r
-test = "['a', 100, 3.14, [ +2.718, 'xyzzy', -1.414] ]"\r
-print(listStr.parseString(test))
\ No newline at end of file
+++ /dev/null
-# listAllMatches.py\r
-#\r
-# Sample program showing how/when to use listAllMatches to get all matching tokens in a results name.\r
-#\r
-# copyright 2006, Paul McGuire\r
-#\r
-\r
-from pyparsing import oneOf, OneOrMore, printables, StringEnd\r
-\r
-test = "The quick brown fox named 'Aloysius' lives at 123 Main Street (and jumps over lazy dogs in his spare time)."\r
-nonAlphas = [ c for c in printables if not c.isalpha() ]\r
-\r
-print("Extract vowels, consonants, and special characters from this test string:")\r
-print("'" + test + "'")\r
-print('')\r
-\r
-print("Define grammar using normal results names")\r
-print("(only last matching symbol is saved)")\r
-vowels = oneOf(list("aeiouy"), caseless=True)("vowels")\r
-cons = oneOf(list("bcdfghjklmnpqrstvwxz"), caseless=True)("cons")\r
-other = oneOf(nonAlphas)("others")\r
-letters = OneOrMore(cons | vowels | other) + StringEnd()\r
-\r
-results = letters.parseString(test)\r
-print(results)\r
-print(results.vowels)\r
-print(results.cons)\r
-print(results.others)\r
-print('')\r
-\r
-\r
-print("Define grammar using results names, with listAllMatches=True")\r
-print("(all matching symbols are saved)")\r
-vowels = oneOf(list("aeiouy"), caseless=True)("vowels*")\r
-cons = oneOf(list("bcdfghjklmnpqrstvwxz"), caseless=True)("cons*")\r
-other = oneOf(nonAlphas)("others*")\r
-\r
-letters = OneOrMore(cons | vowels | other)\r
-\r
-results = letters.parseString(test, parseAll=True)\r
-print(results)\r
-print(sorted(set(results)))\r
-print('')\r
-print(results.vowels)\r
-print(sorted(set(results.vowels)))\r
-print('')\r
-print(results.cons)\r
-print(sorted(set(results.cons)))\r
-print('')\r
-print(results.others)\r
-print(sorted(set(results.others)))\r
-\r
+++ /dev/null
-#\r
-# lucene_grammar.py\r
-#\r
-# Copyright 2011, Paul McGuire\r
-#\r
-# implementation of Lucene grammar, as decribed\r
-# at http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/docs/queryparsersyntax.html\r
-#\r
-\r
-from pyparsing import (Literal, CaselessKeyword, Forward, Regex, QuotedString, Suppress,\r
- Optional, Group, FollowedBy, infixNotation, opAssoc, ParseException, ParserElement,\r
- pyparsing_common)\r
-ParserElement.enablePackrat()\r
-\r
-COLON,LBRACK,RBRACK,LBRACE,RBRACE,TILDE,CARAT = map(Literal,":[]{}~^")\r
-LPAR,RPAR = map(Suppress,"()")\r
-and_, or_, not_, to_ = map(CaselessKeyword, "AND OR NOT TO".split())\r
-keyword = and_ | or_ | not_ | to_\r
-\r
-expression = Forward()\r
-\r
-valid_word = Regex(r'([a-zA-Z0-9*_+.-]|\\[!(){}\[\]^"~*?\\:])+').setName("word")\r
-valid_word.setParseAction(\r
- lambda t : t[0].replace('\\\\',chr(127)).replace('\\','').replace(chr(127),'\\')\r
- )\r
-\r
-string = QuotedString('"')\r
-\r
-required_modifier = Literal("+")("required")\r
-prohibit_modifier = Literal("-")("prohibit")\r
-integer = Regex(r"\d+").setParseAction(lambda t:int(t[0]))\r
-proximity_modifier = Group(TILDE + integer("proximity"))\r
-number = pyparsing_common.fnumber()\r
-fuzzy_modifier = TILDE + Optional(number, default=0.5)("fuzzy")\r
-\r
-term = Forward()\r
-field_name = valid_word().setName("fieldname")\r
-incl_range_search = Group(LBRACK + term("lower") + to_ + term("upper") + RBRACK)\r
-excl_range_search = Group(LBRACE + term("lower") + to_ + term("upper") + RBRACE)\r
-range_search = incl_range_search("incl_range") | excl_range_search("excl_range")\r
-boost = (CARAT + number("boost"))\r
-\r
-string_expr = Group(string + proximity_modifier) | string\r
-word_expr = Group(valid_word + fuzzy_modifier) | valid_word\r
-term << (Optional(field_name("field") + COLON) + \r
- (word_expr | string_expr | range_search | Group(LPAR + expression + RPAR)) +\r
- Optional(boost))\r
-term.setParseAction(lambda t:[t] if 'field' in t or 'boost' in t else None)\r
- \r
-expression << infixNotation(term,\r
- [\r
- (required_modifier | prohibit_modifier, 1, opAssoc.RIGHT),\r
- ((not_ | '!').setParseAction(lambda: "NOT"), 1, opAssoc.RIGHT),\r
- ((and_ | '&&').setParseAction(lambda: "AND"), 2, opAssoc.LEFT),\r
- (Optional(or_ | '||').setParseAction(lambda: "OR"), 2, opAssoc.LEFT),\r
- ])\r
-\r
-# test strings taken from grammar description doc, and TestQueryParser.java\r
-tests = r"""\r
- a and b\r
- a and not b\r
- a and !b\r
- a && !b\r
- a&&!b\r
- name:a\r
- name:a and not title:b\r
- (a^100 c d f) and !z\r
- name:"blah de blah"\r
- title:(+return +"pink panther")\r
- title:"The Right Way" AND text:go\r
- title:"Do it right" AND right\r
- title:Do it right\r
- roam~\r
- roam~0.8\r
- "jakarta apache"~10\r
- mod_date:[20020101 TO 20030101]\r
- title:{Aida TO Carmen}\r
- jakarta apache\r
- jakarta^4 apache\r
- "jakarta apache"^4 "Apache Lucene"\r
- "jakarta apache" jakarta\r
- "jakarta apache" OR jakarta\r
- "jakarta apache" AND "Apache Lucene"\r
- +jakarta lucene\r
- "jakarta apache" NOT "Apache Lucene"\r
- "jakarta apache" -"Apache Lucene"\r
- (jakarta OR apache) AND website\r
- \(1+1\)\:2\r
- c\:\\windows\r
- (fieldX:xxxxx OR fieldy:xxxxxxxx)^2 AND (fieldx:the OR fieldy:foo)\r
- (fieldX:xxxxx fieldy:xxxxxxxx)^2 AND (fieldx:the fieldy:foo)\r
- (fieldX:xxxxx~0.5 fieldy:xxxxxxxx)^2 AND (fieldx:the fieldy:foo)\r
- +term -term term\r
- foo:term AND field:anotherTerm\r
- germ term^2.0\r
- (term)^2.0\r
- (foo OR bar) AND (baz OR boo)\r
- +(apple \"steve jobs\") -(foo bar baz)\r
- +title:(dog OR cat) -author:\"bob dole\"\r
- a AND b\r
- +a +b\r
- (a AND b)\r
- c OR (a AND b)\r
- c (+a +b)\r
- a AND NOT b\r
- +a -b\r
- a AND -b\r
- a AND !b\r
- a && b\r
- a && ! b\r
- a OR b\r
- a b\r
- a || b\r
- a OR !b\r
- a -b\r
- a OR ! b\r
- a OR -b\r
- a - b\r
- a + b\r
- a ! b\r
- +foo:term +anotherterm\r
- hello\r
- term^2.0\r
- (germ term)^2.0\r
- term^2\r
- +(foo bar) +(baz boo)\r
- ((a OR b) AND NOT c) OR d\r
- (+(a b) -c) d\r
- field\r
- a&&b\r
- .NET\r
- term\r
- germ\r
- 3\r
- term 1.0 1 2\r
- term term1 term2\r
- term term term\r
- term*\r
- term*^2\r
- term*^2.0\r
- term~\r
- term~2.0\r
- term~0.7\r
- term~^3\r
- term~2.0^3.0\r
- term*germ\r
- term*germ^3\r
- term*germ^3.0\r
- term~1.1\r
- [A TO C]\r
- t*erm*\r
- *term*\r
- term term^3.0 term\r
- term stop^3.0 term\r
- term +stop term\r
- term -stop term\r
- drop AND (stop) AND roll\r
- +drop +roll\r
- term +(stop) term\r
- term -(stop) term\r
- drop AND stop AND roll\r
- term phrase term\r
- term (phrase1 phrase2) term\r
- term AND NOT phrase term\r
- +term -(phrase1 phrase2) term\r
- stop^3\r
- stop\r
- (stop)^3\r
- ((stop))^3\r
- (stop^3)\r
- ((stop)^3)\r
- (stop)\r
- ((stop))\r
- term +stop\r
- [ a TO z]\r
- [a TO z]\r
- [ a TO z ]\r
- { a TO z}\r
- {a TO z}\r
- { a TO z }\r
- { a TO z }^2.0\r
- {a TO z}^2.0\r
- [ a TO z] OR bar\r
- [a TO z] bar\r
- [ a TO z] AND bar\r
- +[a TO z] +bar\r
- ( bar blar { a TO z})\r
- bar blar {a TO z}\r
- gack ( bar blar { a TO z})\r
- gack (bar blar {a TO z})\r
- [* TO Z]\r
- [* TO z]\r
- [A TO *]\r
- [a TO *]\r
- [* TO *]\r
- [\* TO \*]\r
- \!blah\r
- \:blah\r
- blah\r
- \~blah\r
- \*blah\r
- a\r
- a-b:c\r
- a+b:c\r
- a\:b:c\r
- a\\b:c\r
- a:b-c\r
- a:b+c\r
- a:b\:c\r
- a:b\\c\r
- a:b-c*\r
- a:b+c*\r
- a:b\:c*\r
- a:b\\c*\r
- a:b-c~2.0\r
- a:b+c~2.0\r
- a:b\:c~\r
- a:b\\c~\r
- [a- TO a+]\r
- [ a\\ TO a\* ]\r
- c\:\\temp\\\~foo.txt\r
- abc\r
- XYZ\r
- (item:\\ item:ABCD\\)\r
- \*\r
- *\r
- \\\r
- a\:b\:c\r
- a\\b\:c\r
- a\:b\\c\r
- a\:b\:c\*\r
- a\:b\\\\c\*\r
- a:b-c~\r
- a:b+c~\r
- a\:b\:c\~\r
- a\:b\\c\~\r
- +weltbank +worlbank\r
- +term +term +term\r
- term +term term\r
- term term +term\r
- term +term +term\r
- -term term term\r
- -term +term +term\r
- on\r
- on^1.0\r
- hello^2.0\r
- the^3\r
- the\r
- some phrase\r
- xunit~\r
- one two three\r
- A AND B OR C AND D\r
- +A +B +C +D\r
- foo:zoo*\r
- foo:zoo*^2\r
- zoo\r
- foo:*\r
- foo:*^2\r
- *:foo\r
- a:the OR a:foo\r
- a:woo OR a:the\r
- *:*\r
- (*:*)\r
- +*:* -*:*\r
- the wizard of ozzy\r
- """\r
-\r
-failtests = r"""\r
- field:term:with:colon some more terms\r
- (sub query)^5.0^2.0 plus more\r
- a:b:c\r
- a:b:c~\r
- a:b:c*\r
- a:b:c~2.0\r
- \+blah\r
- \-blah\r
- foo \|| bar\r
- foo \AND bar\r
- \a\r
- a\-b:c\r
- a\+b:c\r
- a\b:c\r
- a:b\-c\r
- a:b\+c\r
- a\-b\:c\r
- a\+b\:c\r
- a:b\c*\r
- a:b\-c~\r
- a:b\+c~\r
- a:b\c\r
- a:b\-c*\r
- a:b\+c*\r
- [ a\- TO a\+ ]\r
- [a\ TO a*]\r
- a\\\+b\r
- a\+b\r
- c:\temp\~foo.txt\r
- XY\\r
- a\u0062c\r
- a:b\c~2.0\r
- XY\u005a\r
- XY\u005A\r
- item:\ item:ABCD\\r
- \\r
- a\ or b \r
- a\:b\-c\r
- a\:b\+c\r
- a\:b\-c\*\r
- a\:b\+c\*\r
- a\:b\-c\~\r
- a\:b\+c\~\r
- a:b\c~\r
- [ a\ TO a* ]\r
- """\r
-\r
-success1, _ = expression.runTests(tests)\r
-success2, _ = expression.runTests(failtests, failureTests=True)\r
- \r
-print(("FAIL", "OK")[success1 and success2])\r
+++ /dev/null
-# macroExpander.py\r
-#\r
-# Example pyparsing program for performing macro expansion, similar to \r
-# the C pre-processor. This program is not as fully-featured, simply\r
-# processing macros of the form:\r
-# #def xxx yyyyy\r
-# and replacing xxx with yyyyy in the rest of the input string. Macros\r
-# can also be composed using other macros, such as\r
-# #def zzz xxx+1\r
-# Since xxx was previously defined as yyyyy, then zzz will be replaced\r
-# with yyyyy+1.\r
-#\r
-# Copyright 2007 by Paul McGuire\r
-#\r
-from pyparsing import *\r
-\r
-# define the structure of a macro definition (the empty term is used \r
-# to advance to the next non-whitespace character)\r
-identifier = Word(alphas+"_",alphanums+"_")\r
-macroDef = "#def" + identifier("macro") + empty + restOfLine("value")\r
- \r
-# define a placeholder for defined macros - initially nothing\r
-macroExpr = Forward()\r
-macroExpr << NoMatch()\r
-\r
-# global dictionary for macro definitions\r
-macros = {}\r
-\r
-# parse action for macro definitions\r
-def processMacroDefn(s,l,t):\r
- macroVal = macroExpander.transformString(t.value)\r
- macros[t.macro] = macroVal\r
- macroExpr << MatchFirst(map(Keyword, macros.keys()))\r
- return "#def " + t.macro + " " + macroVal\r
-\r
-# parse action to replace macro references with their respective definition\r
-def processMacroRef(s,l,t):\r
- return macros[t[0]]\r
-\r
-# attach parse actions to expressions\r
-macroExpr.setParseAction(processMacroRef)\r
-macroDef.setParseAction(processMacroDefn)\r
-\r
-# define pattern for scanning through the input string\r
-macroExpander = macroExpr | macroDef\r
-\r
-\r
-\r
-# test macro substitution using transformString\r
-testString = """\r
- #def A 100\r
- #def ALEN A+1\r
-\r
- char Astring[ALEN];\r
- char AA[A];\r
- typedef char[ALEN] Acharbuf;\r
- """\r
-\r
-print(macroExpander.transformString(testString))\r
-print(macros)\r
+++ /dev/null
-import urllib.request, urllib.parse, urllib.error\r
-\r
-from pyparsing import makeHTMLTags, SkipTo\r
-\r
-# read HTML from a web page\r
-serverListPage = urllib.request.urlopen( "http://www.yahoo.com" )\r
-htmlText = serverListPage.read()\r
-serverListPage.close()\r
-\r
-# using makeHTMLTags to define opening and closing tags\r
-anchorStart,anchorEnd = makeHTMLTags("a")\r
-\r
-# compose an expression for an anchored reference\r
-anchor = anchorStart + SkipTo(anchorEnd)("body") + anchorEnd\r
-\r
-# use scanString to scan through the HTML source, extracting\r
-# just the anchor tags and their associated body text\r
-# (note the href attribute of the opening A tag is available\r
-# as an attribute in the returned parse results)\r
-for tokens,start,end in anchor.scanString(htmlText):\r
- print(tokens.body,'->',tokens.href)\r
+++ /dev/null
-#\r
-# matchPreviousDemo.py\r
-#\r
-\r
-from pyparsing import *\r
-\r
-src = """\r
-class a\r
-...\r
-end a;\r
- \r
-class b\r
-...\r
-end b;\r
- \r
-class c\r
-...\r
-end d;"""\r
-\r
-\r
-identifier = Word(alphas)\r
-\r
-classIdent = identifier("classname") # note that this also makes a copy of identifier \r
-classHead = "class" + classIdent\r
-classBody = "..."\r
-classEnd = "end" + matchPreviousLiteral(classIdent) + ';'\r
-classDefn = classHead + classBody + classEnd\r
-\r
-# use this form to catch syntax error\r
-# classDefn = classHead + classBody - classEnd\r
-\r
-for tokens in classDefn.searchString(src):\r
- print(tokens.classname)
\ No newline at end of file
+++ /dev/null
-BEGIN:VCALENDAR\r
-VERSION\r
- :2.0\r
-PRODID\r
- :-//Mozilla.org/NONSGML Mozilla Calendar V1.0//EN\r
-METHOD\r
- :PUBLISH\r
-BEGIN:VEVENT\r
-UID\r
- :153ed0e0-1dd2-11b2-9d71-96da104537a4\r
-SUMMARY\r
- :Test event\r
-DESCRIPTION\r
- :Some notes\r
-LOCATION\r
- :Somewhere over the rainbow\r
-CATEGORIES\r
- :Personal\r
-URL\r
- :http://personal.amec.fi\r
-STATUS\r
- :CONFIRMED\r
-CLASS\r
- :PRIVATE\r
-X\r
- ;MEMBER=AlarmEmailAddress\r
- :petri.savolainen@iki.fi\r
-X-MOZILLA-RECUR-DEFAULT-UNITS\r
- :months\r
-RRULE\r
- :FREQ=MONTHLY;UNTIL=20040914;INTERVAL=1\r
-EXDATE\r
- :20040714T000000\r
-DTSTART\r
- ;VALUE=DATE\r
- :20040714\r
-DTEND\r
- ;VALUE=DATE\r
- :20040815\r
-DTSTAMP\r
- :20040714T141219Z\r
-LAST-MODIFIED\r
- :20040714T141457Z\r
-BEGIN:VALARM\r
-TRIGGER\r
- ;VALUE=DURATION\r
- :PT15M\r
-END:VALARM\r
-END:VEVENT\r
-END:VCALENDAR\r
+++ /dev/null
-from pyparsing import Optional, oneOf, Dict, Literal, Word, printables, Group, OneOrMore, ZeroOrMore
-
-"""
-A simple parser for calendar (*.ics) files,
-as exported by the Mozilla calendar.
-
-Any suggestions and comments welcome.
-
-Version: 0.1
-Copyright: Petri Savolainen <firstname.lastname@iki.fi>
-License: Free for any use
-"""
-
-
-# TERMINALS
-
-BEGIN = Literal("BEGIN:").suppress()
-END = Literal("END:").suppress()
-valstr = printables + "\xe4\xf6\xe5\xd6\xc4\xc5 "
-
-EQ = Literal("=").suppress()
-SEMI = Literal(";").suppress()
-COLON = Literal(":").suppress()
-
-EVENT = Literal("VEVENT").suppress()
-CALENDAR = Literal("VCALENDAR").suppress()
-ALARM = Literal("VALARM").suppress()
-
-# TOKENS
-
-CALPROP = oneOf("VERSION PRODID METHOD")
-ALMPROP = oneOf("TRIGGER")
-EVTPROP = oneOf("X-MOZILLA-RECUR-DEFAULT-INTERVAL \
- X-MOZILLA-RECUR-DEFAULT-UNITS \
- UID DTSTAMP LAST-MODIFIED X RRULE EXDATE")
-
-propval = Word(valstr)
-typeval = Word(valstr)
-typename = oneOf("VALUE MEMBER FREQ UNTIL INTERVAL")
-
-proptype = Group(SEMI + typename + EQ + typeval).suppress()
-
-calprop = Group(CALPROP + ZeroOrMore(proptype) + COLON + propval)
-almprop = Group(ALMPROP + ZeroOrMore(proptype) + COLON + propval)
-evtprop = Group(EVTPROP + ZeroOrMore(proptype) + COLON + propval).suppress() \
- | "CATEGORIES" + COLON + propval.setResultsName("categories") \
- | "CLASS" + COLON + propval.setResultsName("class") \
- | "DESCRIPTION" + COLON + propval.setResultsName("description") \
- | "DTSTART" + proptype + COLON + propval.setResultsName("begin") \
- | "DTEND" + proptype + COLON + propval.setResultsName("end") \
- | "LOCATION" + COLON + propval.setResultsName("location") \
- | "PRIORITY" + COLON + propval.setResultsName("priority") \
- | "STATUS" + COLON + propval.setResultsName("status") \
- | "SUMMARY" + COLON + propval.setResultsName("summary") \
- | "URL" + COLON + propval.setResultsName("url") \
-
-calprops = Group(OneOrMore(calprop)).suppress()
-evtprops = Group(OneOrMore(evtprop))
-almprops = Group(OneOrMore(almprop)).suppress()
-
-alarm = BEGIN + ALARM + almprops + END + ALARM
-event = BEGIN + EVENT + evtprops + Optional(alarm) + END + EVENT
-events = Group(OneOrMore(event))
-calendar = BEGIN + CALENDAR + calprops + ZeroOrMore(event) + END + CALENDAR
-calendars = OneOrMore(calendar)
-
-
-# PARSE ACTIONS
-
-def gotEvent(s,loc,toks):
- for event in toks:
- print(event.dump())
-
-event.setParseAction(gotEvent)
-
-
-# MAIN PROGRAM
-
-if __name__=="__main__":
-
- calendars.parseFile("mozilla.ics")
+++ /dev/null
-#\r
-# nested.py\r
-# Copyright, 2007 - Paul McGuire\r
-#\r
-# Simple example of using nestedExpr to define expressions using\r
-# paired delimiters for grouping lists and sublists\r
-#\r
-\r
-from pyparsing import *\r
-import pprint\r
-\r
-data = """\r
-{ \r
- { item1 "item with } in it" } \r
- { \r
- {item2a item2b } \r
- {item3} \r
- } \r
-\r
-}\r
-"""\r
-\r
-# use {}'s for nested lists\r
-nestedItems = nestedExpr("{", "}")\r
-print(( (nestedItems+stringEnd).parseString(data).asList() ))\r
-\r
-# use default delimiters of ()'s\r
-mathExpr = nestedExpr()\r
-print(( mathExpr.parseString( "((( ax + by)*C) *(Z | (E^F) & D))") ))\r
-\r
+++ /dev/null
-#\r
-# numerics.py\r
-#\r
-# Examples of parsing real and integers using various grouping and\r
-# decimal point characters, varying by locale.\r
-#\r
-# Copyright 2016, Paul McGuire\r
-#\r
-# Format samples from https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html\r
-#\r
-tests = """\\r
-# Canadian (English and French) \r
-4 294 967 295,000 \r
-\r
-# Danish \r
-4 294 967 295,000 \r
-\r
-# Finnish \r
-4 294 967 295,000 \r
-\r
-# French \r
-4 294 967 295,000 \r
-\r
-# German \r
-4 294 967 295,000 \r
-\r
-# Italian \r
-4.294.967.295,000 \r
-\r
-# Norwegian \r
-4.294.967.295,000 \r
-\r
-# Spanish \r
-4.294.967.295,000 \r
-\r
-# Swedish \r
-4 294 967 295,000 \r
-\r
-# GB-English \r
-4,294,967,295.000 \r
-\r
-# US-English \r
-4,294,967,295.000 \r
-\r
-# Thai \r
-4,294,967,295.000 \r
-"""\r
-\r
-from pyparsing import Regex\r
-\r
-comma_decimal = Regex(r'\d{1,2}(([ .])\d\d\d(\2\d\d\d)*)?,\d*')\r
-comma_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace('.','').replace(',','.')))\r
-\r
-dot_decimal = Regex(r'\d{1,2}(([ ,])\d\d\d(\2\d\d\d)*)?\.\d*')\r
-dot_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace(',','')))\r
-\r
-decimal = comma_decimal ^ dot_decimal\r
-decimal.runTests(tests, parseAll=True)\r
-\r
-grouped_integer = Regex(r'\d{1,2}(([ .,])\d\d\d(\2\d\d\d)*)?')\r
-grouped_integer.setParseAction(lambda t: int(t[0].replace(' ','').replace(',','').replace('.','')))\r
-grouped_integer.runTests(tests, parseAll=False)\r
+++ /dev/null
-# oc.py\r
-#\r
-# A subset-C parser, (BNF taken from 1996 International Obfuscated C Code Contest)\r
-#\r
-# Copyright, 2010, Paul McGuire\r
-#\r
-"""\r
-http://www.ioccc.org/1996/august.hint\r
-\r
-The following is a description of the OC grammar:\r
-\r
- OC grammar\r
- ==========\r
- Terminals are in quotes, () is used for bracketing.\r
-\r
- program: decl*\r
-\r
- decl: vardecl\r
- fundecl\r
-\r
- vardecl: type NAME ;\r
- type NAME "[" INT "]" ;\r
-\r
- fundecl: type NAME "(" args ")" "{" body "}"\r
-\r
- args: /*empty*/\r
- ( arg "," )* arg\r
-\r
- arg: type NAME\r
-\r
- body: vardecl* stmt*\r
-\r
- stmt: ifstmt\r
- whilestmt\r
- dowhilestmt\r
- "return" expr ";"\r
- expr ";"\r
- "{" stmt* "}"\r
- ";"\r
-\r
- ifstmt: "if" "(" expr ")" stmt\r
- "if" "(" expr ")" stmt "else" stmt\r
-\r
- whilestmt: "while" "(" expr ")" stmt\r
-\r
- dowhilestmt: "do" stmt "while" "(" expr ")" ";"\r
-\r
- expr: expr binop expr\r
- unop expr\r
- expr "[" expr "]"\r
- "(" expr ")"\r
- expr "(" exprs ")"\r
- NAME\r
- INT\r
- CHAR\r
- STRING\r
-\r
- exprs: /*empty*/\r
- (expr ",")* expr\r
-\r
- binop: "+" | "-" | "*" | "/" | "%" |\r
- "=" |\r
- "<" | "==" | "!="\r
-\r
- unop: "!" | "-" | "*"\r
-\r
- type: "int" stars\r
- "char" stars\r
-\r
- stars: "*"*\r
-"""\r
-\r
-from pyparsing import *\r
-\r
-LPAR,RPAR,LBRACK,RBRACK,LBRACE,RBRACE,SEMI,COMMA = map(Suppress, "()[]{};,")\r
-INT, CHAR, WHILE, DO, IF, ELSE, RETURN = map(Keyword, \r
- "int char while do if else return".split())\r
-\r
-NAME = Word(alphas+"_", alphanums+"_")\r
-integer = Regex(r"[+-]?\d+")\r
-char = Regex(r"'.'")\r
-string_ = dblQuotedString\r
-\r
-TYPE = Group((INT | CHAR) + ZeroOrMore("*"))\r
-\r
-expr = Forward()\r
-operand = NAME | integer | char | string_\r
-expr << (infixNotation(operand, \r
- [\r
- (oneOf('! - *'), 1, opAssoc.RIGHT),\r
- (oneOf('++ --'), 1, opAssoc.RIGHT),\r
- (oneOf('++ --'), 1, opAssoc.LEFT),\r
- (oneOf('* / %'), 2, opAssoc.LEFT),\r
- (oneOf('+ -'), 2, opAssoc.LEFT),\r
- (oneOf('< == > <= >= !='), 2, opAssoc.LEFT),\r
- (Regex(r'=[^=]'), 2, opAssoc.LEFT),\r
- ]) + \r
- Optional( LBRACK + expr + RBRACK | \r
- LPAR + Group(Optional(delimitedList(expr))) + RPAR )\r
- )\r
-\r
-stmt = Forward()\r
-\r
-ifstmt = IF - LPAR + expr + RPAR + stmt + Optional(ELSE + stmt)\r
-whilestmt = WHILE - LPAR + expr + RPAR + stmt\r
-dowhilestmt = DO - stmt + WHILE + LPAR + expr + RPAR + SEMI\r
-returnstmt = RETURN - expr + SEMI\r
-\r
-stmt << Group( ifstmt |\r
- whilestmt |\r
- dowhilestmt |\r
- returnstmt | \r
- expr + SEMI |\r
- LBRACE + ZeroOrMore(stmt) + RBRACE |\r
- SEMI)\r
-\r
-vardecl = Group(TYPE + NAME + Optional(LBRACK + integer + RBRACK)) + SEMI\r
-\r
-arg = Group(TYPE + NAME)\r
-body = ZeroOrMore(vardecl) + ZeroOrMore(stmt)\r
-fundecl = Group(TYPE + NAME + LPAR + Optional(Group(delimitedList(arg))) + RPAR +\r
- LBRACE + Group(body) + RBRACE)\r
-decl = fundecl | vardecl\r
-program = ZeroOrMore(decl)\r
-\r
-program.ignore(cStyleComment)\r
-\r
-# set parser element names\r
-for vname in ("ifstmt whilestmt dowhilestmt returnstmt TYPE "\r
- "NAME fundecl vardecl program arg body stmt".split()):\r
- v = vars()[vname]\r
- v.setName(vname)\r
-\r
-#~ for vname in "fundecl stmt".split():\r
- #~ v = vars()[vname]\r
- #~ v.setDebug()\r
-\r
-test = r"""\r
-/* A factorial program */\r
-int\r
-putstr(char *s)\r
-{\r
- while(*s)\r
- putchar(*s++);\r
-}\r
-\r
-int\r
-fac(int n)\r
-{\r
- if (n == 0)\r
- return 1;\r
- else\r
- return n*fac(n-1);\r
-}\r
-\r
-int\r
-putn(int n)\r
-{\r
- if (9 < n)\r
- putn(n / 10);\r
- putchar((n%10) + '0');\r
-}\r
-\r
-int\r
-facpr(int n)\r
-{\r
- putstr("factorial ");\r
- putn(n);\r
- putstr(" = ");\r
- putn(fac(n));\r
- putstr("\n");\r
-}\r
-\r
-int\r
-main()\r
-{\r
- int i;\r
- i = 0;\r
- while(i < 10)\r
- facpr(i++);\r
- return 0;\r
-}\r
-"""\r
-\r
-ast = program.parseString(test, parseAll=True)\r
-ast.pprint()\r
+++ /dev/null
-# parseListString.py\r
-#\r
-# Copyright, 2006, by Paul McGuire\r
-#\r
-\r
-from pyparsing import *\r
-\r
-# first pass\r
-lbrack = Literal("[")\r
-rbrack = Literal("]")\r
-integer = Word(nums).setName("integer")\r
-real = Combine(Optional(oneOf("+ -")) + Word(nums) + "." +\r
- Optional(Word(nums))).setName("real")\r
-\r
-listItem = real | integer | quotedString\r
-\r
-listStr = lbrack + delimitedList(listItem) + rbrack\r
-\r
-test = "['a', 100, 3.14]"\r
-\r
-print(listStr.parseString(test))\r
-\r
-\r
-# second pass, cleanup and add converters\r
-lbrack = Literal("[").suppress()\r
-rbrack = Literal("]").suppress()\r
-cvtInt = lambda s,l,toks: int(toks[0])\r
-integer = Word(nums).setName("integer").setParseAction( cvtInt )\r
-cvtReal = lambda s,l,toks: float(toks[0])\r
-real = Regex(r'[+-]?\d+\.\d*').setName("floating-point number").setParseAction( cvtReal )\r
-listItem = real | integer | quotedString.setParseAction( removeQuotes )\r
-\r
-listStr = lbrack + delimitedList(listItem) + rbrack\r
-\r
-test = "['a', 100, 3.14]"\r
-\r
-print(listStr.parseString(test))\r
-\r
-# third pass, add nested list support, and tuples, too!\r
-cvtInt = lambda s,l,toks: int(toks[0])\r
-cvtReal = lambda s,l,toks: float(toks[0])\r
-\r
-lbrack = Literal("[").suppress()\r
-rbrack = Literal("]").suppress()\r
-integer = Word(nums).setName("integer").setParseAction( cvtInt )\r
-real = Regex(r'[+-]?\d+\.\d*').setName("floating-point number").setParseAction( cvtReal )\r
-tupleStr = Forward()\r
-listStr = Forward()\r
-listItem = real | integer | quotedString.setParseAction(removeQuotes) | Group(listStr) | tupleStr\r
-tupleStr << ( Suppress("(") + delimitedList(listItem) + Optional(Suppress(",")) + Suppress(")") )\r
-tupleStr.setParseAction( lambda t:tuple(t.asList()) )\r
-listStr << lbrack + delimitedList(listItem) + Optional(Suppress(",")) + rbrack\r
-\r
-test = "['a', 100, ('A', [101,102]), 3.14, [ +2.718, 'xyzzy', -1.414] ]"\r
-print(listStr.parseString(test))\r
-\r
-# fourth pass, add parsing of dicts\r
-cvtInt = lambda s,l,toks: int(toks[0])\r
-cvtReal = lambda s,l,toks: float(toks[0])\r
-cvtDict = lambda s,l,toks: dict(toks[0])\r
-\r
-lbrack = Literal("[").suppress()\r
-rbrack = Literal("]").suppress()\r
-lbrace = Literal("{").suppress()\r
-rbrace = Literal("}").suppress()\r
-colon = Literal(":").suppress()\r
-integer = Word(nums).setName("integer").setParseAction( cvtInt )\r
-real = Regex(r'[+-]?\d+\.\d*').setName("real").setParseAction( cvtReal )\r
-\r
-tupleStr = Forward()\r
-listStr = Forward()\r
-dictStr = Forward()\r
-listItem = real | integer | quotedString.setParseAction(removeQuotes) | Group(listStr) | tupleStr | dictStr\r
-tupleStr <<= ( Suppress("(") + delimitedList(listItem) + Optional(Suppress(",")) + Suppress(")") )\r
-tupleStr.setParseAction( lambda t:tuple(t.asList()) )\r
-listStr <<= (lbrack + Optional(delimitedList(listItem)) + Optional(Suppress(",")) + rbrack)\r
-dictKeyStr = real | integer | quotedString.setParseAction(removeQuotes)\r
-dictStr <<= lbrace + Optional(delimitedList( Group( dictKeyStr + colon + listItem ))) + Optional(Suppress(",")) + rbrace\r
-dictStr.setParseAction(lambda t: dict((k_v[0],(k_v[1].asList() if isinstance(k_v[1],ParseResults) else k_v[1])) for k_v in t))\r
-\r
-test = '[{0: [2], 1: []}, {0: [], 1: [], 2: [,]}, {0: [1, 2,],}]'\r
-print(listStr.parseString(test))\r
+++ /dev/null
-# parsePythonValue.py\r
-#\r
-# Copyright, 2006, by Paul McGuire\r
-#\r
-from __future__ import print_function\r
-from pyparsing import *\r
-\r
-\r
-cvtBool = lambda t:t[0]=='True'\r
-cvtInt = lambda toks: int(toks[0])\r
-cvtReal = lambda toks: float(toks[0])\r
-cvtTuple = lambda toks : tuple(toks.asList())\r
-cvtDict = lambda toks: dict(toks.asList())\r
-cvtList = lambda toks: [toks.asList()]\r
-\r
-# define punctuation as suppressed literals\r
-lparen,rparen,lbrack,rbrack,lbrace,rbrace,colon = \\r
- map(Suppress,"()[]{}:")\r
-\r
-integer = Regex(r"[+-]?\d+")\\r
- .setName("integer")\\r
- .setParseAction( cvtInt )\r
-real = Regex(r"[+-]?\d+\.\d*([Ee][+-]?\d+)?")\\r
- .setName("real")\\r
- .setParseAction( cvtReal )\r
-tupleStr = Forward()\r
-listStr = Forward()\r
-dictStr = Forward()\r
-\r
-unicodeString.setParseAction(lambda t:t[0][2:-1].decode('unicode-escape'))\r
-quotedString.setParseAction(lambda t:t[0][1:-1].decode('string-escape'))\r
-boolLiteral = oneOf("True False").setParseAction(cvtBool)\r
-noneLiteral = Literal("None").setParseAction(replaceWith(None))\r
-\r
-listItem = real|integer|quotedString|unicodeString|boolLiteral|noneLiteral| \\r
- Group(listStr) | tupleStr | dictStr\r
-\r
-tupleStr << ( Suppress("(") + Optional(delimitedList(listItem)) + \r
- Optional(Suppress(",")) + Suppress(")") )\r
-tupleStr.setParseAction( cvtTuple )\r
-\r
-listStr << (lbrack + Optional(delimitedList(listItem) + \r
- Optional(Suppress(","))) + rbrack)\r
-listStr.setParseAction(cvtList, lambda t: t[0])\r
-\r
-dictEntry = Group( listItem + colon + listItem )\r
-dictStr << (lbrace + Optional(delimitedList(dictEntry) + \\r
- Optional(Suppress(","))) + rbrace)\r
-dictStr.setParseAction( cvtDict )\r
-\r
-tests = """['a', 100, ('A', [101,102]), 3.14, [ +2.718, 'xyzzy', -1.414] ]\r
- [{0: [2], 1: []}, {0: [], 1: [], 2: []}, {0: [1, 2]}]\r
- { 'A':1, 'B':2, 'C': {'a': 1.2, 'b': 3.4} }\r
- 3.14159\r
- 42\r
- 6.02E23\r
- 6.02e+023\r
- 1.0e-7\r
- 'a quoted string'""".split("\n")\r
-\r
-for test in tests:\r
- print("Test:", test.strip())\r
- result = listItem.parseString(test)[0]\r
- print("Result:", result)\r
- try:\r
- for dd in result:\r
- if isinstance(dd,dict): print(list(dd.items()))\r
- except TypeError as te:\r
- pass\r
- print()\r
+++ /dev/null
-#\r
-# parseResultsSumExample.py\r
-#\r
-# Sample script showing the value in merging ParseResults retrieved by searchString,\r
-# using Python's builtin sum() method\r
-#\r
-samplestr1 = "garbage;DOB 10-10-2010;more garbage\nID PARI12345678;more garbage"\r
-samplestr2 = "garbage;ID PARI12345678;more garbage\nDOB 10-10-2010;more garbage"\r
-samplestr3 = "garbage;DOB 10-10-2010"\r
-samplestr4 = "garbage;ID PARI12345678;more garbage- I am cool"\r
-\r
-from pyparsing import *\r
-dob_ref = "DOB" + Regex(r"\d{2}-\d{2}-\d{4}")("dob")\r
-id_ref = "ID" + Word(alphanums,exact=12)("id")\r
-info_ref = "-" + restOfLine("info")\r
-\r
-person_data = dob_ref | id_ref | info_ref\r
-\r
-for test in (samplestr1,samplestr2,samplestr3,samplestr4,):\r
- person = sum(person_data.searchString(test))\r
- print(person.id)\r
- print(person.dump())\r
- print()\r
-\r
- \r
-
\ No newline at end of file
+++ /dev/null
-#\r
-# parseTabularData.py\r
-#\r
-# Example of parsing data that is formatted in a tabular listing, with\r
-# potential for missing values. Uses new addCondition method on \r
-# ParserElements.\r
-#\r
-# Copyright 2015, Paul McGuire\r
-#\r
-from pyparsing import col,Word,Optional,alphas,nums,ParseException\r
-\r
-table = """\\r
- 1 2\r
-12345678901234567890\r
-COLOR S M L\r
-RED 10 2 2\r
-BLUE 5 10\r
-GREEN 3 5\r
-PURPLE 8"""\r
-\r
-# function to create column-specific parse conditions\r
-def mustMatchCols(startloc,endloc):\r
- return lambda s,l,t: startloc <= col(l,s) <= endloc\r
-\r
-# helper to define values in a space-delimited table\r
-# (change empty_cell_is_zero to True if a value of 0 is desired for empty cells)\r
-def tableValue(expr, colstart, colend):\r
- empty_cell_is_zero = False\r
- if empty_cell_is_zero:\r
- return Optional(expr.copy().addCondition(mustMatchCols(colstart,colend), \r
- message="text not in expected columns"), \r
- default=0)\r
- else:\r
- return Optional(expr.copy().addCondition(mustMatchCols(colstart,colend), \r
- message="text not in expected columns"))\r
-\r
-\r
-# define the grammar for this simple table\r
-colorname = Word(alphas)\r
-integer = Word(nums).setParseAction(lambda t: int(t[0])).setName("integer")\r
-row = (colorname("name") + \r
- tableValue(integer, 11, 12)("S") + \r
- tableValue(integer, 15, 16)("M") + \r
- tableValue(integer, 19, 20)("L"))\r
-\r
-# parse the sample text - skip over the header and counter lines\r
-for line in table.splitlines()[3:]:\r
- print(line)\r
- print(row.parseString(line).dump())\r
- print('')\r
+++ /dev/null
-# parital_gene_match.py\r
-#\r
-# Example showing how to create a customized pyparsing Token, in this case, \r
-# one that is very much like Literal, but which tolerates up to 'n' character\r
-# mismatches\r
-from pyparsing import *\r
-\r
-import urllib.request, urllib.parse, urllib.error\r
-\r
-# read in a bunch of genomic data\r
-datafile = urllib.request.urlopen("http://toxodb.org/common/downloads/release-6.0/Tgondii/TgondiiApicoplastORFsNAs_ToxoDB-6.0.fasta")\r
-fastasrc = datafile.read()\r
-datafile.close()\r
-\r
-""" \r
-Sample header: \r
->NC_001799-6-2978-2778 | organism=Toxoplasma_gondii_RH | location=NC_001799:2778-2978(-) | length=201\r
-""" \r
-integer = Word(nums).setParseAction(lambda t:int(t[0])) \r
-genebit = Group(">" + Word(alphanums.upper()+"-_") + "|" + \r
- Word(printables)("id") + SkipTo("length=", include=True) + \r
- integer("genelen") + LineEnd() + \r
- Combine(OneOrMore(Word("ACGTN")),adjacent=False)("gene")) \r
- \r
-# read gene data from .fasta file - takes just a few seconds\r
-genedata = OneOrMore(genebit).parseString(fastasrc) \r
-\r
-\r
-class CloseMatch(Token): \r
- """A special subclass of Token that does *close* matches. For each\r
- close match of the given string, a tuple is returned giving the\r
- found close match, and a list of mismatch positions."""\r
- def __init__(self, seq, maxMismatches=1): \r
- super(CloseMatch,self).__init__() \r
- self.name = seq \r
- self.sequence = seq \r
- self.maxMismatches = maxMismatches \r
- self.errmsg = "Expected " + self.sequence \r
- self.mayIndexError = False \r
- self.mayReturnEmpty = False \r
- \r
- def parseImpl( self, instring, loc, doActions=True ): \r
- start = loc \r
- instrlen = len(instring) \r
- maxloc = start + len(self.sequence) \r
- \r
- if maxloc <= instrlen: \r
- seq = self.sequence \r
- seqloc = 0 \r
- mismatches = [] \r
- throwException = False \r
- done = False \r
- while loc < maxloc and not done: \r
- if instring[loc] != seq[seqloc]: \r
- mismatches.append(seqloc) \r
- if len(mismatches) > self.maxMismatches: \r
- throwException = True \r
- done = True \r
- loc += 1 \r
- seqloc += 1 \r
- else: \r
- throwException = True \r
- \r
- if throwException: \r
- exc = self.myException \r
- exc.loc = loc \r
- exc.pstr = instring \r
- raise exc \r
- \r
- return loc, (instring[start:loc],mismatches) \r
-\r
-# using the genedata extracted above, look for close matches of a gene sequence\r
-searchseq = CloseMatch("TTAAATCTAGAAGAT", 3)\r
-for g in genedata: \r
- print("%s (%d)" % (g.id, g.genelen)) \r
- print("-"*24) \r
- for t,startLoc,endLoc in searchseq.scanString(g.gene, overlap=True): \r
- matched, mismatches = t[0] \r
- print("MATCH:", searchseq.sequence) \r
- print("FOUND:", matched) \r
- if mismatches: \r
- print(" ", ''.join(' ' if i not in mismatches else '*' \r
- for i,c in enumerate(searchseq.sequence))) \r
- else: \r
- print("<exact match>") \r
- print("at location", startLoc) \r
- print() \r
- print()
\ No newline at end of file
+++ /dev/null
-# pgn.py rel. 1.1 17-sep-2004\r
-#\r
-# Demonstration of the parsing module, implementing a pgn parser.\r
-#\r
-# The aim of this parser is not to support database application,\r
-# but to create automagically a pgn annotated reading the log console file\r
-# of a lecture of ICC (Internet Chess Club), saved by Blitzin.\r
-# Of course you can modify the Abstract Syntax Tree to your purpose.\r
-#\r
-# Copyright 2004, by Alberto Santini http://www.albertosantini.it/chess/\r
-#\r
-from pyparsing import alphanums, nums, quotedString\r
-from pyparsing import Combine, Forward, Group, Literal, oneOf, OneOrMore, Optional, Suppress, ZeroOrMore, White, Word\r
-from pyparsing import ParseException\r
-\r
-#\r
-# define pgn grammar\r
-#\r
-\r
-tag = Suppress("[") + Word(alphanums) + Combine(quotedString) + Suppress("]")\r
-comment = Suppress("{") + Word(alphanums + " ") + Suppress("}")\r
-\r
-dot = Literal(".")\r
-piece = oneOf("K Q B N R")\r
-file_coord = oneOf("a b c d e f g h")\r
-rank_coord = oneOf("1 2 3 4 5 6 7 8")\r
-capture = oneOf("x :")\r
-promote = Literal("=")\r
-castle_queenside = oneOf("O-O-O 0-0-0 o-o-o")\r
-castle_kingside = oneOf("O-O 0-0 o-o")\r
-\r
-move_number = Optional(comment) + Word(nums) + dot\r
-m1 = file_coord + rank_coord # pawn move e.g. d4\r
-m2 = file_coord + capture + file_coord + rank_coord # pawn capture move e.g. dxe5\r
-m3 = file_coord + "8" + promote + piece # pawn promotion e.g. e8=Q\r
-m4 = piece + file_coord + rank_coord # piece move e.g. Be6\r
-m5 = piece + file_coord + file_coord + rank_coord # piece move e.g. Nbd2\r
-m6 = piece + rank_coord + file_coord + rank_coord # piece move e.g. R4a7\r
-m7 = piece + capture + file_coord + rank_coord # piece capture move e.g. Bxh7\r
-m8 = castle_queenside | castle_kingside # castling e.g. o-o\r
-\r
-check = oneOf("+ ++")\r
-mate = Literal("#")\r
-annotation = Word("!?", max=2)\r
-nag = " $" + Word(nums)\r
-decoration = check | mate | annotation | nag\r
-\r
-variant = Forward()\r
-half_move = Combine((m3 | m1 | m2 | m4 | m5 | m6 | m7 | m8) + Optional(decoration)) \\r
- + Optional(comment) +Optional(variant)\r
-move = Suppress(move_number) + half_move + Optional(half_move)\r
-variant << "(" + OneOrMore(move) + ")"\r
-# grouping the plies (half-moves) for each move: useful to group annotations, variants...\r
-# suggested by Paul McGuire :)\r
-move = Group(Suppress(move_number) + half_move + Optional(half_move))\r
-variant << Group("(" + OneOrMore(move) + ")")\r
-game_terminator = oneOf("1-0 0-1 1/2-1/2 *")\r
-\r
-pgnGrammar = Suppress(ZeroOrMore(tag)) + ZeroOrMore(move) + Optional(Suppress(game_terminator))\r
-\r
-def parsePGN( pgn, bnf=pgnGrammar, fn=None ):\r
- try:\r
- return bnf.parseString( pgn )\r
- except ParseException as err:\r
- print(err.line)\r
- print(" "*(err.column-1) + "^")\r
- print(err)\r
-\r
-if __name__ == "__main__":\r
- # input string\r
- pgn = """\r
-[Event "ICC 5 0 u"]\r
-[Site "Internet Chess Club"]\r
-[Date "2004.01.25"]\r
-[Round "-"]\r
-[White "guest920"]\r
-[Black "IceBox"]\r
-[Result "0-1"]\r
-[ICCResult "White checkmated"]\r
-[BlackElo "1498"]\r
-[Opening "French defense"]\r
-[ECO "C00"]\r
-[NIC "FR.01"]\r
-[Time "04:44:56"]\r
-[TimeControl "300+0"]\r
-\r
-1. e4 e6 2. Nf3 d5 $2 3. exd5 (3. e5 g6 4. h4) exd5 4. Qe2+ Qe7 5. Qxe7+ Bxe7 6. d3 Nf6 7. Be3\r
-Bg4 8. Nbd2 c5 9. h3 Be6 10. O-O-O Nc6 11. g4 Bd6 12. g5 Nd7 13. Rg1 d4 14.\r
-g6 fxg6 15. Bg5 Rf8 16. a3 Bd5 17. Re1+ Nde5 18. Nxe5 Nxe5 19. Bf4 Rf5 20.\r
-Bxe5 Rxe5 21. Rg5 Rxe1# {Black wins} 0-1\r
-"""\r
- # parse input string\r
- tokens = parsePGN(pgn, pgnGrammar)\r
- print(tokens.dump())\r
+++ /dev/null
-from pyparsing import *\r
-\r
-text = """Lorem ipsum dolor sit amet, consectetur adipisicing \r
-elit, sed do eiusmod tempor incididunt ut labore et dolore magna \r
-aliqua. Ut enim ad minim veniam, quis nostrud exercitation \r
-ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis \r
-aute irure dolor in reprehenderit in voluptate velit esse cillum \r
-dolore eu fugiat nulla pariatur. Excepteur sint occaecat \r
-cupidatat non proident, sunt in culpa qui officia deserunt \r
-mollit anim id est laborum"""\r
-\r
-# find all words beginning with a vowel\r
-vowels = "aeiouAEIOU"\r
-initialVowelWord = Word(vowels,alphas)\r
-\r
-# Unfortunately, searchString will advance character by character through\r
-# the input text, so it will detect that the initial "Lorem" is not an\r
-# initialVowelWord, but then it will test "orem" and think that it is. So\r
-# we need to add a do-nothing term that will match the words that start with\r
-# consonants, but we will just throw them away when we match them. The key is\r
-# that, in having been matched, the parser will skip over them entirely when\r
-# looking for initialVowelWords.\r
-consonants = ''.join(c for c in alphas if c not in vowels)\r
-initialConsWord = Word(consonants, alphas).suppress()\r
-\r
-# using scanString to locate where tokens are matched\r
-for t,start,end in (initialConsWord|initialVowelWord).scanString(text):\r
- if t:\r
- print(start,':', t[0])\r
-\r
-# add parse action to annotate the parsed tokens with their location in the\r
-# input string\r
-def addLocnToTokens(s,l,t):\r
- t['locn'] = l\r
- t['word'] = t[0]\r
-initialVowelWord.setParseAction(addLocnToTokens)\r
-\r
-for ivowelInfo in (initialConsWord | initialVowelWord).searchString(text):\r
- if not ivowelInfo:\r
- continue\r
- print(ivowelInfo.locn, ':', ivowelInfo.word)\r
-\r
-\r
-# alternative - add an Empty that will save the current location\r
-def location(name):\r
- return Empty().setParseAction(lambda s,l,t: t.__setitem__(name,l))\r
-locateInitialVowels = location("locn") + initialVowelWord("word")\r
-\r
-# search through the input text\r
-for ivowelInfo in (initialConsWord | locateInitialVowels).searchString(text):\r
- if not ivowelInfo:\r
- continue\r
- print(ivowelInfo.locn, ':', ivowelInfo.word)\r
- \r
-\r
+++ /dev/null
-# protobuf_parser.py\r
-#\r
-# simple parser for parsing protobuf .proto files\r
-#\r
-# Copyright 2010, Paul McGuire\r
-#\r
-\r
-from pyparsing import (Word, alphas, alphanums, Regex, Suppress, Forward,\r
- Group, oneOf, ZeroOrMore, Optional, delimitedList, Keyword,\r
- restOfLine, quotedString, Dict)\r
-\r
-ident = Word(alphas+"_",alphanums+"_").setName("identifier")\r
-integer = Regex(r"[+-]?\d+")\r
-\r
-LBRACE,RBRACE,LBRACK,RBRACK,LPAR,RPAR,EQ,SEMI = map(Suppress,"{}[]()=;")\r
-\r
-kwds = """message required optional repeated enum extensions extends extend \r
- to package service rpc returns true false option import"""\r
-for kw in kwds.split():\r
- exec("%s_ = Keyword('%s')" % (kw.upper(), kw))\r
-\r
-messageBody = Forward()\r
-\r
-messageDefn = MESSAGE_ - ident("messageId") + LBRACE + messageBody("body") + RBRACE\r
-\r
-typespec = oneOf("""double float int32 int64 uint32 uint64 sint32 sint64 \r
- fixed32 fixed64 sfixed32 sfixed64 bool string bytes""") | ident\r
-rvalue = integer | TRUE_ | FALSE_ | ident\r
-fieldDirective = LBRACK + Group(ident + EQ + rvalue) + RBRACK\r
-fieldDefn = (( REQUIRED_ | OPTIONAL_ | REPEATED_ )("fieldQualifier") - \r
- typespec("typespec") + ident("ident") + EQ + integer("fieldint") + ZeroOrMore(fieldDirective) + SEMI)\r
-\r
-# enumDefn ::= 'enum' ident '{' { ident '=' integer ';' }* '}'\r
-enumDefn = ENUM_("typespec") - ident('name') + LBRACE + Dict( ZeroOrMore( Group(ident + EQ + integer + SEMI) ))('values') + RBRACE\r
-\r
-# extensionsDefn ::= 'extensions' integer 'to' integer ';'\r
-extensionsDefn = EXTENSIONS_ - integer + TO_ + integer + SEMI\r
-\r
-# messageExtension ::= 'extend' ident '{' messageBody '}'\r
-messageExtension = EXTEND_ - ident + LBRACE + messageBody + RBRACE\r
-\r
-# messageBody ::= { fieldDefn | enumDefn | messageDefn | extensionsDefn | messageExtension }*\r
-messageBody << Group(ZeroOrMore( Group(fieldDefn | enumDefn | messageDefn | extensionsDefn | messageExtension) ))\r
-\r
-# methodDefn ::= 'rpc' ident '(' [ ident ] ')' 'returns' '(' [ ident ] ')' ';'\r
-methodDefn = (RPC_ - ident("methodName") + \r
- LPAR + Optional(ident("methodParam")) + RPAR + \r
- RETURNS_ + LPAR + Optional(ident("methodReturn")) + RPAR)\r
-\r
-# serviceDefn ::= 'service' ident '{' methodDefn* '}'\r
-serviceDefn = SERVICE_ - ident("serviceName") + LBRACE + ZeroOrMore(Group(methodDefn)) + RBRACE\r
-\r
-# packageDirective ::= 'package' ident [ '.' ident]* ';'\r
-packageDirective = Group(PACKAGE_ - delimitedList(ident, '.', combine=True) + SEMI)\r
-\r
-comment = '//' + restOfLine\r
-\r
-importDirective = IMPORT_ - quotedString("importFileSpec") + SEMI\r
-\r
-optionDirective = OPTION_ - ident("optionName") + EQ + quotedString("optionValue") + SEMI\r
-\r
-topLevelStatement = Group(messageDefn | messageExtension | enumDefn | serviceDefn | importDirective | optionDirective)\r
-\r
-parser = Optional(packageDirective) + ZeroOrMore(topLevelStatement)\r
-\r
-parser.ignore(comment)\r
-\r
-\r
-test1 = """message Person { \r
- required int32 id = 1; \r
- required string name = 2; \r
- optional string email = 3; \r
-}"""\r
-\r
-test2 = """package tutorial;\r
-\r
-message Person {\r
- required string name = 1;\r
- required int32 id = 2;\r
- optional string email = 3;\r
-\r
- enum PhoneType {\r
- MOBILE = 0;\r
- HOME = 1;\r
- WORK = 2;\r
- }\r
-\r
- message PhoneNumber {\r
- required string number = 1;\r
- optional PhoneType type = 2 [default = HOME];\r
- }\r
-\r
- repeated PhoneNumber phone = 4;\r
-}\r
-\r
-message AddressBook {\r
- repeated Person person = 1;\r
-}"""\r
-\r
-parser.runTests([test1, test2])\r
+++ /dev/null
-#!/usr/bin/python\r
-\r
-# Python/pyparsing educational microC compiler v1.0\r
-# Copyright (C) 2009 Zarko Zivanov\r
-# (largely based on flex/bison microC compiler by Zorica Suvajdzin, used with her permission;\r
-# current version can be found at http://www.acs.uns.ac.rs, under "Programski Prevodioci" [Serbian site])\r
-#\r
-# This program is free software: you can redistribute it and/or modify\r
-# it under the terms of the GNU General Public License as published by\r
-# the Free Software Foundation, either version 3 of the License, or\r
-# (at your option) any later version.\r
-#\r
-# This program is distributed in the hope that it will be useful,\r
-# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-# GNU General Public License for more details.\r
-#\r
-# A copy of the GNU General Public License can be found at <http://www.gnu.org/licenses/>.\r
-\r
-from pyparsing import *\r
-from sys import stdin, stdout, stderr, argv, exit\r
-\r
-#defines debug level\r
-# 0 - no debug\r
-# 1 - print parsing results\r
-# 2 - print parsing results and symbol table\r
-# 3 - print parsing results only, without executing parse actions (grammar-only testing)\r
-DEBUG = 0\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-# About microC language and microC compiler\r
-\r
-# microC language and microC compiler are educational tools, and their goal is to show some basic principles\r
-# of writing a C language compiler. Compiler represents one (relatively simple) solution, not necessarily the best one.\r
-# This Python/pyparsing version is made using Python 2.6.4 and pyparsing 1.5.2 (and it may contain errors :) )\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-# Model of the used hypothetical processor\r
-\r
-# The reason behind using a hypothetical processor is to simplify code generation and to concentrate on the compiler itself.\r
-# This compiler can relatively easily be ported to x86, but one must know all the little details about which register\r
-# can be used for what, which registers are default for various operations, etc.\r
-\r
-# The hypothetical processor has 16 registers, called %0 to %15. Register %13 is used for the function return value (x86's eax),\r
-# %14 is the stack frame pointer (x86's ebp) and %15 is the stack pointer (x86's esp). All data-handling instructions can be\r
-# unsigned (suffix U), or signed (suffix S). These are ADD, SUB, MUL and DIV. These are three-address instructions,\r
-# the first two operands are input, the third one is output. Whether these operands are registers, memory or constant\r
-# is not relevant, all combinations are possible (except that output cannot be a constant). Constants are writen with a $ prefix (10-base only).\r
-# Conditional jumps are handled by JXXY instructions, where XX is LT, GT, LE, GE, EQ, NE (less than, greater than, less than or equal, etc.)\r
-# and Y is U or S (unsigned or signed, except for JEQ i JNE). Unconditional jump is JMP. The move instruction is MOV.\r
-# Function handling is done using CALL, RET, PUSH and POP (C style function calls). Static data is defined using the WORD directive\r
-# (example: variable: WORD 1), whose only argument defines the number of locations that are reserved.\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-# Grammar of The microC Programming Language\r
-# (small subset of C made for compiler course at Faculty of Technical Sciences, Chair for Applied Computer Sciences, Novi Sad, Serbia)\r
-\r
-# Patterns:\r
- \r
-# letter\r
-# -> "_" | "a" | "A" | "b" | "B" | "c" | "C" | "d" | "D" | "e" | "E" | "f"\r
-# | "F" | "g" | "G" | "h" | "H" | "i" | "I" | "j" | "J" | "k" | "K" | "l"\r
-# | "L" | "m" | "M" | "n" | "N" | "o" | "O" | "p" | "P" | "q" | "Q" | "r"\r
-# | "R" | "s" | "S" | "t" | "T" | "u" | "U" | "v" | "V" | "w" | "W" | "x"\r
-# | "X" | "y" | "Y" | "z" | "Z"\r
-\r
-# digit\r
-# -> "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"\r
- \r
-# identifier\r
-# -> letter ( letter | digit )*\r
- \r
-# int_constant\r
-# -> digit +\r
- \r
-# unsigned_constant\r
-# -> digit + ( "u" | "U" )\r
- \r
-# Productions:\r
- \r
-# program\r
-# -> variable_list function_list\r
-# -> function_list\r
- \r
-# variable_list\r
-# -> variable ";"\r
-# -> variable_list variable ";"\r
- \r
-# variable\r
-# -> type identifier\r
- \r
-# type\r
-# -> "int"\r
-# -> "unsigned"\r
- \r
-# function_list\r
-# -> function\r
-# -> function_list function\r
- \r
-# function\r
-# -> type identifier "(" parameters ")" body\r
- \r
-# parameters\r
-# -> <empty>\r
-# -> parameter_list\r
- \r
-# parameter_list\r
-# -> variable\r
-# -> parameter_list "," variable\r
- \r
-# body\r
-# -> "{" variable_list statement_list "}"\r
-# -> "{" statement_list "}"\r
- \r
-# statement_list\r
-# -> <empty>\r
-# -> statement_list statement\r
- \r
-# statement\r
-# -> assignement_statement\r
-# -> function_call_statement\r
-# -> if_statement\r
-# -> while_statement\r
-# -> return_statement\r
-# -> compound_statement\r
- \r
-# assignement_statement\r
-# -> identifier "=" num_exp ";"\r
- \r
-# num_exp\r
-# -> mul_exp\r
-# -> num_exp "+" mul_exp\r
-# -> num_exp "-" mul_exp\r
- \r
-# mul_exp\r
-# -> exp\r
-# -> mul_exp "*" exp\r
-# -> mul_exp "/" exp\r
- \r
-# exp\r
-# -> constant\r
-# -> identifier\r
-# -> function_call\r
-# -> "(" num_exp ")"\r
-# -> "+" exp\r
-# -> "-" exp\r
- \r
-# constant\r
-# -> int_constant\r
-# -> unsigned_constant\r
- \r
-# function_call\r
-# -> identifier "(" arguments ")"\r
- \r
-# arguments\r
-# -> <empty>\r
-# -> argument_list\r
- \r
-# argument_list\r
-# -> num_exp\r
-# -> argument_list "," num_exp\r
- \r
-# function_call_statement\r
-# -> function_call ";"\r
- \r
-# if_statement\r
-# -> "if" "(" log_exp ")" statement\r
-# -> "if" "(" log_exp ")" statement "else" statement\r
-# -> -> -> -> -> -> -> -> 2\r
- \r
-# log_exp\r
-# -> and_exp\r
-# -> log_exp "||" and_exp\r
- \r
-# and_exp\r
-# -> rel_exp\r
-# -> and_exp "&&" rel_exp\r
- \r
-# rel_exp\r
-# -> num_exp "<" num_exp\r
-# -> num_exp ">" num_exp\r
-# -> num_exp "<=" num_exp\r
-# -> num_exp ">=" num_exp\r
-# -> num_exp "==" num_exp\r
-# -> num_exp "!=" num_exp\r
- \r
-# while_statement\r
-# -> "while" "(" log_exp ")" statement\r
- \r
-# return_statement\r
-# -> "return" num_exp ";"\r
- \r
-# compound_statement\r
-# -> "{" statement_list "}"\r
- \r
-# Comment: /* a comment */\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-class Enumerate(dict):\r
- """C enum emulation (original by Scott David Daniels)"""\r
- def __init__(self, names):\r
- for number, name in enumerate(names.split()):\r
- setattr(self, name, number)\r
- self[number] = name\r
-\r
-class SharedData(object):\r
- """Data used in all three main classes"""\r
-\r
- #Possible kinds of symbol table entries\r
- KINDS = Enumerate("NO_KIND WORKING_REGISTER GLOBAL_VAR FUNCTION PARAMETER LOCAL_VAR CONSTANT")\r
- #Supported types of functions and variables\r
- TYPES = Enumerate("NO_TYPE INT UNSIGNED")\r
-\r
- #bit size of variables\r
- TYPE_BIT_SIZE = 16\r
- #min/max values of constants\r
- MIN_INT = -2 ** (TYPE_BIT_SIZE - 1)\r
- MAX_INT = 2 ** (TYPE_BIT_SIZE - 1) - 1\r
- MAX_UNSIGNED = 2 ** TYPE_BIT_SIZE - 1\r
- #available working registers (the last one is the register for function's return value!)\r
- REGISTERS = "%0 %1 %2 %3 %4 %5 %6 %7 %8 %9 %10 %11 %12 %13".split()\r
- #register for function's return value\r
- FUNCTION_REGISTER = len(REGISTERS) - 1\r
- #the index of last working register\r
- LAST_WORKING_REGISTER = len(REGISTERS) - 2\r
- #list of relational operators\r
- RELATIONAL_OPERATORS = "< > <= >= == !=".split()\r
-\r
- def __init__(self):\r
- #index of the currently parsed function\r
- self.functon_index = 0\r
- #name of the currently parsed function\r
- self.functon_name = 0\r
- #number of parameters of the currently parsed function\r
- self.function_params = 0\r
- #number of local variables of the currently parsed function\r
- self.function_vars = 0\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-class ExceptionSharedData(object):\r
- """Class for exception handling data"""\r
-\r
- def __init__(self):\r
- #position in currently parsed text\r
- self.location = 0\r
- #currently parsed text\r
- self.text = ""\r
-\r
- def setpos(self, location, text):\r
- """Helper function for setting curently parsed text and position"""\r
- self.location = location\r
- self.text = text\r
-\r
-exshared = ExceptionSharedData()\r
-\r
-class SemanticException(Exception):\r
- """Exception for semantic errors found during parsing, similar to ParseException.\r
- Introduced because ParseException is used internally in pyparsing and custom\r
- messages got lost and replaced by pyparsing's generic errors.\r
- """\r
-\r
- def __init__(self, message, print_location=True):\r
- super(SemanticException,self).__init__()\r
- self._message = message\r
- self.location = exshared.location\r
- self.print_location = print_location\r
- if exshared.location != None:\r
- self.line = lineno(exshared.location, exshared.text)\r
- self.col = col(exshared.location, exshared.text)\r
- self.text = line(exshared.location, exshared.text)\r
- else:\r
- self.line = self.col = self.text = None\r
- \r
- def _get_message(self): \r
- return self._message\r
- def _set_message(self, message): \r
- self._message = message\r
- message = property(_get_message, _set_message)\r
- \r
- def __str__(self):\r
- """String representation of the semantic error"""\r
- msg = "Error"\r
- if self.print_location and (self.line != None):\r
- msg += " at line %d, col %d" % (self.line, self.col)\r
- msg += ": %s" % self.message\r
- if self.print_location and (self.line != None):\r
- msg += "\n%s" % self.text\r
- return msg\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-class SymbolTableEntry(object):\r
- """Class which represents one symbol table entry."""\r
-\r
- def __init__(self, sname = "", skind = 0, stype = 0, sattr = None, sattr_name = "None"):\r
- """Initialization of symbol table entry.\r
- sname - symbol name\r
- skind - symbol kind\r
- stype - symbol type\r
- sattr - symbol attribute\r
- sattr_name - symbol attribute name (used only for table display)\r
- """\r
- self.name = sname\r
- self.kind = skind\r
- self.type = stype\r
- self.attribute = sattr\r
- self.attribute_name = sattr_name\r
- self.param_types = []\r
-\r
- def set_attribute(self, name, value):\r
- """Sets attribute's name and value"""\r
- self.attribute_name = name\r
- self.attribute = value\r
- \r
- def attribute_str(self):\r
- """Returns attribute string (used only for table display)"""\r
- return "{0}={1}".format(self.attribute_name, self.attribute) if self.attribute != None else "None"\r
-\r
-class SymbolTable(object):\r
- """Class for symbol table of microC program"""\r
-\r
- def __init__(self, shared):\r
- """Initialization of the symbol table"""\r
- self.table = []\r
- self.lable_len = 0\r
- #put working registers in the symbol table\r
- for reg in range(SharedData.FUNCTION_REGISTER+1):\r
- self.insert_symbol(SharedData.REGISTERS[reg], SharedData.KINDS.WORKING_REGISTER, SharedData.TYPES.NO_TYPE)\r
- #shared data\r
- self.shared = shared\r
-\r
- def error(self, text=""):\r
- """Symbol table error exception. It should happen only if index is out of range while accessing symbol table.\r
- This exeption is not handled by the compiler, so as to allow traceback printing\r
- """\r
- if text == "":\r
- raise Exception("Symbol table index out of range")\r
- else:\r
- raise Exception("Symbol table error: %s" % text)\r
-\r
- def display(self):\r
- """Displays the symbol table content"""\r
- #Finding the maximum length for each column\r
- sym_name = "Symbol name"\r
- sym_len = max(max(len(i.name) for i in self.table),len(sym_name))\r
- kind_name = "Kind"\r
- kind_len = max(max(len(SharedData.KINDS[i.kind]) for i in self.table),len(kind_name))\r
- type_name = "Type"\r
- type_len = max(max(len(SharedData.TYPES[i.type]) for i in self.table),len(type_name))\r
- attr_name = "Attribute"\r
- attr_len = max(max(len(i.attribute_str()) for i in self.table),len(attr_name))\r
- #print table header\r
- print("{0:3s} | {1:^{2}s} | {3:^{4}s} | {5:^{6}s} | {7:^{8}} | {9:s}".format(" No", sym_name, sym_len, kind_name, kind_len, type_name, type_len, attr_name, attr_len, "Parameters"))\r
- print("-----------------------------" + "-" * (sym_len + kind_len + type_len + attr_len))\r
- #print symbol table\r
- for i,sym in enumerate(self.table):\r
- parameters = ""\r
- for p in sym.param_types:\r
- if parameters == "":\r
- parameters = "{0}".format(SharedData.TYPES[p])\r
- else:\r
- parameters += ", {0}".format(SharedData.TYPES[p])\r
- print("{0:3d} | {1:^{2}s} | {3:^{4}s} | {5:^{6}s} | {7:^{8}} | ({9})".format(i, sym.name, sym_len, SharedData.KINDS[sym.kind], kind_len, SharedData.TYPES[sym.type], type_len, sym.attribute_str(), attr_len, parameters))\r
-\r
- def insert_symbol(self, sname, skind, stype):\r
- """Inserts new symbol at the end of the symbol table.\r
- Returns symbol index\r
- sname - symbol name\r
- skind - symbol kind\r
- stype - symbol type\r
- """\r
- self.table.append(SymbolTableEntry(sname, skind, stype))\r
- self.table_len = len(self.table)\r
- return self.table_len-1\r
-\r
- def clear_symbols(self, index):\r
- """Clears all symbols begining with the index to the end of table"""\r
- try:\r
- del self.table[index:]\r
- except Exception:\r
- self.error()\r
- self.table_len = len(self.table)\r
-\r
- def lookup_symbol(self, sname, skind=list(SharedData.KINDS.keys()), stype=list(SharedData.TYPES.keys())):\r
- """Searches for symbol, from the end to the begining.\r
- Returns symbol index or None\r
- sname - symbol name\r
- skind - symbol kind (one kind, list of kinds, or None) deafult: any kind\r
- stype - symbol type (or None) default: any type\r
- """\r
- skind = skind if isinstance(skind, list) else [skind]\r
- stype = stype if isinstance(stype, list) else [stype]\r
- for i, sym in [[x, self.table[x]] for x in range(len(self.table) - 1, SharedData.LAST_WORKING_REGISTER, -1)]:\r
- if (sym.name == sname) and (sym.kind in skind) and (sym.type in stype):\r
- return i\r
- return None\r
-\r
- def insert_id(self, sname, skind, skinds, stype):\r
- """Inserts a new identifier at the end of the symbol table, if possible.\r
- Returns symbol index, or raises an exception if the symbol alredy exists\r
- sname - symbol name\r
- skind - symbol kind\r
- skinds - symbol kinds to check for\r
- stype - symbol type\r
- """\r
- index = self.lookup_symbol(sname, skinds)\r
- if index == None:\r
- index = self.insert_symbol(sname, skind, stype)\r
- return index\r
- else:\r
- raise SemanticException("Redefinition of '%s'" % sname)\r
-\r
- def insert_global_var(self, vname, vtype):\r
- "Inserts a new global variable"\r
- return self.insert_id(vname, SharedData.KINDS.GLOBAL_VAR, [SharedData.KINDS.GLOBAL_VAR, SharedData.KINDS.FUNCTION], vtype)\r
-\r
- def insert_local_var(self, vname, vtype, position):\r
- "Inserts a new local variable"\r
- index = self.insert_id(vname, SharedData.KINDS.LOCAL_VAR, [SharedData.KINDS.LOCAL_VAR, SharedData.KINDS.PARAMETER], vtype)\r
- self.table[index].attribute = position\r
-\r
- def insert_parameter(self, pname, ptype):\r
- "Inserts a new parameter"\r
- index = self.insert_id(pname, SharedData.KINDS.PARAMETER, SharedData.KINDS.PARAMETER, ptype)\r
- #set parameter's attribute to it's ordinal number\r
- self.table[index].set_attribute("Index", self.shared.function_params)\r
- #set parameter's type in param_types list of a function\r
- self.table[self.shared.function_index].param_types.append(ptype)\r
- return index\r
-\r
- def insert_function(self, fname, ftype):\r
- "Inserts a new function"\r
- index = self.insert_id(fname, SharedData.KINDS.FUNCTION, [SharedData.KINDS.GLOBAL_VAR, SharedData.KINDS.FUNCTION], ftype)\r
- self.table[index].set_attribute("Params",0)\r
- return index\r
-\r
- def insert_constant(self, cname, ctype):\r
- """Inserts a constant (or returns index if the constant already exists)\r
- Additionally, checks for range.\r
- """\r
- index = self.lookup_symbol(cname, stype=ctype)\r
- if index == None:\r
- num = int(cname)\r
- if ctype == SharedData.TYPES.INT:\r
- if (num < SharedData.MIN_INT) or (num > SharedData.MAX_INT):\r
- raise SemanticException("Integer constant '%s' out of range" % cname)\r
- elif ctype == SharedData.TYPES.UNSIGNED:\r
- if (num < 0) or (num > SharedData.MAX_UNSIGNED):\r
- raise SemanticException("Unsigned constant '%s' out of range" % cname)\r
- index = self.insert_symbol(cname, SharedData.KINDS.CONSTANT, ctype)\r
- return index\r
-\r
- def same_types(self, index1, index2):\r
- """Returns True if both symbol table elements are of the same type"""\r
- try:\r
- same = self.table[index1].type == self.table[index2].type != SharedData.TYPES.NO_TYPE\r
- except Exception:\r
- self.error()\r
- return same\r
- \r
- def same_type_as_argument(self, index, function_index, argument_number):\r
- """Returns True if index and function's argument are of the same type\r
- index - index in symbol table\r
- function_index - function's index in symbol table\r
- argument_number - # of function's argument\r
- """\r
- try:\r
- same = self.table[function_index].param_types[argument_number] == self.table[index].type\r
- except Exception:\r
- self.error()\r
- return same\r
-\r
- def get_attribute(self, index):\r
- try:\r
- return self.table[index].attribute\r
- except Exception:\r
- self.error()\r
-\r
- def set_attribute(self, index, value):\r
- try:\r
- self.table[index].attribute = value\r
- except Exception:\r
- self.error()\r
-\r
- def get_name(self, index):\r
- try:\r
- return self.table[index].name\r
- except Exception:\r
- self.error()\r
-\r
- def get_kind(self, index):\r
- try:\r
- return self.table[index].kind\r
- except Exception:\r
- self.error()\r
-\r
- def get_type(self, index):\r
- try:\r
- return self.table[index].type\r
- except Exception:\r
- self.error()\r
-\r
- def set_type(self, index, stype):\r
- try:\r
- self.table[index].type = stype\r
- except Exception:\r
- self.error()\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-class CodeGenerator(object):\r
- """Class for code generation methods."""\r
-\r
- #dictionary of relational operators\r
- RELATIONAL_DICT = dict([op,i] for i, op in enumerate(SharedData.RELATIONAL_OPERATORS))\r
- #conditional jumps for relational operators\r
- CONDITIONAL_JUMPS = ["JLTS", "JGTS", "JLES", "JGES", "JEQ ", "JNE ",\r
- "JLTU", "JGTU", "JLEU", "JGEU", "JEQ ", "JNE "]\r
- #opposite conditional jumps for relational operators\r
- OPPOSITE_JUMPS = ["JGES", "JLES", "JGTS", "JLTS", "JNE ", "JEQ ",\r
- "JGEU", "JLEU", "JGTU", "JLTU", "JNE ", "JEQ "]\r
- #supported operations\r
- OPERATIONS = {"+" : "ADD", "-" : "SUB", "*" : "MUL", "/" : "DIV"}\r
- #suffixes for signed and unsigned operations (if no type is specified, unsigned will be assumed)\r
- OPSIGNS = {SharedData.TYPES.NO_TYPE : "U", SharedData.TYPES.INT : "S", SharedData.TYPES.UNSIGNED : "U"}\r
- #text at start of data segment\r
- DATA_START_TEXT = "#DATA"\r
- #text at start of code segment\r
- CODE_START_TEXT = "#CODE"\r
-\r
- def __init__(self, shared, symtab):\r
- #generated code\r
- self.code = ""\r
- #prefix for internal labels\r
- self.internal = "@"\r
- #suffix for label definition\r
- self.definition = ":"\r
- #list of free working registers\r
- self.free_registers = list(range(SharedData.FUNCTION_REGISTER, -1, -1))\r
- #list of used working registers\r
- self.used_registers = []\r
- #list of used registers needed when function call is inside of a function call\r
- self.used_registers_stack = []\r
- #shared data\r
- self.shared = shared\r
- #symbol table\r
- self.symtab = symtab\r
-\r
- def error(self, text):\r
- """Compiler error exception. It should happen only if something is wrong with compiler.\r
- This exeption is not handled by the compiler, so as to allow traceback printing\r
- """\r
- raise Exception("Compiler error: %s" % text)\r
-\r
- def take_register(self, rtype = SharedData.TYPES.NO_TYPE):\r
- """Reserves one working register and sets its type"""\r
- if len(self.free_registers) == 0:\r
- self.error("no more free registers")\r
- reg = self.free_registers.pop()\r
- self.used_registers.append(reg)\r
- self.symtab.set_type(reg, rtype)\r
- return reg\r
-\r
- def take_function_register(self, rtype = SharedData.TYPES.NO_TYPE):\r
- """Reserves register for function return value and sets its type"""\r
- reg = SharedData.FUNCTION_REGISTER\r
- if reg not in self.free_registers:\r
- self.error("function register already taken")\r
- self.free_registers.remove(reg)\r
- self.used_registers.append(reg)\r
- self.symtab.set_type(reg, rtype)\r
- return reg\r
-\r
- def free_register(self, reg):\r
- """Releases working register"""\r
- if reg not in self.used_registers:\r
- self.error("register %s is not taken" % self.REGISTERS[reg])\r
- self.used_registers.remove(reg)\r
- self.free_registers.append(reg)\r
- self.free_registers.sort(reverse = True)\r
-\r
- def free_if_register(self, index):\r
- """If index is a working register, free it, otherwise just return (helper function)"""\r
- if (index < 0) or (index > SharedData.FUNCTION_REGISTER):\r
- return\r
- else:\r
- self.free_register(index)\r
-\r
- def label(self, name, internal=False, definition=False):\r
- """Generates label name (helper function)\r
- name - label name\r
- internal - boolean value, adds "@" prefix to label\r
- definition - boolean value, adds ":" suffix to label\r
- """\r
- return "{0}{1}{2}".format(self.internal if internal else "", name, self.definition if definition else "")\r
-\r
- def symbol(self, index):\r
- """Generates symbol name from index"""\r
- #if index is actually a string, just return it\r
- if isinstance(index, str):\r
- return index\r
- elif (index < 0) or (index >= self.symtab.table_len):\r
- self.error("symbol table index out of range")\r
- sym = self.symtab.table[index]\r
- #local variables are located at negative offset from frame pointer register\r
- if sym.kind == SharedData.KINDS.LOCAL_VAR:\r
- return "-{0}(%14)".format(sym.attribute * 4 + 4)\r
- #parameters are located at positive offset from frame pointer register\r
- elif sym.kind == SharedData.KINDS.PARAMETER:\r
- return "{0}(%14)".format(8 + sym.attribute * 4)\r
- elif sym.kind == SharedData.KINDS.CONSTANT:\r
- return "${0}".format(sym.name)\r
- else:\r
- return "{0}".format(sym.name)\r
-\r
- def save_used_registers(self):\r
- """Pushes all used working registers before function call"""\r
- used = self.used_registers[:]\r
- del self.used_registers[:]\r
- self.used_registers_stack.append(used[:])\r
- used.sort()\r
- for reg in used:\r
- self.newline_text("PUSH\t%s" % SharedData.REGISTERS[reg], True)\r
- self.free_registers.extend(used)\r
- self.free_registers.sort(reverse = True)\r
-\r
- def restore_used_registers(self):\r
- """Pops all used working registers after function call"""\r
- used = self.used_registers_stack.pop()\r
- self.used_registers = used[:]\r
- used.sort(reverse = True)\r
- for reg in used:\r
- self.newline_text("POP \t%s" % SharedData.REGISTERS[reg], True)\r
- self.free_registers.remove(reg)\r
-\r
- def text(self, text):\r
- """Inserts text into generated code"""\r
- self.code += text\r
-\r
- def prepare_data_segment(self):\r
- """Inserts text at the start of data segment"""\r
- self.text(self.DATA_START_TEXT)\r
-\r
- def prepare_code_segment(self):\r
- """Inserts text at the start of code segment"""\r
- self.newline_text(self.CODE_START_TEXT)\r
-\r
- def newline(self, indent=False):\r
- """Inserts a newline, optionally with indentation."""\r
- self.text("\n")\r
- if indent:\r
- self.text("\t\t\t")\r
-\r
- def newline_text(self, text, indent = False):\r
- """Inserts a newline and text, optionally with indentation (helper function)"""\r
- self.newline(indent)\r
- self.text(text)\r
-\r
- def newline_label(self, name, internal=False, definition=False):\r
- """Inserts a newline and a label (helper function)\r
- name - label name\r
- internal - boolean value, adds "@" prefix to label\r
- definition - boolean value, adds ":" suffix to label\r
- """\r
- self.newline_text(self.label("{0}{1}{2}".format("@" if internal else "", name, ":" if definition else "")))\r
-\r
- def global_var(self, name):\r
- """Inserts a new static (global) variable definition"""\r
- self.newline_label(name, False, True)\r
- self.newline_text("WORD\t1", True)\r
-\r
- def arithmetic_mnemonic(self, op_name, op_type):\r
- """Generates an arithmetic instruction mnemonic"""\r
- return self.OPERATIONS[op_name] + self.OPSIGNS[op_type]\r
-\r
- def arithmetic(self, operation, operand1, operand2, operand3 = None):\r
- """Generates an arithmetic instruction\r
- operation - one of supporetd operations\r
- operandX - index in symbol table or text representation of operand\r
- First two operands are input, third one is output\r
- """\r
- if isinstance(operand1, int):\r
- output_type = self.symtab.get_type(operand1)\r
- self.free_if_register(operand1)\r
- else:\r
- output_type = None\r
- if isinstance(operand2, int):\r
- output_type = self.symtab.get_type(operand2) if output_type == None else output_type\r
- self.free_if_register(operand2)\r
- else:\r
- output_type = SharedData.TYPES.NO_TYPE if output_type == None else output_type\r
- #if operand3 is not defined, reserve one free register for it\r
- output = self.take_register(output_type) if operand3 == None else operand3\r
- mnemonic = self.arithmetic_mnemonic(operation, output_type)\r
- self.newline_text("{0}\t{1},{2},{3}".format(mnemonic, self.symbol(operand1), self.symbol(operand2), self.symbol(output)), True)\r
- return output\r
-\r
- def relop_code(self, relop, operands_type):\r
- """Returns code for relational operator\r
- relop - relational operator\r
- operands_type - int or unsigned\r
- """\r
- code = self.RELATIONAL_DICT[relop]\r
- offset = 0 if operands_type == SharedData.TYPES.INT else len(SharedData.RELATIONAL_OPERATORS)\r
- return code + offset\r
-\r
- def jump(self, relcode, opposite, label):\r
- """Generates a jump instruction\r
- relcode - relational operator code\r
- opposite - generate normal or opposite jump\r
- label - jump label\r
- """\r
- jump = self.OPPOSITE_JUMPS[relcode] if opposite else self.CONDITIONAL_JUMPS[relcode]\r
- self.newline_text("{0}\t{1}".format(jump, label), True)\r
-\r
- def unconditional_jump(self, label):\r
- """Generates an unconditional jump instruction\r
- label - jump label\r
- """\r
- self.newline_text("JMP \t{0}".format(label), True)\r
-\r
- def move(self,operand1, operand2):\r
- """Generates a move instruction\r
- If the output operand (opernad2) is a working register, sets it's type\r
- operandX - index in symbol table or text representation of operand\r
- """\r
- if isinstance(operand1, int):\r
- output_type = self.symtab.get_type(operand1)\r
- self.free_if_register(operand1)\r
- else:\r
- output_type = SharedData.TYPES.NO_TYPE\r
- self.newline_text("MOV \t{0},{1}".format(self.symbol(operand1), self.symbol(operand2)), True)\r
- if isinstance(operand2, int):\r
- if self.symtab.get_kind(operand2) == SharedData.KINDS.WORKING_REGISTER:\r
- self.symtab.set_type(operand2, output_type)\r
-\r
- def push(self, operand):\r
- """Generates a push operation"""\r
- self.newline_text("PUSH\t%s" % self.symbol(operand), True)\r
-\r
- def pop(self, operand):\r
- """Generates a pop instruction"""\r
- self.newline_text("POP \t%s" % self.symbol(operand), True)\r
-\r
- def compare(self, operand1, operand2):\r
- """Generates a compare instruction\r
- operandX - index in symbol table\r
- """\r
- typ = self.symtab.get_type(operand1)\r
- self.free_if_register(operand1)\r
- self.free_if_register(operand2)\r
- self.newline_text("CMP{0}\t{1},{2}".format(self.OPSIGNS[typ], self.symbol(operand1), self.symbol(operand2)), True)\r
-\r
- def function_begin(self):\r
- """Inserts function name label and function frame initialization"""\r
- self.newline_label(self.shared.function_name, False, True)\r
- self.push("%14")\r
- self.move("%15", "%14")\r
-\r
- def function_body(self):\r
- """Inserts a local variable initialization and body label"""\r
- if self.shared.function_vars > 0:\r
- const = self.symtab.insert_constant("{0}".format(self.shared.function_vars * 4), SharedData.TYPES.UNSIGNED)\r
- self.arithmetic("-", "%15", const, "%15")\r
- self.newline_label(self.shared.function_name + "_body", True, True)\r
-\r
- def function_end(self):\r
- """Inserts an exit label and function return instructions"""\r
- self.newline_label(self.shared.function_name + "_exit", True, True)\r
- self.move("%14", "%15")\r
- self.pop("%14")\r
- self.newline_text("RET", True)\r
-\r
- def function_call(self, function, arguments):\r
- """Generates code for a function call\r
- function - function index in symbol table\r
- arguments - list of arguments (indexes in symbol table)\r
- """\r
- #push each argument to stack\r
- for arg in arguments:\r
- self.push(self.symbol(arg))\r
- self.free_if_register(arg)\r
- self.newline_text("CALL\t"+self.symtab.get_name(function), True)\r
- args = self.symtab.get_attribute(function)\r
- #generates stack cleanup if function has arguments\r
- if args > 0:\r
- args_space = self.symtab.insert_constant("{0}".format(args * 4), SharedData.TYPES.UNSIGNED)\r
- self.arithmetic("+", "%15", args_space, "%15")\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-class MicroC(object):\r
- """Class for microC parser/compiler"""\r
-\r
- def __init__(self):\r
- #Definitions of terminal symbols for microC programming language\r
- self.tId = Word(alphas+"_",alphanums+"_")\r
- self.tInteger = Word(nums).setParseAction(lambda x : [x[0], SharedData.TYPES.INT])\r
- self.tUnsigned = Regex(r"[0-9]+[uU]").setParseAction(lambda x : [x[0][:-1], SharedData.TYPES.UNSIGNED])\r
- self.tConstant = (self.tUnsigned | self.tInteger).setParseAction(self.constant_action)\r
- self.tType = Keyword("int").setParseAction(lambda x : SharedData.TYPES.INT) | \\r
- Keyword("unsigned").setParseAction(lambda x : SharedData.TYPES.UNSIGNED)\r
- self.tRelOp = oneOf(SharedData.RELATIONAL_OPERATORS)\r
- self.tMulOp = oneOf("* /")\r
- self.tAddOp = oneOf("+ -")\r
-\r
- #Definitions of rules for global variables\r
- self.rGlobalVariable = (self.tType("type") + self.tId("name") +\r
- FollowedBy(";")).setParseAction(self.global_variable_action)\r
- self.rGlobalVariableList = ZeroOrMore(self.rGlobalVariable + Suppress(";"))\r
-\r
- #Definitions of rules for numeric expressions\r
- self.rExp = Forward()\r
- self.rMulExp = Forward()\r
- self.rNumExp = Forward()\r
- self.rArguments = delimitedList(self.rNumExp("exp").setParseAction(self.argument_action))\r
- self.rFunctionCall = ((self.tId("name") + FollowedBy("(")).setParseAction(self.function_call_prepare_action) +\r
- Suppress("(") + Optional(self.rArguments)("args") + Suppress(")")).setParseAction(self.function_call_action)\r
- self.rExp << (self.rFunctionCall |\r
- self.tConstant |\r
- self.tId("name").setParseAction(self.lookup_id_action) |\r
- Group(Suppress("(") + self.rNumExp + Suppress(")")) |\r
- Group("+" + self.rExp) |\r
- Group("-" + self.rExp)).setParseAction(lambda x : x[0])\r
- self.rMulExp << ((self.rExp + ZeroOrMore(self.tMulOp + self.rExp))).setParseAction(self.mulexp_action)\r
- self.rNumExp << (self.rMulExp + ZeroOrMore(self.tAddOp + self.rMulExp)).setParseAction(self.numexp_action)\r
-\r
- #Definitions of rules for logical expressions (these are without parenthesis support)\r
- self.rAndExp = Forward()\r
- self.rLogExp = Forward()\r
- self.rRelExp = (self.rNumExp + self.tRelOp + self.rNumExp).setParseAction(self.relexp_action)\r
- self.rAndExp << (self.rRelExp("exp") + ZeroOrMore(Literal("&&").setParseAction(self.andexp_action) +\r
- self.rRelExp("exp")).setParseAction(lambda x : self.relexp_code))\r
- self.rLogExp << (self.rAndExp("exp") + ZeroOrMore(Literal("||").setParseAction(self.logexp_action) +\r
- self.rAndExp("exp")).setParseAction(lambda x : self.andexp_code))\r
-\r
- #Definitions of rules for statements\r
- self.rStatement = Forward()\r
- self.rStatementList = Forward()\r
- self.rReturnStatement = (Keyword("return") + self.rNumExp("exp") +\r
- Suppress(";")).setParseAction(self.return_action)\r
- self.rAssignmentStatement = (self.tId("var") + Suppress("=") + self.rNumExp("exp") +\r
- Suppress(";")).setParseAction(self.assignment_action)\r
- self.rFunctionCallStatement = self.rFunctionCall + Suppress(";")\r
- self.rIfStatement = ( (Keyword("if") + FollowedBy("(")).setParseAction(self.if_begin_action) +\r
- (Suppress("(") + self.rLogExp + Suppress(")")).setParseAction(self.if_body_action) +\r
- (self.rStatement + Empty()).setParseAction(self.if_else_action) +\r
- Optional(Keyword("else") + self.rStatement)).setParseAction(self.if_end_action)\r
- self.rWhileStatement = ( (Keyword("while") + FollowedBy("(")).setParseAction(self.while_begin_action) +\r
- (Suppress("(") + self.rLogExp + Suppress(")")).setParseAction(self.while_body_action) +\r
- self.rStatement).setParseAction(self.while_end_action)\r
- self.rCompoundStatement = Group(Suppress("{") + self.rStatementList + Suppress("}"))\r
- self.rStatement << (self.rReturnStatement | self.rIfStatement | self.rWhileStatement |\r
- self.rFunctionCallStatement | self.rAssignmentStatement | self.rCompoundStatement)\r
- self.rStatementList << ZeroOrMore(self.rStatement)\r
-\r
- self.rLocalVariable = (self.tType("type") + self.tId("name") + FollowedBy(";")).setParseAction(self.local_variable_action)\r
- self.rLocalVariableList = ZeroOrMore(self.rLocalVariable + Suppress(";"))\r
- self.rFunctionBody = Suppress("{") + Optional(self.rLocalVariableList).setParseAction(self.function_body_action) + \\r
- self.rStatementList + Suppress("}")\r
- self.rParameter = (self.tType("type") + self.tId("name")).setParseAction(self.parameter_action)\r
- self.rParameterList = delimitedList(self.rParameter)\r
- self.rFunction = ( (self.tType("type") + self.tId("name")).setParseAction(self.function_begin_action) +\r
- Group(Suppress("(") + Optional(self.rParameterList)("params") + Suppress(")") +\r
- self.rFunctionBody)).setParseAction(self.function_end_action)\r
-\r
- self.rFunctionList = OneOrMore(self.rFunction)\r
- self.rProgram = (Empty().setParseAction(self.data_begin_action) + self.rGlobalVariableList +\r
- Empty().setParseAction(self.code_begin_action) + self.rFunctionList).setParseAction(self.program_end_action)\r
-\r
- #shared data\r
- self.shared = SharedData()\r
- #symbol table\r
- self.symtab = SymbolTable(self.shared)\r
- #code generator\r
- self.codegen = CodeGenerator(self.shared, self.symtab)\r
-\r
- #index of the current function call\r
- self.function_call_index = -1\r
- #stack for the nested function calls\r
- self.function_call_stack = []\r
- #arguments of the current function call\r
- self.function_arguments = []\r
- #stack for arguments of the nested function calls\r
- self.function_arguments_stack = []\r
- #number of arguments for the curent function call\r
- self.function_arguments_number = -1\r
- #stack for the number of arguments for the nested function calls\r
- self.function_arguments_number_stack = []\r
-\r
- #last relational expression\r
- self.relexp_code = None\r
- #last and expression\r
- self.andexp_code = None\r
- #label number for "false" internal labels\r
- self.false_label_number = -1\r
- #label number for all other internal labels\r
- self.label_number = None\r
- #label stack for nested statements\r
- self.label_stack = []\r
-\r
- def warning(self, message, print_location=True):\r
- """Displays warning message. Uses exshared for current location of parsing"""\r
- msg = "Warning"\r
- if print_location and (exshared.location != None):\r
- wline = lineno(exshared.location, exshared.text)\r
- wcol = col(exshared.location, exshared.text)\r
- wtext = line(exshared.location, exshared.text)\r
- msg += " at line %d, col %d" % (wline, wcol)\r
- msg += ": %s" % message\r
- if print_location and (exshared.location != None):\r
- msg += "\n%s" % wtext\r
- print(msg)\r
- \r
-\r
- def data_begin_action(self):\r
- """Inserts text at start of data segment"""\r
- self.codegen.prepare_data_segment()\r
-\r
- def code_begin_action(self):\r
- """Inserts text at start of code segment"""\r
- self.codegen.prepare_code_segment()\r
-\r
- def global_variable_action(self, text, loc, var):\r
- """Code executed after recognising a global variable"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("GLOBAL_VAR:",var)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- index = self.symtab.insert_global_var(var.name, var.type)\r
- self.codegen.global_var(var.name)\r
- return index\r
-\r
- def local_variable_action(self, text, loc, var):\r
- """Code executed after recognising a local variable"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("LOCAL_VAR:",var, var.name, var.type)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- index = self.symtab.insert_local_var(var.name, var.type, self.shared.function_vars)\r
- self.shared.function_vars += 1\r
- return index\r
-\r
- def parameter_action(self, text, loc, par):\r
- """Code executed after recognising a parameter"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("PARAM:",par)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- index = self.symtab.insert_parameter(par.name, par.type)\r
- self.shared.function_params += 1\r
- return index\r
-\r
- def constant_action(self, text, loc, const):\r
- """Code executed after recognising a constant"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("CONST:",const)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- return self.symtab.insert_constant(const[0], const[1])\r
-\r
- def function_begin_action(self, text, loc, fun):\r
- """Code executed after recognising a function definition (type and function name)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("FUN_BEGIN:",fun)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- self.shared.function_index = self.symtab.insert_function(fun.name, fun.type)\r
- self.shared.function_name = fun.name\r
- self.shared.function_params = 0\r
- self.shared.function_vars = 0\r
- self.codegen.function_begin();\r
-\r
- def function_body_action(self, text, loc, fun):\r
- """Code executed after recognising the beginning of function's body"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("FUN_BODY:",fun)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- self.codegen.function_body()\r
-\r
- def function_end_action(self, text, loc, fun):\r
- """Code executed at the end of function definition"""\r
- if DEBUG > 0:\r
- print("FUN_END:",fun)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #set function's attribute to number of function parameters\r
- self.symtab.set_attribute(self.shared.function_index, self.shared.function_params)\r
- #clear local function symbols (but leave function name)\r
- self.symtab.clear_symbols(self.shared.function_index + 1)\r
- self.codegen.function_end()\r
-\r
- def return_action(self, text, loc, ret):\r
- """Code executed after recognising a return statement"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("RETURN:",ret)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- if not self.symtab.same_types(self.shared.function_index, ret.exp[0]):\r
- raise SemanticException("Incompatible type in return")\r
- #set register for function's return value to expression value\r
- reg = self.codegen.take_function_register()\r
- self.codegen.move(ret.exp[0], reg)\r
- #after return statement, register for function's return value is available again\r
- self.codegen.free_register(reg)\r
- #jump to function's exit\r
- self.codegen.unconditional_jump(self.codegen.label(self.shared.function_name+"_exit", True))\r
-\r
- def lookup_id_action(self, text, loc, var):\r
- """Code executed after recognising an identificator in expression"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("EXP_VAR:",var)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- var_index = self.symtab.lookup_symbol(var.name, [SharedData.KINDS.GLOBAL_VAR, SharedData.KINDS.PARAMETER, SharedData.KINDS.LOCAL_VAR])\r
- if var_index == None:\r
- raise SemanticException("'%s' undefined" % var.name)\r
- return var_index\r
-\r
- def assignment_action(self, text, loc, assign):\r
- """Code executed after recognising an assignment statement"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("ASSIGN:",assign)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- var_index = self.symtab.lookup_symbol(assign.var, [SharedData.KINDS.GLOBAL_VAR, SharedData.KINDS.PARAMETER, SharedData.KINDS.LOCAL_VAR])\r
- if var_index == None:\r
- raise SemanticException("Undefined lvalue '%s' in assignment" % assign.var)\r
- if not self.symtab.same_types(var_index, assign.exp[0]):\r
- raise SemanticException("Incompatible types in assignment")\r
- self.codegen.move(assign.exp[0], var_index)\r
-\r
- def mulexp_action(self, text, loc, mul):\r
- """Code executed after recognising a mulexp expression (something *|/ something)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("MUL_EXP:",mul)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #iterate through all multiplications/divisions\r
- m = list(mul)\r
- while len(m) > 1:\r
- if not self.symtab.same_types(m[0], m[2]):\r
- raise SemanticException("Invalid opernads to binary '%s'" % m[1])\r
- reg = self.codegen.arithmetic(m[1], m[0], m[2])\r
- #replace first calculation with it's result\r
- m[0:3] = [reg]\r
- return m[0]\r
-\r
- def numexp_action(self, text, loc, num):\r
- """Code executed after recognising a numexp expression (something +|- something)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("NUM_EXP:",num)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #iterate through all additions/substractions\r
- n = list(num)\r
- while len(n) > 1:\r
- if not self.symtab.same_types(n[0], n[2]):\r
- raise SemanticException("Invalid opernads to binary '%s'" % n[1])\r
- reg = self.codegen.arithmetic(n[1], n[0], n[2])\r
- #replace first calculation with it's result\r
- n[0:3] = [reg]\r
- return n[0]\r
-\r
- def function_call_prepare_action(self, text, loc, fun):\r
- """Code executed after recognising a function call (type and function name)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("FUN_PREP:",fun)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- index = self.symtab.lookup_symbol(fun.name, SharedData.KINDS.FUNCTION)\r
- if index == None:\r
- raise SemanticException("'%s' is not a function" % fun.name)\r
- #save any previous function call data (for nested function calls)\r
- self.function_call_stack.append(self.function_call_index)\r
- self.function_call_index = index\r
- self.function_arguments_stack.append(self.function_arguments[:])\r
- del self.function_arguments[:]\r
- self.codegen.save_used_registers()\r
-\r
- def argument_action(self, text, loc, arg):\r
- """Code executed after recognising each of function's arguments"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("ARGUMENT:",arg.exp)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- arg_ordinal = len(self.function_arguments)\r
- #check argument's type\r
- if not self.symtab.same_type_as_argument(arg.exp, self.function_call_index, arg_ordinal):\r
- raise SemanticException("Incompatible type for argument %d in '%s'" % (arg_ordinal + 1, self.symtab.get_name(self.function_call_index)))\r
- self.function_arguments.append(arg.exp)\r
-\r
- def function_call_action(self, text, loc, fun):\r
- """Code executed after recognising the whole function call"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("FUN_CALL:",fun)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #check number of arguments\r
- if len(self.function_arguments) != self.symtab.get_attribute(self.function_call_index):\r
- raise SemanticException("Wrong number of arguments for function '%s'" % fun.name)\r
- #arguments should be pushed to stack in reverse order\r
- self.function_arguments.reverse()\r
- self.codegen.function_call(self.function_call_index, self.function_arguments)\r
- self.codegen.restore_used_registers()\r
- return_type = self.symtab.get_type(self.function_call_index)\r
- #restore previous function call data\r
- self.function_call_index = self.function_call_stack.pop()\r
- self.function_arguments = self.function_arguments_stack.pop()\r
- register = self.codegen.take_register(return_type)\r
- #move result to a new free register, to allow the next function call\r
- self.codegen.move(self.codegen.take_function_register(return_type), register)\r
- return register\r
-\r
- def relexp_action(self, text, loc, arg):\r
- """Code executed after recognising a relexp expression (something relop something)"""\r
- if DEBUG > 0:\r
- print("REL_EXP:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- exshared.setpos(loc, text)\r
- if not self.symtab.same_types(arg[0], arg[2]):\r
- raise SemanticException("Invalid operands for operator '{0}'".format(arg[1]))\r
- self.codegen.compare(arg[0], arg[2])\r
- #return relational operator's code\r
- self.relexp_code = self.codegen.relop_code(arg[1], self.symtab.get_type(arg[0]))\r
- return self.relexp_code\r
-\r
- def andexp_action(self, text, loc, arg):\r
- """Code executed after recognising a andexp expression (something and something)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("AND+EXP:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- label = self.codegen.label("false{0}".format(self.false_label_number), True, False)\r
- self.codegen.jump(self.relexp_code, True, label)\r
- self.andexp_code = self.relexp_code\r
- return self.andexp_code\r
-\r
- def logexp_action(self, text, loc, arg):\r
- """Code executed after recognising logexp expression (something or something)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("LOG_EXP:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- label = self.codegen.label("true{0}".format(self.label_number), True, False)\r
- self.codegen.jump(self.relexp_code, False, label)\r
- self.codegen.newline_label("false{0}".format(self.false_label_number), True, True)\r
- self.false_label_number += 1\r
-\r
- def if_begin_action(self, text, loc, arg):\r
- """Code executed after recognising an if statement (if keyword)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("IF_BEGIN:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- self.false_label_number += 1\r
- self.label_number = self.false_label_number\r
- self.codegen.newline_label("if{0}".format(self.label_number), True, True)\r
-\r
- def if_body_action(self, text, loc, arg):\r
- """Code executed after recognising if statement's body"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("IF_BODY:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #generate conditional jump (based on last compare)\r
- label = self.codegen.label("false{0}".format(self.false_label_number), True, False)\r
- self.codegen.jump(self.relexp_code, True, label)\r
- #generate 'true' label (executes if condition is satisfied)\r
- self.codegen.newline_label("true{0}".format(self.label_number), True, True)\r
- #save label numbers (needed for nested if/while statements)\r
- self.label_stack.append(self.false_label_number)\r
- self.label_stack.append(self.label_number)\r
-\r
- def if_else_action(self, text, loc, arg):\r
- """Code executed after recognising if statement's else body"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("IF_ELSE:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #jump to exit after all statements for true condition are executed\r
- self.label_number = self.label_stack.pop()\r
- label = self.codegen.label("exit{0}".format(self.label_number), True, False)\r
- self.codegen.unconditional_jump(label)\r
- #generate final 'false' label (executes if condition isn't satisfied)\r
- self.codegen.newline_label("false{0}".format(self.label_stack.pop()), True, True)\r
- self.label_stack.append(self.label_number)\r
-\r
- def if_end_action(self, text, loc, arg):\r
- """Code executed after recognising a whole if statement"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("IF_END:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- self.codegen.newline_label("exit{0}".format(self.label_stack.pop()), True, True)\r
-\r
- def while_begin_action(self, text, loc, arg):\r
- """Code executed after recognising a while statement (while keyword)"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("WHILE_BEGIN:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- self.false_label_number += 1\r
- self.label_number = self.false_label_number\r
- self.codegen.newline_label("while{0}".format(self.label_number), True, True)\r
-\r
- def while_body_action(self, text, loc, arg):\r
- """Code executed after recognising while statement's body"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("WHILE_BODY:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #generate conditional jump (based on last compare)\r
- label = self.codegen.label("false{0}".format(self.false_label_number), True, False)\r
- self.codegen.jump(self.relexp_code, True, label)\r
- #generate 'true' label (executes if condition is satisfied)\r
- self.codegen.newline_label("true{0}".format(self.label_number), True, True)\r
- self.label_stack.append(self.false_label_number)\r
- self.label_stack.append(self.label_number)\r
-\r
- def while_end_action(self, text, loc, arg):\r
- """Code executed after recognising a whole while statement"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("WHILE_END:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- #jump to condition checking after while statement body\r
- self.label_number = self.label_stack.pop()\r
- label = self.codegen.label("while{0}".format(self.label_number), True, False)\r
- self.codegen.unconditional_jump(label)\r
- #generate final 'false' label and exit label\r
- self.codegen.newline_label("false{0}".format(self.label_stack.pop()), True, True)\r
- self.codegen.newline_label("exit{0}".format(self.label_number), True, True)\r
-\r
- def program_end_action(self, text, loc, arg):\r
- """Checks if there is a 'main' function and the type of 'main' function"""\r
- exshared.setpos(loc, text)\r
- if DEBUG > 0:\r
- print("PROGRAM_END:",arg)\r
- if DEBUG == 2: self.symtab.display()\r
- if DEBUG > 2: return\r
- index = self.symtab.lookup_symbol("main",SharedData.KINDS.FUNCTION)\r
- if index == None:\r
- raise SemanticException("Undefined reference to 'main'", False)\r
- elif self.symtab.get_type(index) != SharedData.TYPES.INT:\r
- self.warning("Return type of 'main' is not int", False)\r
-\r
- def parse_text(self,text):\r
- """Parse string (helper function)"""\r
- try:\r
- return self.rProgram.ignore(cStyleComment).parseString(text, parseAll=True)\r
- except SemanticException as err:\r
- print(err)\r
- exit(3)\r
- except ParseException as err:\r
- print(err)\r
- exit(3)\r
-\r
- def parse_file(self,filename):\r
- """Parse file (helper function)"""\r
- try:\r
- return self.rProgram.ignore(cStyleComment).parseFile(filename, parseAll=True)\r
- except SemanticException as err:\r
- print(err)\r
- exit(3)\r
- except ParseException as err:\r
- print(err)\r
- exit(3)\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-if 0:\r
- #main program\r
- mc = MicroC()\r
- output_file = "output.asm"\r
- \r
- if len(argv) == 1:\r
- input_file = stdin\r
- elif len(argv) == 2:\r
- input_file = argv[1]\r
- elif len(argv) == 3:\r
- input_file = argv[1]\r
- output_file = argv[2]\r
- else:\r
- usage = """Usage: {0} [input_file [output_file]]\r
- If output file is omitted, output.asm is used\r
- If input file is omitted, stdin is used""".format(argv[0])\r
- print(usage)\r
- exit(1)\r
- try:\r
- parse = stdin if input_file == stdin else open(input_file,'r')\r
- except Exception:\r
- print("Input file '%s' open error" % input_file)\r
- exit(2)\r
- mc.parse_file(parse)\r
- #if you want to see the final symbol table, uncomment next line\r
- #mc.symtab.display()\r
- try:\r
- out = open(output_file, 'w')\r
- out.write(mc.codegen.code)\r
- out.close\r
- except Exception:\r
- print("Output file '%s' open error" % output_file)\r
- exit(2)\r
-\r
-##########################################################################################\r
-##########################################################################################\r
-\r
-if __name__ == "__main__":\r
- \r
- test_program_example = """\r
- int a;\r
- int b;\r
- int c;\r
- unsigned d;\r
-\r
- int fun1(int x, unsigned y) {\r
- return 123;\r
- }\r
-\r
- int fun2(int a) {\r
- return 1 + a * fun1(a, 456u);\r
- }\r
-\r
- int main(int x, int y) {\r
- int w;\r
- unsigned z;\r
- if (9 > 8 && 2 < 3 || 6 != 5 && a <= b && c < x || w >= y) {\r
- a = b + 1;\r
- if (x == y)\r
- while (d < 4u)\r
- x = x * w;\r
- else\r
- while (a + b < c - y && x > 3 || y < 2)\r
- if (z > d)\r
- a = a - 4;\r
- else\r
- b = a * b * c * x / y;\r
- }\r
- else\r
- c = 4;\r
- a = fun1(x,d) + fun2(fun1(fun2(w + 3 * 2) + 2 * c, 2u));\r
- return 2;\r
- }\r
- """\r
-\r
- mc = MicroC()\r
- mc.parse_text(test_program_example)\r
- print(mc.codegen.code)
\ No newline at end of file
+++ /dev/null
-# pythonGrammarParser.py\r
-#\r
-# Copyright, 2006, by Paul McGuire\r
-#\r
-\r
-from pyparsing import *\r
-\r
-# should probably read this from the Grammar file provided with the Python source, but \r
-# this just skips that step and inlines the bnf text directly - this grammar was taken from\r
-# Python 2.4.1\r
-#\r
-grammar = r"""\r
-# Grammar for Python\r
-\r
-# Note: Changing the grammar specified in this file will most likely\r
-# require corresponding changes in the parser module\r
-# (../Modules/parsermodule.c). If you can't make the changes to\r
-# that module yourself, please co-ordinate the required changes\r
-# with someone who can; ask around on python-dev for help. Fred\r
-# Drake <fdrake@acm.org> will probably be listening there.\r
-\r
-# Commands for Kees Blom's railroad program\r
-#diagram:token NAME\r
-#diagram:token NUMBER\r
-#diagram:token STRING\r
-#diagram:token NEWLINE\r
-#diagram:token ENDMARKER\r
-#diagram:token INDENT\r
-#diagram:output\input python.bla\r
-#diagram:token DEDENT\r
-#diagram:output\textwidth 20.04cm\oddsidemargin 0.0cm\evensidemargin 0.0cm\r
-#diagram:rules\r
-\r
-# Start symbols for the grammar:\r
-# single_input is a single interactive statement;\r
-# file_input is a module or sequence of commands read from an input file;\r
-# eval_input is the input for the eval() and input() functions.\r
-# NB: compound_stmt in single_input is followed by extra NEWLINE!\r
-single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE\r
-file_input: (NEWLINE | stmt)* ENDMARKER\r
-eval_input: testlist NEWLINE* ENDMARKER\r
-\r
-decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE\r
-decorators: decorator+\r
-funcdef: [decorators] 'def' NAME parameters ':' suite\r
-parameters: '(' [varargslist] ')'\r
-varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' '**' NAME] | '**' NAME) | fpdef ['=' test] (',' fpdef ['=' test])* [',']\r
-fpdef: NAME | '(' fplist ')'\r
-fplist: fpdef (',' fpdef)* [',']\r
-\r
-stmt: simple_stmt | compound_stmt\r
-simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE\r
-small_stmt: expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt | import_stmt | global_stmt | exec_stmt | assert_stmt\r
-expr_stmt: testlist (augassign testlist | ('=' testlist)*)\r
-augassign: '+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | '>>=' | '**=' | '//='\r
-# For normal assignments, additional restrictions enforced by the interpreter\r
-print_stmt: 'print' ( [ test (',' test)* [','] ] | '>>' test [ (',' test)+ [','] ] )\r
-del_stmt: 'del' exprlist\r
-pass_stmt: 'pass'\r
-flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt\r
-break_stmt: 'break'\r
-continue_stmt: 'continue'\r
-return_stmt: 'return' [testlist]\r
-yield_stmt: 'yield' testlist\r
-raise_stmt: 'raise' [test [',' test [',' test]]]\r
-import_stmt: import_name | import_from\r
-import_name: 'import' dotted_as_names\r
-import_from: 'from' dotted_name 'import' ('*' | '(' import_as_names ')' | import_as_names)\r
-import_as_name: NAME [NAME NAME]\r
-dotted_as_name: dotted_name [NAME NAME]\r
-import_as_names: import_as_name (',' import_as_name)* [',']\r
-dotted_as_names: dotted_as_name (',' dotted_as_name)*\r
-dotted_name: NAME ('.' NAME)*\r
-global_stmt: 'global' NAME (',' NAME)*\r
-exec_stmt: 'exec' expr ['in' test [',' test]]\r
-assert_stmt: 'assert' test [',' test]\r
-#35\r
-compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef\r
-if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]\r
-while_stmt: 'while' test ':' suite ['else' ':' suite]\r
-for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]\r
-try_stmt: ('try' ':' suite (except_clause ':' suite)+ #diagram:break\r
- ['else' ':' suite] | 'try' ':' suite 'finally' ':' suite)\r
-# NB compile.c makes sure that the default except clause is last\r
-except_clause: 'except' [test [',' test]]\r
-suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT\r
-\r
-test: and_test ('or' and_test)* | lambdef\r
-and_test: not_test ('and' not_test)*\r
-not_test: 'not' not_test | comparison\r
-comparison: expr (comp_op expr)*\r
-comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'\r
-expr: xor_expr ('|' xor_expr)*\r
-xor_expr: and_expr ('^' and_expr)*\r
-and_expr: shift_expr ('&' shift_expr)*\r
-shift_expr: arith_expr (('<<'|'>>') arith_expr)*\r
-arith_expr: term (('+'|'-') term)*\r
-term: factor (('*'|'/'|'%'|'//') factor)*\r
-factor: ('+'|'-'|'~') factor | power\r
-power: atom trailer* ['**' factor]\r
-atom: '(' [testlist_gexp] ')' | '[' [listmaker] ']' | '{' [dictmaker] '}' | '`' testlist1 '`' | NAME | NUMBER | STRING+\r
-listmaker: test ( list_for | (',' test)* [','] )\r
-testlist_gexp: test ( gen_for | (',' test)* [','] )\r
-lambdef: 'lambda' [varargslist] ':' test\r
-trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME\r
-subscriptlist: subscript (',' subscript)* [',']\r
-subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop]\r
-sliceop: ':' [test]\r
-exprlist: expr (',' expr)* [',']\r
-testlist: test (',' test)* [',']\r
-testlist_safe: test [(',' test)+ [',']]\r
-dictmaker: test ':' test (',' test ':' test)* [',']\r
-\r
-classdef: 'class' NAME ['(' testlist ')'] ':' suite\r
-\r
-arglist: (argument ',')* (argument [',']| '*' test [',' '**' test] | '**' test)\r
-argument: [test '='] test [gen_for] # Really [keyword '='] test\r
-\r
-list_iter: list_for | list_if\r
-list_for: 'for' exprlist 'in' testlist_safe [list_iter]\r
-list_if: 'if' test [list_iter]\r
-\r
-gen_iter: gen_for | gen_if\r
-gen_for: 'for' exprlist 'in' test [gen_iter]\r
-gen_if: 'if' test [gen_iter]\r
-\r
-testlist1: test (',' test)*\r
-\r
-# not used in grammar, but may appear in "node" passed from Parser to Compiler\r
-encoding_decl: NAME\r
-"""\r
-\r
-class SemanticGroup(object):\r
- def __init__(self,contents):\r
- self.contents = contents\r
- while self.contents[-1].__class__ == self.__class__:\r
- self.contents = self.contents[:-1] + self.contents[-1].contents\r
- \r
- def __str__(self):\r
- return "%s(%s)" % (self.label, \r
- " ".join([isinstance(c,str) and c or str(c) for c in self.contents]) )\r
- \r
-class OrList(SemanticGroup):\r
- label = "OR"\r
- pass\r
- \r
-class AndList(SemanticGroup):\r
- label = "AND"\r
- pass\r
-\r
-class OptionalGroup(SemanticGroup):\r
- label = "OPT"\r
- pass\r
- \r
-class Atom(SemanticGroup):\r
- def __init__(self,contents):\r
- if len(contents) > 1:\r
- self.rep = contents[1]\r
- else:\r
- self.rep = ""\r
- if isinstance(contents,str):\r
- self.contents = contents\r
- else:\r
- self.contents = contents[0]\r
- \r
- def __str__(self):\r
- return "%s%s" % (self.rep, self.contents)\r
- \r
-def makeGroupObject(cls):\r
- def groupAction(s,l,t):\r
- try:\r
- return cls(t[0].asList())\r
- except:\r
- return cls(t)\r
- return groupAction\r
-\r
-\r
-# bnf punctuation\r
-LPAREN = Suppress("(")\r
-RPAREN = Suppress(")")\r
-LBRACK = Suppress("[")\r
-RBRACK = Suppress("]")\r
-COLON = Suppress(":")\r
-ALT_OP = Suppress("|")\r
-\r
-# bnf grammar\r
-ident = Word(alphanums+"_")\r
-bnfToken = Word(alphanums+"_") + ~FollowedBy(":")\r
-repSymbol = oneOf("* +")\r
-bnfExpr = Forward()\r
-optionalTerm = Group(LBRACK + bnfExpr + RBRACK).setParseAction(makeGroupObject(OptionalGroup))\r
-bnfTerm = ( (bnfToken | quotedString | optionalTerm | ( LPAREN + bnfExpr + RPAREN )) + Optional(repSymbol) ).setParseAction(makeGroupObject(Atom))\r
-andList = Group(bnfTerm + OneOrMore(bnfTerm)).setParseAction(makeGroupObject(AndList))\r
-bnfFactor = andList | bnfTerm\r
-orList = Group( bnfFactor + OneOrMore( ALT_OP + bnfFactor ) ).setParseAction(makeGroupObject(OrList))\r
-bnfExpr << ( orList | bnfFactor )\r
-bnfLine = ident + COLON + bnfExpr\r
-\r
-bnfComment = "#" + restOfLine\r
-\r
-# build return tokens as a dictionary\r
-bnf = Dict(OneOrMore(Group(bnfLine)))\r
-bnf.ignore(bnfComment)\r
-\r
-# bnf is defined, parse the grammar text\r
-bnfDefs = bnf.parseString(grammar)\r
-\r
-# correct answer is 78\r
-expected = 78\r
-assert len(bnfDefs) == expected, \\r
- "Error, found %d BNF defns, expected %d" % (len(bnfDefs), expected)\r
-\r
-# list out defns in order they were parsed (to verify accuracy of parsing)\r
-for k,v in bnfDefs:\r
- print(k,"=",v)\r
-print()\r
-\r
-# list out parsed grammar defns (demonstrates dictionary access to parsed tokens)\r
-for k in list(bnfDefs.keys()):\r
- print(k,"=",bnfDefs[k])\r
+++ /dev/null
-# rangeCheck.py\r
-#\r
-# A sample program showing how parse actions can convert parsed \r
-# strings into a data type or object, and to validate the parsed value.\r
-#\r
-# Updated to use new addCondition method and expr() copy.\r
-#\r
-# Copyright 2011,2015 Paul T. McGuire\r
-#\r
-\r
-from pyparsing import Word, nums, Suppress, ParseException, empty, Optional\r
-from datetime import datetime\r
-\r
-def ranged_value(expr, minval=None, maxval=None):\r
- # have to specify at least one range boundary\r
- if minval is None and maxval is None:\r
- raise ValueError("minval or maxval must be specified")\r
-\r
- # set range testing function and error message depending on\r
- # whether either or both min and max values are given\r
- inRangeCondition = {\r
- (True, False) : lambda s,l,t : t[0] <= maxval,\r
- (False, True) : lambda s,l,t : minval <= t[0],\r
- (False, False) : lambda s,l,t : minval <= t[0] <= maxval,\r
- }[minval is None, maxval is None]\r
- outOfRangeMessage = {\r
- (True, False) : "value is greater than %s" % maxval,\r
- (False, True) : "value is less than %s" % minval,\r
- (False, False) : "value is not in the range (%s to %s)" % (minval,maxval),\r
- }[minval is None, maxval is None]\r
-\r
- return expr().addCondition(inRangeCondition, message=outOfRangeMessage)\r
-\r
-# define the expressions for a date of the form YYYY/MM/DD or YYYY/MM (assumes YYYY/MM/01)\r
-integer = Word(nums).setName("integer")\r
-integer.setParseAction(lambda t:int(t[0]))\r
-\r
-month = ranged_value(integer, 1, 12)\r
-day = ranged_value(integer, 1, 31)\r
-year = ranged_value(integer, 2000, None)\r
- \r
-SLASH = Suppress('/')\r
-dateExpr = year("year") + SLASH + month("month") + Optional(SLASH + day("day"))\r
-dateExpr.setName("date")\r
-\r
-# convert date fields to datetime (also validates dates as truly valid dates)\r
-dateExpr.setParseAction(lambda t: datetime(t.year, t.month, t.day or 1).date())\r
-\r
-# add range checking on dates\r
-mindate = datetime(2002,1,1).date()\r
-maxdate = datetime.now().date()\r
-dateExpr = ranged_value(dateExpr, mindate, maxdate)\r
-\r
-\r
-dateExpr.runTests("""\r
- 2011/5/8\r
- 2001/1/1\r
- 2004/2/29\r
- 2004/2\r
- 1999/12/31""")\r
-\r
-\r
+++ /dev/null
-\r
-#~ url = "http://cmsdoc.cern.ch/cms/test/aprom/phedex/dev/gowri/datasvc/tbedi/requestDetails"\r
-#~ params = {'format':'json'} \r
-#~ import urllib \r
-#~ eparams = urllib.urlencode(params) \r
-#~ import urllib2 \r
-#~ request = urllib2.Request(url,eparams) \r
-#~ response = urllib2.urlopen(request)\r
-#~ s = response.read()\r
-#~ response.close()\r
-\r
-#~ print s\r
-\r
-s = """\r
-{"phedex":{"request":[{"last_update":"1188037561", "numofapproved":"1",\r
-"id":"7425"}, {"last_update":"1188751826", "numofapproved":"1",\r
-"id":"8041"}, {"last_update":"1190116795", "numofapproved":"1",\r
-"id":"9281"}, {"last_update":"1190248781", "numofapproved":"1",\r
-"id":"9521"}, {"last_update":"1192615612", "numofapproved":"1",\r
-"id":"12821"}, {"last_update":"1192729887", "numofapproved":"1",\r
-"id":"13121"}, {"last_update":"1193152971", "numofapproved":"1",\r
-"id":"13501"}, {"last_update":"1194022054", "numofapproved":"1",\r
-"id":"14782"}, {"last_update":"1194429365", "numofapproved":"1",\r
-"id":"15081"}, {"last_update":"1195069848", "numofapproved":"1",\r
-"id":"16661"}, {"last_update":"1178403225", "numofapproved":"1",\r
-"id":"1281"}, {"last_update":"1179239056", "numofapproved":"1",\r
-"id":"1387"}, {"last_update":"1179842205", "numofapproved":"1",\r
-"id":"1665"}, {"last_update":"1179842040", "numofapproved":"1",\r
-"id":"1661"}, {"last_update":"1179935333", "numofapproved":"1",\r
-"id":"1741"}, {"last_update":"1183151195", "numofapproved":"1",\r
-"id":"3841"}, {"last_update":"1187031531", "numofapproved":"1",\r
-"id":"6601"}, {"last_update":"1188820478", "numofapproved":"1",\r
-"id":"8121"}, {"last_update":"1190652719", "numofapproved":"1",\r
-"id":"9983"}, {"last_update":"1192628950", "numofapproved":"1",\r
-"id":"12841"}, {"last_update":"1193075426", "numofapproved":"1",\r
-"id":"13341"}, {"last_update":"1194214609", "numofapproved":"1",\r
-"id":"14882"}, {"last_update":"1194387864", "numofapproved":"1",\r
-"id":"15062"}, {"last_update":"1195134504", "numofapproved":"1",\r
-"id":"16741"}, {"last_update":"1182431453", "numofapproved":"1",\r
-"id":"3421"}, {"last_update":"1183448188", "numofapproved":"1",\r
-"id":"4061"}, {"last_update":"1184588081", "numofapproved":"1",\r
-"id":"4908"}, {"last_update":"1184681258", "numofapproved":"1",\r
-"id":"4913"}, {"last_update":"1188039048", "numofapproved":"1",\r
-"id":"7426"}, {"last_update":"1192699041", "numofapproved":"1",\r
-"id":"12982"}, {"last_update":"1193219685", "numofapproved":"1",\r
-"id":"13529"}, {"last_update":"1193401408", "numofapproved":"1",\r
-"id":"14081"}, {"last_update":"1194454724", "numofapproved":"1",\r
-"id":"15201"}, {"last_update":"1194937690", "numofapproved":"1",\r
-"id":"16044"}, {"last_update":"1194947125", "numofapproved":"1",\r
-"id":"16103"}, {"last_update":"1195134890", "numofapproved":"1",\r
-"id":"16761"}, {"last_update":"1195486898", "numofapproved":"1",\r
-"id":"17301"}, {"last_update":"1195497774", "numofapproved":"1",\r
-"id":"17341"}, {"last_update":"1184744080", "numofapproved":"1",\r
-"id":"4941"}, {"last_update":"1186558911", "numofapproved":"1",\r
-"id":"6321"}, {"last_update":"1189524520", "numofapproved":"1",\r
-"id":"8802"}, {"last_update":"1192683178", "numofapproved":"1",\r
-"id":"12921"}, {"last_update":"1193260655", "numofapproved":"1",\r
-"id":"13530"}, {"last_update":"1194280038", "numofapproved":"1",\r
-"id":"15002"}, {"last_update":"1182077478", "numofapproved":"1",\r
-"id":"3162"}, {"last_update":"1183386650", "numofapproved":"1",\r
-"id":"3961"}, {"last_update":"1192063369", "numofapproved":"1",\r
-"id":"12182"}, {"last_update":"1181931262", "numofapproved":"1",\r
-"id":"3101"}, {"last_update":"1178648271", "numofapproved":"1",\r
-"id":"1308"}, {"last_update":"1179239923", "numofapproved":"1",\r
-"id":"1405"}, {"last_update":"1184370745", "numofapproved":"1",\r
-"id":"4861"}, {"last_update":"1185280568", "numofapproved":"1",\r
-"id":"5302"}, {"last_update":"1187875115", "numofapproved":"1",\r
-"id":"7344"}, {"last_update":"1189140441", "numofapproved":"1",\r
-"id":"8541"}, {"last_update":"1189180903", "numofapproved":"1",\r
-"id":"8661"}, {"last_update":"1189767643", "numofapproved":"1",\r
-"id":"9001"}, {"last_update":"1190726167", "numofapproved":"1",\r
-"id":"10101"}, {"last_update":"1190972990", "numofapproved":"1",\r
-"id":"10661"}, {"last_update":"1190990720", "numofapproved":"1",\r
-"id":"10712"}, {"last_update":"1192004838", "numofapproved":"1",\r
-"id":"12021"}, {"last_update":"1192612211", "numofapproved":"1",\r
-"id":"12803"}, {"last_update":"1194441407", "numofapproved":"1",\r
-"id":"15103"}, {"last_update":"1194792356", "numofapproved":"1",\r
-"id":"15681"}, {"last_update":"1194860650", "numofapproved":"1",\r
-"id":"15801"}, {"last_update":"1194877395", "numofapproved":"1",\r
-"id":"15881"}, {"last_update":"1194950552", "numofapproved":"1",\r
-"id":"16124"}, {"last_update":"1194992714", "numofapproved":"1",\r
-"id":"16421"}, {"last_update":"1195054500", "numofapproved":"1",\r
-"id":"16581"}, {"last_update":"1195228524", "numofapproved":"1",\r
-"id":"17001"}, {"last_update":"1195469382", "numofapproved":"1",\r
-"id":"17161"}, {"last_update":"1178035947", "numofapproved":"1",\r
-"id":"1202"}, {"last_update":"1178869668", "numofapproved":"1",\r
-"id":"1356"}, {"last_update":"1183563268", "numofapproved":"1",\r
-"id":"4201"}, {"last_update":"1185314677", "numofapproved":"1",\r
-"id":"5361"}, {"last_update":"1188467567", "numofapproved":"1",\r
-"id":"7781"}, {"last_update":"1190011821", "numofapproved":"1",\r
-"id":"9202"}, {"last_update":"1190206214", "numofapproved":"1",\r
-"id":"9481"}, {"last_update":"1190973037", "numofapproved":"1",\r
-"id":"10663"}, {"last_update":"1190819127", "numofapproved":"1",\r
-"id":"10342"}, {"last_update":"1192154959", "numofapproved":"1",\r
-"id":"12381"}, {"last_update":"1192634509", "numofapproved":"1",\r
-"id":"12862"}, {"last_update":"1194004677", "numofapproved":"1",\r
-"id":"14722"}, {"last_update":"1195548191", "numofapproved":"1",\r
-"id":"17501"}, {"last_update":"1195548953", "numofapproved":"1",\r
-"id":"17502"}, {"last_update":"1195559809", "numofapproved":"1",\r
-"id":"17541"}, {"last_update":"1177589103", "numofapproved":"1",\r
-"id":"1044"}, {"last_update":"1183416879", "numofapproved":"1",\r
-"id":"4041"}, {"last_update":"1186646977", "numofapproved":"1",\r
-"id":"6342"}, {"last_update":"1189656586", "numofapproved":"1",\r
-"id":"8902"}, {"last_update":"1190150645", "numofapproved":"1",\r
-"id":"9421"}, {"last_update":"1190409040", "numofapproved":"1",\r
-"id":"9741"}, {"last_update":"1190973011", "numofapproved":"1",\r
-"id":"10662"}, {"last_update":"1190993896", "numofapproved":"1",\r
-"id":"10761"}, {"last_update":"1193973610", "numofapproved":"1",\r
-"id":"14661"}, {"last_update":"1193973848", "numofapproved":"1",\r
-"id":"14664"}, {"last_update":"1194539978", "numofapproved":"1",\r
-"id":"15381"}, {"last_update":"1194947356", "numofapproved":"1",\r
-"id":"16105"}, {"last_update":"1195399589", "numofapproved":"1",\r
-"id":"17101"}, {"last_update":"1195464953", "numofapproved":"1",\r
-"id":"17141"}, {"last_update":"1171962221", "numofapproved":"1",\r
-"id":"109"}, {"last_update":"1173113812", "numofapproved":"1",\r
-"id":"247"}, {"last_update":"1173975435", "numofapproved":"1",\r
-"id":"343"}, {"last_update":"1174050971", "numofapproved":"1",\r
-"id":"353"}, {"last_update":"1174301484", "numofapproved":"1",\r
-"id":"393"}, {"last_update":"1172565853", "numofapproved":"1",\r
-"id":"208"}, {"last_update":"1172593328", "numofapproved":"1",\r
-"id":"215"}, {"last_update":"1175267391", "numofapproved":"1",\r
-"id":"565"}, {"last_update":"1171379845", "numofapproved":"1",\r
-"id":"25"}, {"last_update":"1171477466", "numofapproved":"1",\r
-"id":"53"}, {"last_update":"1171799296", "numofapproved":"1",\r
-"id":"77"}, {"last_update":"1172671474", "numofapproved":"1",\r
-"id":"223"}, {"last_update":"1174301354", "numofapproved":"1",\r
-"id":"388"}, {"last_update":"1174899552", "numofapproved":"1",\r
-"id":"511"}, {"last_update":"1174899458", "numofapproved":"1",\r
-"id":"505"}, {"last_update":"1175502936", "numofapproved":"1",\r
-"id":"604"}, {"last_update":"1175613825", "numofapproved":"1",\r
-"id":"665"}, {"last_update":"1175776232", "numofapproved":"1",\r
-"id":"673"}, {"last_update":"1171621302", "numofapproved":"1",\r
-"id":"68"}, {"last_update":"1171904738", "numofapproved":"1",\r
-"id":"98"}, {"last_update":"1171968012", "numofapproved":"1",\r
-"id":"115"}, {"last_update":"1172145037", "numofapproved":"1",\r
-"id":"168"}, {"last_update":"1172246599", "numofapproved":"1",\r
-"id":"185"}, {"last_update":"1173886280", "numofapproved":"1",\r
-"id":"318"}, {"last_update":"1174562010", "numofapproved":"1",\r
-"id":"423"}, {"last_update":"1176308974", "numofapproved":"1",\r
-"id":"884"}, {"last_update":"1176482150", "numofapproved":"1",\r
-"id":"943"}, {"last_update":"1176702424", "numofapproved":"1",\r
-"id":"1001"}, {"last_update":"1176748776", "numofapproved":"1",\r
-"id":"984"}, {"last_update":"1172669745", "numofapproved":"1",\r
-"id":"222"}, {"last_update":"1174899538", "numofapproved":"1",\r
-"id":"510"}, {"last_update":"1174899143", "numofapproved":"1",\r
-"id":"493"}, {"last_update":"1174899043", "numofapproved":"1",\r
-"id":"488"}, {"last_update":"1175711780", "numofapproved":"1",\r
-"id":"667"}, {"last_update":"1175712851", "numofapproved":"1",\r
-"id":"705"}, {"last_update":"1176296548", "numofapproved":"1",\r
-"id":"841"}, {"last_update":"1175862269", "numofapproved":"1",\r
-"id":"781"}, {"last_update":"1171483107", "numofapproved":"1",\r
-"id":"54"}, {"last_update":"1171645737", "numofapproved":"1",\r
-"id":"71"}, {"last_update":"1172253423", "numofapproved":"1",\r
-"id":"188"}, {"last_update":"1173888726", "numofapproved":"1",\r
-"id":"321"}, {"last_update":"1173975649", "numofapproved":"1",\r
-"id":"346"}, {"last_update":"1174299379", "numofapproved":"1",\r
-"id":"363"}, {"last_update":"1174301359", "numofapproved":"1",\r
-"id":"389"}, {"last_update":"1174301073", "numofapproved":"1",\r
-"id":"379"}, {"last_update":"1174300650", "numofapproved":"1",\r
-"id":"371"}, {"last_update":"1171485069", "numofapproved":"1",\r
-"id":"55"}, {"last_update":"1171799178", "numofapproved":"1",\r
-"id":"73"}, {"last_update":"1171896809", "numofapproved":"1",\r
-"id":"95"}, {"last_update":"1172672959", "numofapproved":"1",\r
-"id":"224"}, {"last_update":"1172693619", "numofapproved":"1",\r
-"id":"230"}, {"last_update":"1173207656", "numofapproved":"1",\r
-"id":"253"}, {"last_update":"1174059533", "numofapproved":"1",\r
-"id":"356"}, {"last_update":"1174300538", "numofapproved":"1",\r
-"id":"368"}, {"last_update":"1176137457", "numofapproved":"1",\r
-"id":"807"}, {"last_update":"1173728124", "numofapproved":"1",\r
-"id":"305"}, {"last_update":"1172507633", "numofapproved":"1",\r
-"id":"198"}, {"last_update":"1174301173", "numofapproved":"1",\r
-"id":"383"}, {"last_update":"1174899102", "numofapproved":"1",\r
-"id":"491"}, {"last_update":"1174301362", "numofapproved":"1",\r
-"id":"390"}, {"last_update":"1175254095", "numofapproved":"1",\r
-"id":"561"}, {"last_update":"1174037250", "numofapproved":"1",\r
-"id":"348"}, {"last_update":"1175865081", "numofapproved":"1",\r
-"id":"782"}, {"last_update":"1177591942", "numofapproved":"1",\r
-"id":"1046"}, {"last_update":"1177989191", "numofapproved":"1",\r
-"id":"1201"}, {"last_update":"1178743279", "numofapproved":"1",\r
-"id":"1323"}, {"last_update":"1178876587", "numofapproved":"1",\r
-"id":"1357"}, {"last_update":"1179239620", "numofapproved":"1",\r
-"id":"1401"}, {"last_update":"1180725458", "numofapproved":"1",\r
-"id":"2141"}, {"last_update":"1181205209", "numofapproved":"1",\r
-"id":"2421"}, {"last_update":"1181575615", "numofapproved":"1",\r
-"id":"2761"}, {"last_update":"1182184775", "numofapproved":"1",\r
-"id":"3201"}, {"last_update":"1182963728", "numofapproved":"1",\r
-"id":"3661"}, {"last_update":"1178727735", "numofapproved":"1",\r
-"id":"1349"}, {"last_update":"1182497720", "numofapproved":"1",\r
-"id":"3441"}, {"last_update":"1184381847", "numofapproved":"1",\r
-"id":"4881"}, {"last_update":"1184568423", "numofapproved":"1",\r
-"id":"4904"}, {"last_update":"1185364813", "numofapproved":"1",\r
-"id":"5421"}, {"last_update":"1188043594", "numofapproved":"1",\r
-"id":"7441"}, {"last_update":"1188675287", "numofapproved":"1",\r
-"id":"7981"}, {"last_update":"1188741594", "numofapproved":"1",\r
-"id":"8021"}, {"last_update":"1189144234", "numofapproved":"1",\r
-"id":"8561"}, {"last_update":"1189170150", "numofapproved":"1",\r
-"id":"8641"}, {"last_update":"1189501508", "numofapproved":"1",\r
-"id":"8761"}, {"last_update":"1189811918", "numofapproved":"1",\r
-"id":"9041"}, {"last_update":"1189812095", "numofapproved":"1",\r
-"id":"9042"}, {"last_update":"1177591716", "numofapproved":"1",\r
-"id":"1045"}, {"last_update":"1178040595", "numofapproved":"1",\r
-"id":"1203"}, {"last_update":"1182437936", "numofapproved":"1",\r
-"id":"3423"}, {"last_update":"1190480042", "numofapproved":"1",\r
-"id":"9781"}, {"last_update":"1190821494", "numofapproved":"1",\r
-"id":"10361"}, {"last_update":"1190959672", "numofapproved":"1",\r
-"id":"10602"}, {"last_update":"1190964023", "numofapproved":"1",\r
-"id":"10621"}, {"last_update":"1190991147", "numofapproved":"1",\r
-"id":"10721"}, {"last_update":"1190992132", "numofapproved":"1",\r
-"id":"10741"}, {"last_update":"1190990410", "numofapproved":"1",\r
-"id":"10706"}, {"last_update":"1181667132", "numofapproved":"1",\r
-"id":"2861"}, {"last_update":"1183746653", "numofapproved":"1",\r
-"id":"4321"}, {"last_update":"1191184539", "numofapproved":"1",\r
-"id":"10861"}, {"last_update":"1191490599", "numofapproved":"1",\r
-"id":"11261"}, {"last_update":"1191834884", "numofapproved":"1",\r
-"id":"11801"}, {"last_update":"1191834899", "numofapproved":"1",\r
-"id":"11802"}, {"last_update":"1191940759", "numofapproved":"1",\r
-"id":"11961"}, {"last_update":"1179971250", "numofapproved":"1",\r
-"id":"1643"}, {"last_update":"1181663618", "numofapproved":"1",\r
-"id":"2841"}, {"last_update":"1181932994", "numofapproved":"1",\r
-"id":"3102"}, {"last_update":"1182420732", "numofapproved":"1",\r
-"id":"3382"}, {"last_update":"1192118127", "numofapproved":"1",\r
-"id":"12281"}, {"last_update":"1192222036", "numofapproved":"1",\r
-"id":"12481"}, {"last_update":"1192155814", "numofapproved":"1",\r
-"id":"12364"}, {"last_update":"1192563924", "numofapproved":"1",\r
-"id":"12761"}, {"last_update":"1193124530", "numofapproved":"1",\r
-"id":"13441"}, {"last_update":"1193345545", "numofapproved":"1",\r
-"id":"13921"}, {"last_update":"1193396927", "numofapproved":"1",\r
-"id":"14041"}, {"last_update":"1180015411", "numofapproved":"1",\r
-"id":"1651"}, {"last_update":"1180107815", "numofapproved":"1",\r
-"id":"1658"}, {"last_update":"1186050394", "numofapproved":"1",\r
-"id":"6021"}, {"last_update":"1188519417", "numofapproved":"1",\r
-"id":"7841"}, {"last_update":"1193222002", "numofapproved":"1",\r
-"id":"13541"}, {"last_update":"1193965081", "numofapproved":"1",\r
-"id":"14641"}, {"last_update":"1193660582", "numofapproved":"1",\r
-"id":"14381"}, {"last_update":"1194088240", "numofapproved":"1",\r
-"id":"14821"}, {"last_update":"1194110475", "numofapproved":"1",\r
-"id":"14841"}, {"last_update":"1194246367", "numofapproved":"1",\r
-"id":"14902"}, {"last_update":"1194464283", "numofapproved":"1",\r
-"id":"15221"}, {"last_update":"1194622250", "numofapproved":"1",\r
-"id":"15461"}, {"last_update":"1194635632", "numofapproved":"1",\r
-"id":"15601"}, {"last_update":"1179147506", "numofapproved":"1",\r
-"id":"1382"}, {"last_update":"1179240025", "numofapproved":"1",\r
-"id":"1388"}, {"last_update":"1179748089", "numofapproved":"1",\r
-"id":"1561"}, {"last_update":"1179868997", "numofapproved":"1",\r
-"id":"1681"}, {"last_update":"1183019667", "numofapproved":"1",\r
-"id":"3702"}, {"last_update":"1184531598", "numofapproved":"1",\r
-"id":"4902"}, {"last_update":"1187294472", "numofapproved":"1",\r
-"id":"6841"}, {"last_update":"1189521494", "numofapproved":"1",\r
-"id":"8801"}, {"last_update":"1192726867", "numofapproved":"1",\r
-"id":"13081"}, {"last_update":"1193049178", "numofapproved":"1",\r
-"id":"13301"}, {"last_update":"1193387050", "numofapproved":"1",\r
-"id":"13947"}, {"last_update":"1194277280", "numofapproved":"1",\r
-"id":"14981"}, {"last_update":"1179150720", "numofapproved":"1",\r
-"id":"1383"}, {"last_update":"1179842104", "numofapproved":"1",\r
-"id":"1663"}, {"last_update":"1183766887", "numofapproved":"1",\r
-"id":"4341"}, {"last_update":"1185542132", "numofapproved":"1",\r
-"id":"5682"}, {"last_update":"1186737114", "numofapproved":"1",\r
-"id":"6382"}, {"last_update":"1187015679", "numofapproved":"1",\r
-"id":"6521"}, {"last_update":"1190326980", "numofapproved":"1",\r
-"id":"9641"}, {"last_update":"1191595711", "numofapproved":"1",\r
-"id":"11622"}, {"last_update":"1192106288", "numofapproved":"1",\r
-"id":"12221"}, {"last_update":"1192454432", "numofapproved":"1",\r
-"id":"12622"}, {"last_update":"1194339640", "numofapproved":"1",\r
-"id":"15021"}, {"last_update":"1177758209", "numofapproved":"1",\r
-"id":"1181"}, {"last_update":"1179842392", "numofapproved":"1",\r
-"id":"1669"}, {"last_update":"1179872870", "numofapproved":"1",\r
-"id":"1682"}, {"last_update":"1181233887", "numofapproved":"1",\r
-"id":"2541"}, {"last_update":"1182349297", "numofapproved":"1",\r
-"id":"3342"}, {"last_update":"1182375421", "numofapproved":"1",\r
-"id":"3350"}, {"last_update":"1183485259", "numofapproved":"1",\r
-"id":"4081"}, {"last_update":"1184319308", "numofapproved":"1",\r
-"id":"4821"}, {"last_update":"1187626648", "numofapproved":"1",\r
-"id":"6981"}, {"last_update":"1193153090", "numofapproved":"1",\r
-"id":"13502"}, {"last_update":"1194366368", "numofapproved":"1",\r
-"id":"15041"}, {"last_update":"1194617018", "numofapproved":"1",\r
-"id":"15421"}, {"last_update":"1195230640", "numofapproved":"1",\r
-"id":"17021"}, {"last_update":"1179908379", "numofapproved":"1",\r
-"id":"1701"}, {"last_update":"1188049228", "numofapproved":"1",\r
-"id":"7427"}, {"last_update":"1177581166", "numofapproved":"1",\r
-"id":"1061"}, {"last_update":"1187160654", "numofapproved":"1",\r
-"id":"6661"}, {"last_update":"1192983992", "numofapproved":"1",\r
-"id":"13222"}, {"last_update":"1193388978", "numofapproved":"1",\r
-"id":"13954"}, {"last_update":"1194617112", "numofapproved":"1",\r
-"id":"15422"}, {"last_update":"1195398876", "numofapproved":"1",\r
-"id":"17081"}, {"last_update":"1184262511", "numofapproved":"1",\r
-"id":"4801"}, {"last_update":"1192112284", "numofapproved":"1",\r
-"id":"12241"}, {"last_update":"1193082767", "numofapproved":"1",\r
-"id":"13401"}, {"last_update":"1193179243", "numofapproved":"1",\r
-"id":"13526"}, {"last_update":"1178142915", "numofapproved":"1",\r
-"id":"1206"}, {"last_update":"1178648333", "numofapproved":"1",\r
-"id":"1310"}, {"last_update":"1179279626", "numofapproved":"1",\r
-"id":"1391"}, {"last_update":"1182882268", "numofapproved":"1",\r
-"id":"3584"}, {"last_update":"1183128448", "numofapproved":"1",\r
-"id":"3823"}, {"last_update":"1183377394", "numofapproved":"1",\r
-"id":"3941"}, {"last_update":"1188582729", "numofapproved":"1",\r
-"id":"7902"}, {"last_update":"1189695063", "numofapproved":"1",\r
-"id":"8962"}, {"last_update":"1192001165", "numofapproved":"1",\r
-"id":"12001"}, {"last_update":"1192155647", "numofapproved":"1",\r
-"id":"12363"}, {"last_update":"1193418304", "numofapproved":"1",\r
-"id":"14202"}, {"last_update":"1193632105", "numofapproved":"1",\r
-"id":"14341"}, {"last_update":"1194011106", "numofapproved":"1",\r
-"id":"14741"}, {"last_update":"1194818628", "numofapproved":"1",\r
-"id":"15701"}, {"last_update":"1194875153", "numofapproved":"1",\r
-"id":"15861"}, {"last_update":"1194727029", "numofapproved":"1",\r
-"id":"15665"}, {"last_update":"1194950210", "numofapproved":"1",\r
-"id":"16122"}, {"last_update":"1194976681", "numofapproved":"1",\r
-"id":"16241"}, {"last_update":"1194979189", "numofapproved":"1",\r
-"id":"16281"}, {"last_update":"1194962224", "numofapproved":"1",\r
-"id":"16201"}, {"last_update":"1195046085", "numofapproved":"1",\r
-"id":"16481"}, {"last_update":"1195399919", "numofapproved":"1",\r
-"id":"17102"}, {"last_update":"1183113736", "numofapproved":"1",\r
-"id":"3782"}, {"last_update":"1183114202", "numofapproved":"1",\r
-"id":"3783"}, {"last_update":"1189017904", "numofapproved":"1",\r
-"id":"8441"}, {"last_update":"1189694944", "numofapproved":"1",\r
-"id":"8961"}, {"last_update":"1190766842", "numofapproved":"1",\r
-"id":"10181"}, {"last_update":"1190973066", "numofapproved":"1",\r
-"id":"10665"}, {"last_update":"1190990264", "numofapproved":"1",\r
-"id":"10702"}, {"last_update":"1193043204", "numofapproved":"1",\r
-"id":"13281"}, {"last_update":"1194627082", "numofapproved":"1",\r
-"id":"15561"}, {"last_update":"1194894589", "numofapproved":"1",\r
-"id":"15941"}, {"last_update":"1195485915", "numofapproved":"1",\r
-"id":"17281"}, {"last_update":"1195485806", "numofapproved":"1",\r
-"id":"17261"}, {"last_update":"1195498836", "numofapproved":"1",\r
-"id":"17361"}, {"last_update":"1195514951", "numofapproved":"1",\r
-"id":"17421"}, {"last_update":"1183722351", "numofapproved":"1",\r
-"id":"4261"}, {"last_update":"1184218083", "numofapproved":"1",\r
-"id":"4682"}, {"last_update":"1186848968", "numofapproved":"1",\r
-"id":"6441"}, {"last_update":"1187023846", "numofapproved":"1",\r
-"id":"6561"}, {"last_update":"1187870812", "numofapproved":"1",\r
-"id":"7342"}, {"last_update":"1188657717", "numofapproved":"1",\r
-"id":"7961"}, {"last_update":"1190541897", "numofapproved":"1",\r
-"id":"9841"}, {"last_update":"1190629135", "numofapproved":"1",\r
-"id":"9922"}, {"last_update":"1191226530", "numofapproved":"1",\r
-"id":"10922"}, {"last_update":"1191505214", "numofapproved":"1",\r
-"id":"11321"}, {"last_update":"1192304524", "numofapproved":"1",\r
-"id":"12541"}, {"last_update":"1193948730", "numofapproved":"1",\r
-"id":"14601"}, {"last_update":"1194073812", "numofapproved":"1",\r
-"id":"14801"}, {"last_update":"1194387224", "numofapproved":"1",\r
-"id":"14892"}, {"last_update":"1194464384", "numofapproved":"1",\r
-"id":"15223"}, {"last_update":"1194726799", "numofapproved":"1",\r
-"id":"15663"}, {"last_update":"1171969969", "numofapproved":"1",\r
-"id":"119"}, {"last_update":"1174444717", "numofapproved":"1",\r
-"id":"405"}, {"last_update":"1174899431", "numofapproved":"1",\r
-"id":"504"}, {"last_update":"1174899204", "numofapproved":"1",\r
-"id":"496"}, {"last_update":"1174925591", "numofapproved":"1",\r
-"id":"530"}, {"last_update":"1176902523", "numofapproved":"1",\r
-"id":"1008"}, {"last_update":"1172765523", "numofapproved":"1",\r
-"id":"232"}, {"last_update":"1173315950", "numofapproved":"1",\r
-"id":"260"}, {"last_update":"1174899524", "numofapproved":"1",\r
-"id":"509"}, {"last_update":"1174300691", "numofapproved":"1",\r
-"id":"373"}, {"last_update":"1175502917", "numofapproved":"1",\r
-"id":"625"}, {"last_update":"1175601578", "numofapproved":"1",\r
-"id":"662"}, {"last_update":"1175608600", "numofapproved":"1",\r
-"id":"684"}, {"last_update":"1176755309", "numofapproved":"1",\r
-"id":"985"}, {"last_update":"1171386411", "numofapproved":"1",\r
-"id":"45"}, {"last_update":"1171800366", "numofapproved":"1",\r
-"id":"81"}, {"last_update":"1172847417", "numofapproved":"1",\r
-"id":"241"}, {"last_update":"1174734904", "numofapproved":"1",\r
-"id":"462"}, {"last_update":"1174735234", "numofapproved":"1",\r
-"id":"469"}, {"last_update":"1174735074", "numofapproved":"1",\r
-"id":"465"}, {"last_update":"1175267646", "numofapproved":"1",\r
-"id":"566"}, {"last_update":"1176331857", "numofapproved":"1",\r
-"id":"888"}, {"last_update":"1176387926", "numofapproved":"1",\r
-"id":"890"}, {"last_update":"1176458401", "numofapproved":"1",\r
-"id":"904"}, {"last_update":"1173088626", "numofapproved":"1",\r
-"id":"244"}, {"last_update":"1173109009", "numofapproved":"1",\r
-"id":"246"}, {"last_update":"1173671557", "numofapproved":"1",\r
-"id":"284"}, {"last_update":"1174927658", "numofapproved":"1",\r
-"id":"532"}, {"last_update":"1175592399", "numofapproved":"1",\r
-"id":"661"}, {"last_update":"1176480402", "numofapproved":"1",\r
-"id":"941"}, {"last_update":"1176561564", "numofapproved":"1",\r
-"id":"945"}, {"last_update":"1172218707", "numofapproved":"1",\r
-"id":"180"}, {"last_update":"1172771475", "numofapproved":"1",\r
-"id":"233"}, {"last_update":"1173267863", "numofapproved":"1",\r
-"id":"257"}, {"last_update":"1176493803", "numofapproved":"1",\r
-"id":"963"}, {"last_update":"1171449646", "numofapproved":"1",\r
-"id":"49"}, {"last_update":"1171471549", "numofapproved":"1",\r
-"id":"51"}, {"last_update":"1171800487", "numofapproved":"1",\r
-"id":"88"}, {"last_update":"1171800431", "numofapproved":"1",\r
-"id":"85"}, {"last_update":"1175502995", "numofapproved":"1",\r
-"id":"627"}, {"last_update":"1175712797", "numofapproved":"1",\r
-"id":"704"}, {"last_update":"1171122384", "numofapproved":"1",\r
-"id":"3"}, {"last_update":"1171380774", "numofapproved":"1", "id":"26"},\r
-{"last_update":"1171904757", "numofapproved":"1", "id":"99"},\r
-{"last_update":"1174300705", "numofapproved":"1", "id":"374"},\r
-{"last_update":"1174924802", "numofapproved":"1", "id":"526"},\r
-{"last_update":"1175935441", "numofapproved":"1", "id":"801"},\r
-{"last_update":"1175610915", "numofapproved":"1", "id":"686"},\r
-{"last_update":"1171977081", "numofapproved":"1", "id":"125"},\r
-{"last_update":"1173165324", "numofapproved":"1", "id":"249"},\r
-{"last_update":"1173888337", "numofapproved":"1", "id":"319"},\r
-{"last_update":"1173889473", "numofapproved":"1", "id":"331"},\r
-{"last_update":"1172180902", "numofapproved":"1", "id":"175"},\r
-{"last_update":"1174058063", "numofapproved":"1", "id":"354"},\r
-{"last_update":"1174300674", "numofapproved":"1", "id":"372"},\r
-{"last_update":"1171886332", "numofapproved":"1", "id":"93"},\r
-{"last_update":"1176731068", "numofapproved":"1", "id":"1003"},\r
-{"last_update":"1178645848", "numofapproved":"1", "id":"1306"},\r
-{"last_update":"1178706683", "numofapproved":"1", "id":"1321"},\r
-{"last_update":"1179240076", "numofapproved":"1", "id":"1406"},\r
-{"last_update":"1180380411", "numofapproved":"1", "id":"1862"},\r
-{"last_update":"1180683561", "numofapproved":"1", "id":"2041"},\r
-{"last_update":"1181229731", "numofapproved":"1", "id":"2521"},\r
-{"last_update":"1182210982", "numofapproved":"1", "id":"3203"},\r
-{"last_update":"1182421105", "numofapproved":"1", "id":"3401"},\r
-{"last_update":"1182199404", "numofapproved":"1", "id":"3202"},\r
-{"last_update":"1182258596", "numofapproved":"1", "id":"3241"},\r
-{"last_update":"1183556842", "numofapproved":"1", "id":"4161"},\r
-{"last_update":"1184146825", "numofapproved":"1", "id":"4601"},\r
-{"last_update":"1184771229", "numofapproved":"1", "id":"4981"},\r
-{"last_update":"1185355415", "numofapproved":"1", "id":"5401"},\r
-{"last_update":"1185377130", "numofapproved":"1", "id":"5481"},\r
-{"last_update":"1185483994", "numofapproved":"1", "id":"5621"},\r
-{"last_update":"1186496707", "numofapproved":"1", "id":"6261"},\r
-{"last_update":"1187704347", "numofapproved":"1", "id":"7001"},\r
-{"last_update":"1187758331", "numofapproved":"1", "id":"7101"},\r
-{"last_update":"1187765716", "numofapproved":"1", "id":"7161"},\r
-{"last_update":"1188284185", "numofapproved":"1", "id":"7581"},\r
-{"last_update":"1188463286", "numofapproved":"1", "id":"7761"},\r
-{"last_update":"1189012058", "numofapproved":"1", "id":"8421"},\r
-{"last_update":"1189814265", "numofapproved":"1", "id":"9061"},\r
-{"last_update":"1180880867", "numofapproved":"1", "id":"2161"},\r
-{"last_update":"1181218244", "numofapproved":"1", "id":"2463"},\r
-{"last_update":"1183515137", "numofapproved":"1", "id":"4141"},\r
-{"last_update":"1183515248", "numofapproved":"1", "id":"4142"},\r
-{"last_update":"1188311100", "numofapproved":"1", "id":"7641"},\r
-{"last_update":"1190011501", "numofapproved":"1", "id":"9201"},\r
-{"last_update":"1190012299", "numofapproved":"1", "id":"9221"},\r
-{"last_update":"1190149196", "numofapproved":"1", "id":"9382"},\r
-{"last_update":"1190202046", "numofapproved":"1", "id":"9461"},\r
-{"last_update":"1190626607", "numofapproved":"1", "id":"9881"},\r
-{"last_update":"1190632230", "numofapproved":"1", "id":"9941"},\r
-{"last_update":"1190660429", "numofapproved":"1", "id":"10002"},\r
-{"last_update":"1190819102", "numofapproved":"1", "id":"10341"},\r
-{"last_update":"1190824319", "numofapproved":"1", "id":"10382"},\r
-{"last_update":"1190825791", "numofapproved":"1", "id":"10402"},\r
-{"last_update":"1190847397", "numofapproved":"1", "id":"10421"},\r
-{"last_update":"1190876679", "numofapproved":"1", "id":"10441"},\r
-{"last_update":"1190918894", "numofapproved":"1", "id":"10541"},\r
-{"last_update":"1190924961", "numofapproved":"1", "id":"10582"},\r
-{"last_update":"1190991179", "numofapproved":"1", "id":"10723"},\r
-{"last_update":"1190663960", "numofapproved":"1", "id":"10042"},\r
-{"last_update":"1191222270", "numofapproved":"1", "id":"10881"},\r
-{"last_update":"1178869580", "numofapproved":"1", "id":"1355"},\r
-{"last_update":"1180054057", "numofapproved":"1", "id":"1655"},\r
-{"last_update":"1180428815", "numofapproved":"1", "id":"1881"},\r
-{"last_update":"1183369278", "numofapproved":"1", "id":"3901"},\r
-{"last_update":"1185018445", "numofapproved":"1", "id":"5163"},\r
-{"last_update":"1185201628", "numofapproved":"1", "id":"5221"},\r
-{"last_update":"1189345395", "numofapproved":"1", "id":"8741"},\r
-{"last_update":"1191406141", "numofapproved":"1", "id":"11041"},\r
-{"last_update":"1191410914", "numofapproved":"1", "id":"11067"},\r
-{"last_update":"1191558362", "numofapproved":"1", "id":"11461"},\r
-{"last_update":"1191584539", "numofapproved":"1", "id":"11541"},\r
-{"last_update":"1191584660", "numofapproved":"1", "id":"11542"},\r
-{"last_update":"1191599491", "numofapproved":"1", "id":"11661"},\r
-{"last_update":"1191813292", "numofapproved":"1", "id":"11781"},\r
-{"last_update":"1191856553", "numofapproved":"1", "id":"11842"},\r
-{"last_update":"1191861142", "numofapproved":"1", "id":"11862"},\r
-{"last_update":"1177509523", "numofapproved":"1", "id":"1041"},\r
-{"last_update":"1190627650", "numofapproved":"1", "id":"9901"},\r
-{"last_update":"1192034749", "numofapproved":"1", "id":"12141"},\r
-{"last_update":"1192165574", "numofapproved":"1", "id":"12401"},\r
-{"last_update":"1192431750", "numofapproved":"1", "id":"12581"},\r
-{"last_update":"1192536591", "numofapproved":"1", "id":"12721"},\r
-{"last_update":"1193035428", "numofapproved":"1", "id":"13261"},\r
-{"last_update":"1193239266", "numofapproved":"1", "id":"13581"},\r
-{"last_update":"1193314455", "numofapproved":"1", "id":"13841"},\r
-{"last_update":"1193333733", "numofapproved":"1", "id":"13901"},\r
-{"last_update":"1193389116", "numofapproved":"1", "id":"14001"},\r
-{"last_update":"1184970339", "numofapproved":"1", "id":"5121"},\r
-{"last_update":"1190892760", "numofapproved":"1", "id":"10481"},\r
-{"last_update":"1192823398", "numofapproved":"1", "id":"13182"},\r
-{"last_update":"1193911671", "numofapproved":"1", "id":"14541"},\r
-{"last_update":"1193916761", "numofapproved":"1", "id":"14543"},\r
-{"last_update":"1194212665", "numofapproved":"1", "id":"14881"},\r
-{"last_update":"1194248205", "numofapproved":"1", "id":"14921"},\r
-{"last_update":"1194513600", "numofapproved":"1", "id":"15110"},\r
-{"last_update":"1194539704", "numofapproved":"1", "id":"15361"},\r
-{"last_update":"1194569643", "numofapproved":"1", "id":"15112"},\r
-{"last_update":"1194619794", "numofapproved":"1", "id":"15441"},\r
-{"last_update":"1194623621", "numofapproved":"1", "id":"15501"},\r
-{"last_update":"1194624477", "numofapproved":"1", "id":"15521"},\r
-{"last_update":"1194635685", "numofapproved":"1", "id":"15602"},\r
-{"last_update":"1179311539", "numofapproved":"1", "id":"1393"},\r
-{"last_update":"1179672561", "numofapproved":"1", "id":"1521"},\r
-{"last_update":"1180712413", "numofapproved":"1", "id":"2101"},\r
-{"last_update":"1181646264", "numofapproved":"1", "id":"2821"},\r
-{"last_update":"1181807696", "numofapproved":"1", "id":"2921"},\r
-{"last_update":"1181824523", "numofapproved":"1", "id":"2942"},\r
-{"last_update":"1181835089", "numofapproved":"1", "id":"2981"},\r
-{"last_update":"1182000147", "numofapproved":"1", "id":"3141"},\r
-{"last_update":"1182952133", "numofapproved":"1", "id":"3641"},\r
-{"last_update":"1188811518", "numofapproved":"1", "id":"8101"},\r
-{"last_update":"1188975549", "numofapproved":"1", "id":"8321"},\r
-{"last_update":"1190122760", "numofapproved":"1", "id":"9301"},\r
-{"last_update":"1190124712", "numofapproved":"1", "id":"9321"},\r
-{"last_update":"1194526560", "numofapproved":"1", "id":"15281"},\r
-{"last_update":"1195149112", "numofapproved":"1", "id":"16821"},\r
-{"last_update":"1179823256", "numofapproved":"1", "id":"1602"},\r
-{"last_update":"1186332011", "numofapproved":"1", "id":"6165"},\r
-{"last_update":"1187263451", "numofapproved":"1", "id":"6781"},\r
-{"last_update":"1190312346", "numofapproved":"1", "id":"9621"},\r
-{"last_update":"1193178728", "numofapproved":"1", "id":"13525"},\r
-{"last_update":"1193908534", "numofapproved":"1", "id":"14524"},\r
-{"last_update":"1194279992", "numofapproved":"1", "id":"15001"},\r
-{"last_update":"1194947169", "numofapproved":"1", "id":"16104"},\r
-{"last_update":"1195139978", "numofapproved":"1", "id":"16801"},\r
-{"last_update":"1195152323", "numofapproved":"1", "id":"16841"},\r
-{"last_update":"1188086146", "numofapproved":"1", "id":"7428"},\r
-{"last_update":"1192143475", "numofapproved":"1", "id":"12341"},\r
-{"last_update":"1192529949", "numofapproved":"1", "id":"12664"},\r
-{"last_update":"1192721072", "numofapproved":"1", "id":"13041"},\r
-{"last_update":"1193844156", "numofapproved":"1", "id":"14501"},\r
-{"last_update":"1177597683", "numofapproved":"1", "id":"1063"},\r
-{"last_update":"1180975406", "numofapproved":"1", "id":"2184"},\r
-{"last_update":"1184681435", "numofapproved":"1", "id":"4914"},\r
-{"last_update":"1187596457", "numofapproved":"1", "id":"6922"},\r
-{"last_update":"1190661113", "numofapproved":"1", "id":"10003"},\r
-{"last_update":"1192721357", "numofapproved":"1", "id":"13042"},\r
-{"last_update":"1193130120", "numofapproved":"1", "id":"13461"},\r
-{"last_update":"1193388868", "numofapproved":"1", "id":"13953"},\r
-{"last_update":"1194861534", "numofapproved":"1", "id":"15821"},\r
-{"last_update":"1182357592", "numofapproved":"1", "id":"3345"},\r
-{"last_update":"1183722862", "numofapproved":"1", "id":"4262"},\r
-{"last_update":"1186066354", "numofapproved":"1", "id":"6041"},\r
-{"last_update":"1192698982", "numofapproved":"1", "id":"12981"},\r
-{"last_update":"1181237191", "numofapproved":"1", "id":"2561"},\r
-{"last_update":"1184569090", "numofapproved":"1", "id":"4906"},\r
-{"last_update":"1185397555", "numofapproved":"1", "id":"5501"},\r
-{"last_update":"1185541935", "numofapproved":"1", "id":"5681"},\r
-{"last_update":"1193385832", "numofapproved":"1", "id":"13941"},\r
-{"last_update":"1185482424", "numofapproved":"1", "id":"5581"},\r
-{"last_update":"1195508796", "numofapproved":"1", "id":"17401"},\r
-{"last_update":"1178718386", "numofapproved":"1", "id":"1347"},\r
-{"last_update":"1178788813", "numofapproved":"1", "id":"1351"},\r
-{"last_update":"1178877332", "numofapproved":"1", "id":"1358"},\r
-{"last_update":"1183208679", "numofapproved":"1", "id":"3861"},\r
-{"last_update":"1187885439", "numofapproved":"1", "id":"7347"},\r
-{"last_update":"1188985190", "numofapproved":"1", "id":"8341"},\r
-{"last_update":"1189687132", "numofapproved":"1", "id":"8941"},\r
-{"last_update":"1189864330", "numofapproved":"1", "id":"9121"},\r
-{"last_update":"1190990605", "numofapproved":"1", "id":"10709"},\r
-{"last_update":"1192634449", "numofapproved":"1", "id":"12861"},\r
-{"last_update":"1194723756", "numofapproved":"1", "id":"15641"},\r
-{"last_update":"1194792428", "numofapproved":"1", "id":"15682"},\r
-{"last_update":"1194725734", "numofapproved":"1", "id":"15661"},\r
-{"last_update":"1194945618", "numofapproved":"1", "id":"16061"},\r
-{"last_update":"1194946006", "numofapproved":"1", "id":"16081"},\r
-{"last_update":"1194949774", "numofapproved":"1", "id":"16121"},\r
-{"last_update":"1194950925", "numofapproved":"1", "id":"16126"},\r
-{"last_update":"1194979238", "numofapproved":"1", "id":"16282"},\r
-{"last_update":"1195051013", "numofapproved":"1", "id":"16543"},\r
-{"last_update":"1195050956", "numofapproved":"1", "id":"16542"},\r
-{"last_update":"1195047036", "numofapproved":"1", "id":"16501"},\r
-{"last_update":"1195221919", "numofapproved":"1", "id":"16942"},\r
-{"last_update":"1178035892", "numofapproved":"1", "id":"1221"},\r
-{"last_update":"1178570265", "numofapproved":"1", "id":"1302"},\r
-{"last_update":"1178811921", "numofapproved":"1", "id":"1354"},\r
-{"last_update":"1182344326", "numofapproved":"1", "id":"3321"},\r
-{"last_update":"1184999048", "numofapproved":"1", "id":"5141"},\r
-{"last_update":"1188994511", "numofapproved":"1", "id":"8361"},\r
-{"last_update":"1189161726", "numofapproved":"1", "id":"8601"},\r
-{"last_update":"1190500875", "numofapproved":"1", "id":"9803"},\r
-{"last_update":"1190817424", "numofapproved":"1", "id":"10321"},\r
-{"last_update":"1191327796", "numofapproved":"1", "id":"11001"},\r
-{"last_update":"1191410544", "numofapproved":"1", "id":"11062"},\r
-{"last_update":"1192009739", "numofapproved":"1", "id":"12062"},\r
-{"last_update":"1193973669", "numofapproved":"1", "id":"14662"},\r
-{"last_update":"1194035149", "numofapproved":"1", "id":"14783"},\r
-{"last_update":"1194465519", "numofapproved":"1", "id":"15106"},\r
-{"last_update":"1194464336", "numofapproved":"1", "id":"15222"},\r
-{"last_update":"1194861398", "numofapproved":"1", "id":"15802"},\r
-{"last_update":"1194950791", "numofapproved":"1", "id":"16125"},\r
-{"last_update":"1195501394", "numofapproved":"1", "id":"17381"},\r
-{"last_update":"1195546583", "numofapproved":"1", "id":"17461"},\r
-{"last_update":"1177607652", "numofapproved":"1", "id":"1048"},\r
-{"last_update":"1182349136", "numofapproved":"1", "id":"3322"},\r
-{"last_update":"1184217665", "numofapproved":"1", "id":"4681"},\r
-{"last_update":"1185510733", "numofapproved":"1", "id":"5641"},\r
-{"last_update":"1187875988", "numofapproved":"1", "id":"7345"},\r
-{"last_update":"1188384227", "numofapproved":"1", "id":"7701"},\r
-{"last_update":"1188935650", "numofapproved":"1", "id":"8261"},\r
-{"last_update":"1188951982", "numofapproved":"1", "id":"8301"},\r
-{"last_update":"1190391010", "numofapproved":"1", "id":"9701"},\r
-{"last_update":"1191169581", "numofapproved":"1", "id":"10841"},\r
-{"last_update":"1194435269", "numofapproved":"1", "id":"15101"},\r
-{"last_update":"1171800457", "numofapproved":"1", "id":"86"},\r
-{"last_update":"1171968036", "numofapproved":"1", "id":"116"},\r
-{"last_update":"1171984640", "numofapproved":"1", "id":"129"},\r
-{"last_update":"1171987101", "numofapproved":"1", "id":"130"},\r
-{"last_update":"1172588327", "numofapproved":"1", "id":"213"},\r
-{"last_update":"1173736730", "numofapproved":"1", "id":"306"},\r
-{"last_update":"1174735009", "numofapproved":"1", "id":"463"},\r
-{"last_update":"1172314484", "numofapproved":"1", "id":"192"},\r
-{"last_update":"1172580739", "numofapproved":"1", "id":"212"},\r
-{"last_update":"1173889335", "numofapproved":"1", "id":"328"},\r
-{"last_update":"1171799339", "numofapproved":"1", "id":"79"},\r
-{"last_update":"1171882669", "numofapproved":"1", "id":"91"},\r
-{"last_update":"1172561300", "numofapproved":"1", "id":"207"},\r
-{"last_update":"1172565919", "numofapproved":"1", "id":"209"},\r
-{"last_update":"1172600401", "numofapproved":"1", "id":"217"},\r
-{"last_update":"1174040553", "numofapproved":"1", "id":"350"},\r
-{"last_update":"1174300376", "numofapproved":"1", "id":"365"},\r
-{"last_update":"1171800419", "numofapproved":"1", "id":"84"},\r
-{"last_update":"1171800471", "numofapproved":"1", "id":"87"},\r
-{"last_update":"1171904826", "numofapproved":"1", "id":"102"},\r
-{"last_update":"1171962248", "numofapproved":"1", "id":"110"},\r
-{"last_update":"1171968056", "numofapproved":"1", "id":"117"},\r
-{"last_update":"1172180757", "numofapproved":"1", "id":"174"},\r
-{"last_update":"1172249286", "numofapproved":"1", "id":"186"},\r
-{"last_update":"1172331355", "numofapproved":"1", "id":"194"},\r
-{"last_update":"1172838799", "numofapproved":"1", "id":"235"},\r
-{"last_update":"1173839361", "numofapproved":"1", "id":"316"},\r
-{"last_update":"1176141087", "numofapproved":"1", "id":"809"},\r
-{"last_update":"1176293168", "numofapproved":"1", "id":"827"},\r
-{"last_update":"1176314927", "numofapproved":"1", "id":"887"},\r
-{"last_update":"1172147490", "numofapproved":"1", "id":"169"},\r
-{"last_update":"1172673371", "numofapproved":"1", "id":"225"},\r
-{"last_update":"1175021309", "numofapproved":"1", "id":"539"},\r
-{"last_update":"1175719394", "numofapproved":"1", "id":"708"},\r
-{"last_update":"1175797177", "numofapproved":"1", "id":"741"},\r
-{"last_update":"1175797204", "numofapproved":"1", "id":"761"},\r
-{"last_update":"1173888948", "numofapproved":"1", "id":"323"},\r
-{"last_update":"1171050355", "numofapproved":"1", "id":"1"},\r
-{"last_update":"1171904868", "numofapproved":"1", "id":"104"},\r
-{"last_update":"1174301476", "numofapproved":"1", "id":"392"},\r
-{"last_update":"1174396679", "numofapproved":"1", "id":"401"},\r
-{"last_update":"1174735025", "numofapproved":"1", "id":"464"},\r
-{"last_update":"1171894147", "numofapproved":"1", "id":"94"},\r
-{"last_update":"1172226240", "numofapproved":"1", "id":"181"},\r
-{"last_update":"1172442130", "numofapproved":"1", "id":"195"},\r
-{"last_update":"1174300588", "numofapproved":"1", "id":"370"},\r
-{"last_update":"1174899082", "numofapproved":"1", "id":"490"},\r
-{"last_update":"1174899309", "numofapproved":"1", "id":"501"},\r
-{"last_update":"1173724444", "numofapproved":"1", "id":"304"},\r
-{"last_update":"1176314883", "numofapproved":"1", "id":"886"},\r
-{"last_update":"1173284377", "numofapproved":"1", "id":"259"},\r
-{"last_update":"1172244974", "numofapproved":"1", "id":"184"},\r
-{"last_update":"1173825356", "numofapproved":"1", "id":"315"},\r
-{"last_update":"1174898980", "numofapproved":"1", "id":"485"},\r
-{"last_update":"1175713133", "numofapproved":"1", "id":"706"},\r
-{"last_update":"1175872869", "numofapproved":"1", "id":"784"},\r
-{"last_update":"1174301161", "numofapproved":"1", "id":"380"},\r
-{"last_update":"1176710519", "numofapproved":"1", "id":"1002"},\r
-{"last_update":"1176776871", "numofapproved":"1", "id":"1006"},\r
-{"last_update":"1176383102", "numofapproved":"1", "id":"901"},\r
-{"last_update":"1176391153", "numofapproved":"1", "id":"902"},\r
-{"last_update":"1176562039", "numofapproved":"1", "id":"946"},\r
-{"last_update":"1175713172", "numofapproved":"1", "id":"668"},\r
-{"last_update":"1178045208", "numofapproved":"1", "id":"1204"},\r
-{"last_update":"1178648231", "numofapproved":"1", "id":"1307"},\r
-{"last_update":"1178876638", "numofapproved":"1", "id":"1362"},\r
-{"last_update":"1181120419", "numofapproved":"1", "id":"2341"},\r
-{"last_update":"1181217997", "numofapproved":"1", "id":"2462"},\r
-{"last_update":"1181292688", "numofapproved":"1", "id":"2622"},\r
-{"last_update":"1182246090", "numofapproved":"1", "id":"3205"},\r
-{"last_update":"1182982710", "numofapproved":"1", "id":"3681"},\r
-{"last_update":"1177496084", "numofapproved":"1", "id":"1021"},\r
-{"last_update":"1177496190", "numofapproved":"1", "id":"1022"},\r
-{"last_update":"1178310654", "numofapproved":"1", "id":"1261"},\r
-{"last_update":"1182861963", "numofapproved":"1", "id":"3582"},\r
-{"last_update":"1183392466", "numofapproved":"1", "id":"3981"},\r
-{"last_update":"1183971409", "numofapproved":"1", "id":"4404"},\r
-{"last_update":"1183984082", "numofapproved":"1", "id":"4421"},\r
-{"last_update":"1184101764", "numofapproved":"1", "id":"4581"},\r
-{"last_update":"1185805036", "numofapproved":"1", "id":"5821"},\r
-{"last_update":"1186071563", "numofapproved":"1", "id":"6061"},\r
-{"last_update":"1186331614", "numofapproved":"1", "id":"6221"},\r
-{"last_update":"1187103429", "numofapproved":"1", "id":"6623"},\r
-{"last_update":"1187359405", "numofapproved":"1", "id":"6901"},\r
-{"last_update":"1187764462", "numofapproved":"1", "id":"7121"},\r
-{"last_update":"1187765742", "numofapproved":"1", "id":"7181"},\r
-{"last_update":"1187821663", "numofapproved":"1", "id":"7281"},\r
-{"last_update":"1187851593", "numofapproved":"1", "id":"7301"},\r
-{"last_update":"1188829369", "numofapproved":"1", "id":"8141"},\r
-{"last_update":"1189006834", "numofapproved":"1", "id":"8401"},\r
-{"last_update":"1189656411", "numofapproved":"1", "id":"8901"},\r
-{"last_update":"1181824325", "numofapproved":"1", "id":"2961"},\r
-{"last_update":"1184699326", "numofapproved":"1", "id":"4922"},\r
-{"last_update":"1185981618", "numofapproved":"1", "id":"5981"},\r
-{"last_update":"1186476979", "numofapproved":"1", "id":"6169"},\r
-{"last_update":"1186501212", "numofapproved":"1", "id":"6301"},\r
-{"last_update":"1187111728", "numofapproved":"1", "id":"6624"},\r
-{"last_update":"1187275194", "numofapproved":"1", "id":"6821"},\r
-{"last_update":"1190232587", "numofapproved":"1", "id":"9501"},\r
-{"last_update":"1190379779", "numofapproved":"1", "id":"9661"},\r
-{"last_update":"1190500551", "numofapproved":"1", "id":"9801"},\r
-{"last_update":"1190555711", "numofapproved":"1", "id":"9861"},\r
-{"last_update":"1190664200", "numofapproved":"1", "id":"10061"},\r
-{"last_update":"1190662067", "numofapproved":"1", "id":"10021"},\r
-{"last_update":"1190887692", "numofapproved":"1", "id":"10461"},\r
-{"last_update":"1190887880", "numofapproved":"1", "id":"10462"},\r
-{"last_update":"1190924576", "numofapproved":"1", "id":"10581"},\r
-{"last_update":"1190990748", "numofapproved":"1", "id":"10713"},\r
-{"last_update":"1190990297", "numofapproved":"1", "id":"10703"},\r
-{"last_update":"1182792178", "numofapproved":"1", "id":"3541"},\r
-{"last_update":"1189505682", "numofapproved":"1", "id":"8781"},\r
-{"last_update":"1191410630", "numofapproved":"1", "id":"11081"},\r
-{"last_update":"1191431148", "numofapproved":"1", "id":"11141"},\r
-{"last_update":"1191446393", "numofapproved":"1", "id":"11181"},\r
-{"last_update":"1191559326", "numofapproved":"1", "id":"11481"},\r
-{"last_update":"1191860159", "numofapproved":"1", "id":"11861"},\r
-{"last_update":"1191933842", "numofapproved":"1", "id":"11901"},\r
-{"last_update":"1181765760", "numofapproved":"1", "id":"2901"},\r
-{"last_update":"1187098770", "numofapproved":"1", "id":"6622"},\r
-{"last_update":"1192155125", "numofapproved":"1", "id":"12382"},\r
-{"last_update":"1192449036", "numofapproved":"1", "id":"12601"},\r
-{"last_update":"1192604489", "numofapproved":"1", "id":"12781"},\r
-{"last_update":"1193265229", "numofapproved":"1", "id":"13681"},\r
-{"last_update":"1193304550", "numofapproved":"1", "id":"13781"},\r
-{"last_update":"1193401945", "numofapproved":"1", "id":"14101"},\r
-{"last_update":"1193305327", "numofapproved":"1", "id":"13801"},\r
-{"last_update":"1179912412", "numofapproved":"1", "id":"1722"},\r
-{"last_update":"1188295203", "numofapproved":"1", "id":"7621"},\r
-{"last_update":"1188580008", "numofapproved":"1", "id":"7881"},\r
-{"last_update":"1189115708", "numofapproved":"1", "id":"8521"},\r
-{"last_update":"1193864375", "numofapproved":"1", "id":"14522"},\r
-{"last_update":"1193973963", "numofapproved":"1", "id":"14666"},\r
-{"last_update":"1194003054", "numofapproved":"1", "id":"14701"},\r
-{"last_update":"1194262755", "numofapproved":"1", "id":"14885"},\r
-{"last_update":"1194262860", "numofapproved":"1", "id":"14886"},\r
-{"last_update":"1194366475", "numofapproved":"1", "id":"15042"},\r
-{"last_update":"1194505568", "numofapproved":"1", "id":"15108"},\r
-{"last_update":"1194507434", "numofapproved":"1", "id":"15109"},\r
-{"last_update":"1194625505", "numofapproved":"1", "id":"15542"},\r
-{"last_update":"1194635569", "numofapproved":"1", "id":"15583"},\r
-{"last_update":"1179319405", "numofapproved":"1", "id":"1394"},\r
-{"last_update":"1179409867", "numofapproved":"1", "id":"1441"},\r
-{"last_update":"1179431647", "numofapproved":"1", "id":"1481"},\r
-{"last_update":"1179842302", "numofapproved":"1", "id":"1667"},\r
-{"last_update":"1180710254", "numofapproved":"1", "id":"2081"},\r
-{"last_update":"1181855583", "numofapproved":"1", "id":"3041"},\r
-{"last_update":"1182100211", "numofapproved":"1", "id":"3182"},\r
-{"last_update":"1183377220", "numofapproved":"1", "id":"3921"},\r
-{"last_update":"1184677615", "numofapproved":"1", "id":"4910"},\r
-{"last_update":"1184679060", "numofapproved":"1", "id":"4911"},\r
-{"last_update":"1184679348", "numofapproved":"1", "id":"4912"},\r
-{"last_update":"1184749371", "numofapproved":"1", "id":"4943"},\r
-{"last_update":"1186734180", "numofapproved":"1", "id":"6381"},\r
-{"last_update":"1187012463", "numofapproved":"1", "id":"6501"},\r
-{"last_update":"1187209404", "numofapproved":"1", "id":"6741"},\r
-{"last_update":"1192687257", "numofapproved":"1", "id":"12941"},\r
-{"last_update":"1193385868", "numofapproved":"1", "id":"13942"},\r
-{"last_update":"1193386346", "numofapproved":"1", "id":"13943"},\r
-{"last_update":"1194937571", "numofapproved":"1", "id":"16042"},\r
-{"last_update":"1194855975", "numofapproved":"1", "id":"15761"},\r
-{"last_update":"1194960221", "numofapproved":"1", "id":"16161"},\r
-{"last_update":"1184058679", "numofapproved":"1", "id":"4541"},\r
-{"last_update":"1185865315", "numofapproved":"1", "id":"5842"},\r
-{"last_update":"1187178780", "numofapproved":"1", "id":"6681"},\r
-{"last_update":"1194884625", "numofapproved":"1", "id":"15921"},\r
-{"last_update":"1195134032", "numofapproved":"1", "id":"16721"},\r
-{"last_update":"1195164570", "numofapproved":"1", "id":"16901"},\r
-{"last_update":"1182336429", "numofapproved":"1", "id":"3301"},\r
-{"last_update":"1182415670", "numofapproved":"1", "id":"3353"},\r
-{"last_update":"1184575801", "numofapproved":"1", "id":"4907"},\r
-{"last_update":"1185483718", "numofapproved":"1", "id":"5601"},\r
-{"last_update":"1186402874", "numofapproved":"1", "id":"6166"},\r
-{"last_update":"1186750969", "numofapproved":"1", "id":"6383"},\r
-{"last_update":"1192725360", "numofapproved":"1", "id":"13061"},\r
-{"last_update":"1193314911", "numofapproved":"1", "id":"13822"},\r
-{"last_update":"1183448275", "numofapproved":"1", "id":"4062"},\r
-{"last_update":"1187321039", "numofapproved":"1", "id":"6861"},\r
-{"last_update":"1188287578", "numofapproved":"1", "id":"7601"},\r
-{"last_update":"1194464420", "numofapproved":"1", "id":"15224"},\r
-{"last_update":"1195139641", "numofapproved":"1", "id":"16781"},\r
-{"last_update":"1186147124", "numofapproved":"1", "id":"6107"},\r
-{"last_update":"1188821750", "numofapproved":"1", "id":"8122"},\r
-{"last_update":"1192531864", "numofapproved":"1", "id":"12665"},\r
-{"last_update":"1192984220", "numofapproved":"1", "id":"13223"},\r
-{"last_update":"1195225246", "numofapproved":"1", "id":"16982"},\r
-{"last_update":"1182410787", "numofapproved":"1", "id":"3351"},\r
-{"last_update":"1184531419", "numofapproved":"1", "id":"4901"},\r
-{"last_update":"1188801472", "numofapproved":"1", "id":"8081"},\r
-{"last_update":"1192524288", "numofapproved":"1", "id":"12661"},\r
-{"last_update":"1180950691", "numofapproved":"1", "id":"2181"},\r
-{"last_update":"1184016732", "numofapproved":"1", "id":"4501"},\r
-{"last_update":"1186074085", "numofapproved":"1", "id":"6081"},\r
-{"last_update":"1194937650", "numofapproved":"1", "id":"16043"},\r
-{"last_update":"1182937178", "numofapproved":"1", "id":"3623"},\r
-{"last_update":"1191419601", "numofapproved":"1", "id":"11101"},\r
-{"last_update":"1191856562", "numofapproved":"1", "id":"11843"},\r
-{"last_update":"1192525042", "numofapproved":"1", "id":"12681"},\r
-{"last_update":"1194625494", "numofapproved":"1", "id":"15541"},\r
-{"last_update":"1194982850", "numofapproved":"1", "id":"16361"},\r
-{"last_update":"1194989219", "numofapproved":"1", "id":"16401"},\r
-{"last_update":"1195066723", "numofapproved":"1", "id":"16641"},\r
-{"last_update":"1183971226", "numofapproved":"1", "id":"4403"},\r
-{"last_update":"1185526866", "numofapproved":"1", "id":"5661"},\r
-{"last_update":"1185741495", "numofapproved":"1", "id":"5741"},\r
-{"last_update":"1185905429", "numofapproved":"1", "id":"5881"},\r
-{"last_update":"1186137969", "numofapproved":"1", "id":"6104"},\r
-{"last_update":"1189267536", "numofapproved":"1", "id":"8701"},\r
-{"last_update":"1190115042", "numofapproved":"1", "id":"9261"},\r
-{"last_update":"1190664258", "numofapproved":"1", "id":"10062"},\r
-{"last_update":"1190774949", "numofapproved":"1", "id":"10201"},\r
-{"last_update":"1190965042", "numofapproved":"1", "id":"10641"},\r
-{"last_update":"1191493379", "numofapproved":"1", "id":"11301"},\r
-{"last_update":"1191578051", "numofapproved":"1", "id":"11501"},\r
-{"last_update":"1192188840", "numofapproved":"1", "id":"12421"},\r
-{"last_update":"1194000252", "numofapproved":"1", "id":"14682"},\r
-{"last_update":"1194622556", "numofapproved":"1", "id":"15462"},\r
-{"last_update":"1194981068", "numofapproved":"1", "id":"16341"},\r
-{"last_update":"1185795733", "numofapproved":"1", "id":"5782"},\r
-{"last_update":"1186646854", "numofapproved":"1", "id":"6341"},\r
-{"last_update":"1187087291", "numofapproved":"1", "id":"6621"},\r
-{"last_update":"1187951800", "numofapproved":"1", "id":"7401"},\r
-{"last_update":"1189170373", "numofapproved":"1", "id":"8642"},\r
-{"last_update":"1191007934", "numofapproved":"1", "id":"10781"},\r
-{"last_update":"1190985695", "numofapproved":"1", "id":"10681"},\r
-{"last_update":"1192009758", "numofapproved":"1", "id":"12063"},\r
-{"last_update":"1193062543", "numofapproved":"1", "id":"13321"},\r
-{"last_update":"1194950304", "numofapproved":"1", "id":"16123"},\r
-{"last_update":"1171882085", "numofapproved":"1", "id":"90"},\r
-{"last_update":"1171962264", "numofapproved":"1", "id":"111"},\r
-{"last_update":"1172646556", "numofapproved":"1", "id":"219"},\r
-{"last_update":"1174040139", "numofapproved":"1", "id":"349"},\r
-{"last_update":"1174059263", "numofapproved":"1", "id":"355"},\r
-{"last_update":"1174899063", "numofapproved":"1", "id":"489"},\r
-{"last_update":"1173797557", "numofapproved":"1", "id":"310"},\r
-{"last_update":"1174735191", "numofapproved":"1", "id":"468"},\r
-{"last_update":"1174899259", "numofapproved":"1", "id":"499"},\r
-{"last_update":"1174899354", "numofapproved":"1", "id":"502"},\r
-{"last_update":"1175254120", "numofapproved":"1", "id":"562"},\r
-{"last_update":"1171126391", "numofapproved":"1", "id":"4"},\r
-{"last_update":"1171800381", "numofapproved":"1", "id":"82"},\r
-{"last_update":"1171799224", "numofapproved":"1", "id":"75"},\r
-{"last_update":"1171972550", "numofapproved":"1", "id":"123"},\r
-{"last_update":"1174301165", "numofapproved":"1", "id":"381"},\r
-{"last_update":"1171904847", "numofapproved":"1", "id":"103"},\r
-{"last_update":"1172260956", "numofapproved":"1", "id":"190"},\r
-{"last_update":"1172803368", "numofapproved":"1", "id":"234"},\r
-{"last_update":"1173199576", "numofapproved":"1", "id":"250"},\r
-{"last_update":"1173206201", "numofapproved":"1", "id":"252"},\r
-{"last_update":"1175258941", "numofapproved":"1", "id":"563"},\r
-{"last_update":"1176232231", "numofapproved":"1", "id":"825"},\r
-{"last_update":"1176475088", "numofapproved":"1", "id":"921"},\r
-{"last_update":"1172082181", "numofapproved":"1", "id":"166"},\r
-{"last_update":"1172595205", "numofapproved":"1", "id":"216"},\r
-{"last_update":"1174898892", "numofapproved":"1", "id":"481"},\r
-{"last_update":"1174899696", "numofapproved":"1", "id":"518"},\r
-{"last_update":"1174924777", "numofapproved":"1", "id":"525"},\r
-{"last_update":"1175598588", "numofapproved":"1", "id":"682"},\r
-{"last_update":"1175602572", "numofapproved":"1", "id":"683"},\r
-{"last_update":"1175707879", "numofapproved":"1", "id":"666"},\r
-{"last_update":"1175710528", "numofapproved":"1", "id":"703"},\r
-{"last_update":"1175715728", "numofapproved":"1", "id":"707"},\r
-{"last_update":"1176137267", "numofapproved":"1", "id":"806"},\r
-{"last_update":"1176306491", "numofapproved":"1", "id":"883"},\r
-{"last_update":"1172069972", "numofapproved":"1", "id":"134"},\r
-{"last_update":"1173889144", "numofapproved":"1", "id":"324"},\r
-{"last_update":"1175502804", "numofapproved":"1", "id":"623"},\r
-{"last_update":"1175772530", "numofapproved":"1", "id":"711"},\r
-{"last_update":"1176297526", "numofapproved":"1", "id":"861"},\r
-{"last_update":"1171445818", "numofapproved":"1", "id":"47"},\r
-{"last_update":"1171884505", "numofapproved":"1", "id":"92"},\r
-{"last_update":"1172250708", "numofapproved":"1", "id":"187"},\r
-{"last_update":"1173749631", "numofapproved":"1", "id":"307"},\r
-{"last_update":"1173889164", "numofapproved":"1", "id":"325"},\r
-{"last_update":"1174301168", "numofapproved":"1", "id":"382"},\r
-{"last_update":"1171904807", "numofapproved":"1", "id":"101"},\r
-{"last_update":"1171970405", "numofapproved":"1", "id":"120"},\r
-{"last_update":"1172218677", "numofapproved":"1", "id":"179"},\r
-{"last_update":"1173125028", "numofapproved":"1", "id":"248"},\r
-{"last_update":"1171978122", "numofapproved":"1", "id":"126"},\r
-{"last_update":"1172676736", "numofapproved":"1", "id":"226"},\r
-{"last_update":"1173975473", "numofapproved":"1", "id":"344"},\r
-{"last_update":"1172072582", "numofapproved":"1", "id":"165"},\r
-{"last_update":"1173888774", "numofapproved":"1", "id":"322"},\r
-{"last_update":"1174560347", "numofapproved":"1", "id":"422"},\r
-{"last_update":"1174899242", "numofapproved":"1", "id":"498"},\r
-{"last_update":"1174735110", "numofapproved":"1", "id":"466"},\r
-{"last_update":"1176735630", "numofapproved":"1", "id":"1004"},\r
-{"last_update":"1175725931", "numofapproved":"1", "id":"670"},\r
-{"last_update":"1176498072", "numofapproved":"1", "id":"944"},\r
-{"last_update":"1178264233", "numofapproved":"1", "id":"1241"},\r
-{"last_update":"1178746727", "numofapproved":"1", "id":"1350"},\r
-{"last_update":"1178798992", "numofapproved":"1", "id":"1352"},\r
-{"last_update":"1180011647", "numofapproved":"1", "id":"1649"},\r
-{"last_update":"1180430823", "numofapproved":"1", "id":"1901"},\r
-{"last_update":"1180649952", "numofapproved":"1", "id":"2021"},\r
-{"last_update":"1180966506", "numofapproved":"1", "id":"2183"},\r
-{"last_update":"1180987142", "numofapproved":"1", "id":"2241"},\r
-{"last_update":"1181127788", "numofapproved":"1", "id":"2322"},\r
-{"last_update":"1181217668", "numofapproved":"1", "id":"2461"},\r
-{"last_update":"1182789542", "numofapproved":"1", "id":"3522"},\r
-{"last_update":"1182851714", "numofapproved":"1", "id":"3581"},\r
-{"last_update":"1179268837", "numofapproved":"1", "id":"1407"},\r
-{"last_update":"1179999486", "numofapproved":"1", "id":"1645"},\r
-{"last_update":"1180019568", "numofapproved":"1", "id":"1653"},\r
-{"last_update":"1180082061", "numofapproved":"1", "id":"1821"},\r
-{"last_update":"1184181871", "numofapproved":"1", "id":"4642"},\r
-{"last_update":"1184251955", "numofapproved":"1", "id":"4741"},\r
-{"last_update":"1184346893", "numofapproved":"1", "id":"4841"},\r
-{"last_update":"1184773981", "numofapproved":"1", "id":"5001"},\r
-{"last_update":"1185272905", "numofapproved":"1", "id":"5281"},\r
-{"last_update":"1185484083", "numofapproved":"1", "id":"5622"},\r
-{"last_update":"1185897961", "numofapproved":"1", "id":"5861"},\r
-{"last_update":"1186951708", "numofapproved":"1", "id":"6462"},\r
-{"last_update":"1187596311", "numofapproved":"1", "id":"6941"},\r
-{"last_update":"1187766852", "numofapproved":"1", "id":"7201"},\r
-{"last_update":"1188158133", "numofapproved":"1", "id":"7481"},\r
-{"last_update":"1188233835", "numofapproved":"1", "id":"7501"},\r
-{"last_update":"1188269273", "numofapproved":"1", "id":"7561"},\r
-{"last_update":"1177672684", "numofapproved":"1", "id":"1141"},\r
-{"last_update":"1178042016", "numofapproved":"1", "id":"1222"},\r
-{"last_update":"1181646022", "numofapproved":"1", "id":"2801"},\r
-{"last_update":"1181853920", "numofapproved":"1", "id":"3021"},\r
-{"last_update":"1183715836", "numofapproved":"1", "id":"4241"},\r
-{"last_update":"1183726859", "numofapproved":"1", "id":"4281"},\r
-{"last_update":"1189860355", "numofapproved":"1", "id":"9101"},\r
-{"last_update":"1189871747", "numofapproved":"1", "id":"9141"},\r
-{"last_update":"1190380660", "numofapproved":"1", "id":"9681"},\r
-{"last_update":"1190510808", "numofapproved":"1", "id":"9821"},\r
-{"last_update":"1190542013", "numofapproved":"1", "id":"9843"},\r
-{"last_update":"1190665412", "numofapproved":"1", "id":"10081"},\r
-{"last_update":"1190299519", "numofapproved":"1", "id":"9601"},\r
-{"last_update":"1191410594", "numofapproved":"1", "id":"11063"},\r
-{"last_update":"1191505786", "numofapproved":"1", "id":"11341"},\r
-{"last_update":"1191583652", "numofapproved":"1", "id":"11522"},\r
-{"last_update":"1191599712", "numofapproved":"1", "id":"11681"},\r
-{"last_update":"1191602931", "numofapproved":"1", "id":"11721"},\r
-{"last_update":"1191762572", "numofapproved":"1", "id":"11761"},\r
-{"last_update":"1191856256", "numofapproved":"1", "id":"11841"},\r
-{"last_update":"1191937041", "numofapproved":"1", "id":"11921"},\r
-{"last_update":"1179325639", "numofapproved":"1", "id":"1409"},\r
-{"last_update":"1179912165", "numofapproved":"1", "id":"1721"},\r
-{"last_update":"1181119430", "numofapproved":"1", "id":"2321"},\r
-{"last_update":"1184696743", "numofapproved":"1", "id":"4921"},\r
-{"last_update":"1192154847", "numofapproved":"1", "id":"12361"},\r
-{"last_update":"1192237071", "numofapproved":"1", "id":"12501"},\r
-{"last_update":"1178637394", "numofapproved":"1", "id":"1304"},\r
-{"last_update":"1178716778", "numofapproved":"1", "id":"1344"},\r
-{"last_update":"1182937057", "numofapproved":"1", "id":"3622"},\r
-{"last_update":"1183113642", "numofapproved":"1", "id":"3781"},\r
-{"last_update":"1183995467", "numofapproved":"1", "id":"4461"},\r
-{"last_update":"1184223331", "numofapproved":"1", "id":"4721"},\r
-{"last_update":"1190990692", "numofapproved":"1", "id":"10711"},\r
-{"last_update":"1193269310", "numofapproved":"1", "id":"13761"},\r
-{"last_update":"1193735756", "numofapproved":"1", "id":"14441"},\r
-{"last_update":"1194635738", "numofapproved":"1", "id":"15603"},\r
-{"last_update":"1194901721", "numofapproved":"1", "id":"15961"},\r
-{"last_update":"1194949951", "numofapproved":"1", "id":"16141"},\r
-{"last_update":"1194960695", "numofapproved":"1", "id":"16182"},\r
-{"last_update":"1194973974", "numofapproved":"1", "id":"16221"},\r
-{"last_update":"1194946810", "numofapproved":"1", "id":"16102"},\r
-{"last_update":"1194977452", "numofapproved":"1", "id":"16261"},\r
-{"last_update":"1195040385", "numofapproved":"1", "id":"16461"},\r
-{"last_update":"1195053483", "numofapproved":"1", "id":"16561"},\r
-{"last_update":"1195053518", "numofapproved":"1", "id":"16562"},\r
-{"last_update":"1195218698", "numofapproved":"1", "id":"16921"},\r
-{"last_update":"1195225049", "numofapproved":"1", "id":"16961"},\r
-{"last_update":"1195164270", "numofapproved":"1", "id":"16881"},\r
-{"last_update":"1195080947", "numofapproved":"1", "id":"16681"},\r
-{"last_update":"1195469884", "numofapproved":"1", "id":"17181"},\r
-{"last_update":"1185314804", "numofapproved":"1", "id":"5381"},\r
-{"last_update":"1188401767", "numofapproved":"1", "id":"7721"},\r
-{"last_update":"1190286841", "numofapproved":"1", "id":"9582"},\r
-{"last_update":"1190733096", "numofapproved":"1", "id":"10141"},\r
-{"last_update":"1190847451", "numofapproved":"1", "id":"10422"},\r
-{"last_update":"1190990526", "numofapproved":"1", "id":"10707"},\r
-{"last_update":"1192009711", "numofapproved":"1", "id":"12061"},\r
-{"last_update":"1192155478", "numofapproved":"1", "id":"12362"},\r
-{"last_update":"1192468382", "numofapproved":"1", "id":"12641"},\r
-{"last_update":"1193332032", "numofapproved":"1", "id":"13881"},\r
-{"last_update":"1195497290", "numofapproved":"1", "id":"17321"},\r
-{"last_update":"1195519935", "numofapproved":"1", "id":"17441"},\r
-{"last_update":"1195549826", "numofapproved":"1", "id":"17521"},\r
-{"last_update":"1177668131", "numofapproved":"1", "id":"1101"},\r
-{"last_update":"1186835348", "numofapproved":"1", "id":"6421"},\r
-{"last_update":"1191057903", "numofapproved":"1", "id":"10802"},\r
-{"last_update":"1193973906", "numofapproved":"1", "id":"14665"},\r
-{"last_update":"1171904780", "numofapproved":"1", "id":"100"},\r
-{"last_update":"1172677750", "numofapproved":"1", "id":"227"},\r
-{"last_update":"1172686704", "numofapproved":"1", "id":"229"},\r
-{"last_update":"1173101684", "numofapproved":"1", "id":"245"},\r
-{"last_update":"1173466151", "numofapproved":"1", "id":"282"},\r
-{"last_update":"1174301263", "numofapproved":"1", "id":"386"},\r
-{"last_update":"1174302366", "numofapproved":"1", "id":"399"},\r
-{"last_update":"1174501294", "numofapproved":"1", "id":"421"},\r
-{"last_update":"1174899635", "numofapproved":"1", "id":"515"},\r
-{"last_update":"1174924556", "numofapproved":"1", "id":"523"},\r
-{"last_update":"1175141200", "numofapproved":"1", "id":"541"},\r
-{"last_update":"1171799271", "numofapproved":"1", "id":"76"},\r
-{"last_update":"1171900163", "numofapproved":"1", "id":"97"},\r
-{"last_update":"1174301267", "numofapproved":"1", "id":"387"},\r
-{"last_update":"1174735156", "numofapproved":"1", "id":"467"},\r
-{"last_update":"1174899569", "numofapproved":"1", "id":"512"},\r
-{"last_update":"1174926970", "numofapproved":"1", "id":"531"},\r
-{"last_update":"1175502757", "numofapproved":"1", "id":"602"},\r
-{"last_update":"1175603425", "numofapproved":"1", "id":"663"},\r
-{"last_update":"1176194967", "numofapproved":"1", "id":"822"},\r
-{"last_update":"1171800398", "numofapproved":"1", "id":"83"},\r
-{"last_update":"1171968376", "numofapproved":"1", "id":"118"},\r
-{"last_update":"1172070063", "numofapproved":"1", "id":"135"},\r
-{"last_update":"1173821159", "numofapproved":"1", "id":"314"},\r
-{"last_update":"1176559052", "numofapproved":"1", "id":"964"},\r
-{"last_update":"1171299245", "numofapproved":"1", "id":"23"},\r
-{"last_update":"1171535160", "numofapproved":"1", "id":"57"},\r
-{"last_update":"1171564542", "numofapproved":"1", "id":"65"},\r
-{"last_update":"1172646592", "numofapproved":"1", "id":"220"},\r
-{"last_update":"1174899489", "numofapproved":"1", "id":"507"},\r
-{"last_update":"1174924890", "numofapproved":"1", "id":"528"},\r
-{"last_update":"1175687005", "numofapproved":"1", "id":"701"},\r
-{"last_update":"1176132888", "numofapproved":"1", "id":"805"},\r
-{"last_update":"1171286610", "numofapproved":"1", "id":"21"},\r
-{"last_update":"1172184441", "numofapproved":"1", "id":"176"},\r
-{"last_update":"1172187221", "numofapproved":"1", "id":"178"},\r
-{"last_update":"1173386668", "numofapproved":"1", "id":"261"},\r
-{"last_update":"1173809115", "numofapproved":"1", "id":"312"},\r
-{"last_update":"1175609126", "numofapproved":"1", "id":"685"},\r
-{"last_update":"1175791369", "numofapproved":"1", "id":"712"},\r
-{"last_update":"1176480434", "numofapproved":"1", "id":"942"},\r
-{"last_update":"1171503567", "numofapproved":"1", "id":"56"},\r
-{"last_update":"1171799204", "numofapproved":"1", "id":"74"},\r
-{"last_update":"1172236765", "numofapproved":"1", "id":"183"},\r
-{"last_update":"1175598013", "numofapproved":"1", "id":"681"},\r
-{"last_update":"1175610956", "numofapproved":"1", "id":"687"},\r
-{"last_update":"1175725436", "numofapproved":"1", "id":"710"},\r
-{"last_update":"1171905052", "numofapproved":"1", "id":"105"},\r
-{"last_update":"1172268920", "numofapproved":"1", "id":"191"},\r
-{"last_update":"1173264110", "numofapproved":"1", "id":"256"},\r
-{"last_update":"1173889179", "numofapproved":"1", "id":"326"},\r
-{"last_update":"1174301066", "numofapproved":"1", "id":"378"},\r
-{"last_update":"1174300399", "numofapproved":"1", "id":"366"},\r
-{"last_update":"1174387980", "numofapproved":"1", "id":"400"},\r
-{"last_update":"1176823766", "numofapproved":"1", "id":"1007"},\r
-{"last_update":"1171970585", "numofapproved":"1", "id":"122"},\r
-{"last_update":"1172071500", "numofapproved":"1", "id":"145"},\r
-{"last_update":"1172580279", "numofapproved":"1", "id":"211"},\r
-{"last_update":"1172658493", "numofapproved":"1", "id":"221"},\r
-{"last_update":"1174301611", "numofapproved":"1", "id":"397"},\r
-{"last_update":"1176900132", "numofapproved":"1", "id":"989"},\r
-{"last_update":"1171965754", "numofapproved":"1", "id":"114"},\r
-{"last_update":"1173797482", "numofapproved":"1", "id":"309"},\r
-{"last_update":"1174300513", "numofapproved":"1", "id":"367"},\r
-{"last_update":"1174301493", "numofapproved":"1", "id":"395"},\r
-{"last_update":"1174899124", "numofapproved":"1", "id":"492"},\r
-{"last_update":"1174899677", "numofapproved":"1", "id":"517"},\r
-{"last_update":"1174924235", "numofapproved":"1", "id":"522"},\r
-{"last_update":"1174925568", "numofapproved":"1", "id":"529"},\r
-{"last_update":"1174933088", "numofapproved":"1", "id":"533"},\r
-{"last_update":"1174933338", "numofapproved":"1", "id":"538"},\r
-{"last_update":"1174044629", "numofapproved":"1", "id":"352"},\r
-{"last_update":"1175713207", "numofapproved":"1", "id":"669"},\r
-{"last_update":"1178339569", "numofapproved":"1", "id":"1262"},\r
-{"last_update":"1178611427", "numofapproved":"1", "id":"1303"},\r
-{"last_update":"1178707269", "numofapproved":"1", "id":"1341"},\r
-{"last_update":"1179411388", "numofapproved":"1", "id":"1461"},\r
-{"last_update":"1180000879", "numofapproved":"1", "id":"1648"},\r
-{"last_update":"1180097993", "numofapproved":"1", "id":"1657"},\r
-{"last_update":"1180107947", "numofapproved":"1", "id":"1659"},\r
-{"last_update":"1180515935", "numofapproved":"1", "id":"1922"},\r
-{"last_update":"1180712418", "numofapproved":"1", "id":"2102"},\r
-{"last_update":"1180731895", "numofapproved":"1", "id":"2063"},\r
-{"last_update":"1180731763", "numofapproved":"1", "id":"2143"},\r
-{"last_update":"1180951519", "numofapproved":"1", "id":"2201"},\r
-{"last_update":"1180954763", "numofapproved":"1", "id":"2182"},\r
-{"last_update":"1181134185", "numofapproved":"1", "id":"2361"},\r
-{"last_update":"1181206368", "numofapproved":"1", "id":"2441"},\r
-{"last_update":"1181207556", "numofapproved":"1", "id":"2442"},\r
-{"last_update":"1183065868", "numofapproved":"1", "id":"3741"},\r
-{"last_update":"1183124436", "numofapproved":"1", "id":"3822"},\r
-{"last_update":"1183118631", "numofapproved":"1", "id":"3802"},\r
-{"last_update":"1183515629", "numofapproved":"1", "id":"4144"},\r
-{"last_update":"1184169495", "numofapproved":"1", "id":"4621"},\r
-{"last_update":"1184777700", "numofapproved":"1", "id":"5021"},\r
-{"last_update":"1185371099", "numofapproved":"1", "id":"5441"},\r
-{"last_update":"1185460060", "numofapproved":"1", "id":"5521"},\r
-{"last_update":"1185462514", "numofapproved":"1", "id":"5541"},\r
-{"last_update":"1185573050", "numofapproved":"1", "id":"5721"},\r
-{"last_update":"1185795586", "numofapproved":"1", "id":"5781"},\r
-{"last_update":"1185962181", "numofapproved":"1", "id":"5901"},\r
-{"last_update":"1185987024", "numofapproved":"1", "id":"6001"},\r
-{"last_update":"1186138150", "numofapproved":"1", "id":"6105"},\r
-{"last_update":"1186500528", "numofapproved":"1", "id":"6281"},\r
-{"last_update":"1187765075", "numofapproved":"1", "id":"7141"},\r
-{"last_update":"1188158263", "numofapproved":"1", "id":"7482"},\r
-{"last_update":"1189094579", "numofapproved":"1", "id":"8461"},\r
-{"last_update":"1189327635", "numofapproved":"1", "id":"8721"},\r
-{"last_update":"1182356521", "numofapproved":"1", "id":"3344"},\r
-{"last_update":"1185017921", "numofapproved":"1", "id":"5161"},\r
-{"last_update":"1185271167", "numofapproved":"1", "id":"5261"},\r
-{"last_update":"1190663796", "numofapproved":"1", "id":"10041"},\r
-{"last_update":"1190726728", "numofapproved":"1", "id":"10121"},\r
-{"last_update":"1190801144", "numofapproved":"1", "id":"10241"},\r
-{"last_update":"1190894441", "numofapproved":"1", "id":"10502"},\r
-{"last_update":"1190973098", "numofapproved":"1", "id":"10667"},\r
-{"last_update":"1190925124", "numofapproved":"1", "id":"10584"},\r
-{"last_update":"1191249884", "numofapproved":"1", "id":"10961"},\r
-{"last_update":"1187732431", "numofapproved":"1", "id":"7081"},\r
-{"last_update":"1189259179", "numofapproved":"1", "id":"8681"},\r
-{"last_update":"1191446517", "numofapproved":"1", "id":"11183"},\r
-{"last_update":"1191510643", "numofapproved":"1", "id":"11381"},\r
-{"last_update":"1191529640", "numofapproved":"1", "id":"11421"},\r
-{"last_update":"1191588726", "numofapproved":"1", "id":"11602"},\r
-{"last_update":"1191903050", "numofapproved":"1", "id":"11881"},\r
-{"last_update":"1181218459", "numofapproved":"1", "id":"2464"},\r
-{"last_update":"1187024536", "numofapproved":"1", "id":"6581"},\r
-{"last_update":"1192009094", "numofapproved":"1", "id":"12041"},\r
-{"last_update":"1192064048", "numofapproved":"1", "id":"12183"},\r
-{"last_update":"1192061973", "numofapproved":"1", "id":"12181"},\r
-{"last_update":"1193026780", "numofapproved":"1", "id":"13241"},\r
-{"last_update":"1193416409", "numofapproved":"1", "id":"14161"},\r
-{"last_update":"1186992495", "numofapproved":"1", "id":"6481"},\r
-{"last_update":"1191410811", "numofapproved":"1", "id":"11066"},\r
-{"last_update":"1193440748", "numofapproved":"1", "id":"14241"},\r
-{"last_update":"1194252005", "numofapproved":"1", "id":"14884"},\r
-{"last_update":"1194362364", "numofapproved":"1", "id":"14889"},\r
-{"last_update":"1179240103", "numofapproved":"1", "id":"1389"},\r
-{"last_update":"1181812262", "numofapproved":"1", "id":"2922"},\r
-{"last_update":"1182093916", "numofapproved":"1", "id":"3181"},\r
-{"last_update":"1182767688", "numofapproved":"1", "id":"3501"},\r
-{"last_update":"1184181747", "numofapproved":"1", "id":"4661"},\r
-{"last_update":"1186505570", "numofapproved":"1", "id":"6170"},\r
-{"last_update":"1186751068", "numofapproved":"1", "id":"6384"},\r
-{"last_update":"1187558925", "numofapproved":"1", "id":"6921"},\r
-{"last_update":"1188037477", "numofapproved":"1", "id":"7424"},\r
-{"last_update":"1194937530", "numofapproved":"1", "id":"16041"},\r
-{"last_update":"1179754250", "numofapproved":"1", "id":"1562"},\r
-{"last_update":"1183416194", "numofapproved":"1", "id":"4021"},\r
-{"last_update":"1185835616", "numofapproved":"1", "id":"5841"},\r
-{"last_update":"1192731190", "numofapproved":"1", "id":"13141"},\r
-{"last_update":"1193178120", "numofapproved":"1", "id":"13523"},\r
-{"last_update":"1193844805", "numofapproved":"1", "id":"14503"},\r
-{"last_update":"1193909242", "numofapproved":"1", "id":"14525"},\r
-{"last_update":"1195474767", "numofapproved":"1", "id":"17221"},\r
-{"last_update":"1177690781", "numofapproved":"1", "id":"1142"},\r
-{"last_update":"1185373614", "numofapproved":"1", "id":"5461"},\r
-{"last_update":"1192520088", "numofapproved":"1", "id":"12624"},\r
-{"last_update":"1193194444", "numofapproved":"1", "id":"13527"},\r
-{"last_update":"1193387684", "numofapproved":"1", "id":"13950"},\r
-{"last_update":"1193388786", "numofapproved":"1", "id":"13952"},\r
-{"last_update":"1194616895", "numofapproved":"1", "id":"15401"},\r
-{"last_update":"1195034817", "numofapproved":"1", "id":"16441"},\r
-{"last_update":"1183107374", "numofapproved":"1", "id":"3761"},\r
-{"last_update":"1183515040", "numofapproved":"1", "id":"4121"},\r
-{"last_update":"1184744160", "numofapproved":"1", "id":"4942"},\r
-{"last_update":"1192094830", "numofapproved":"1", "id":"12201"},\r
-{"last_update":"1193314411", "numofapproved":"1", "id":"13821"},\r
-{"last_update":"1193391901", "numofapproved":"1", "id":"13957"},\r
-{"last_update":"1193399824", "numofapproved":"1", "id":"14043"},\r
-{"last_update":"1194450353", "numofapproved":"1", "id":"15181"},\r
-{"last_update":"1194474719", "numofapproved":"1", "id":"15241"},\r
-{"last_update":"1194622799", "numofapproved":"1", "id":"15481"},\r
-{"last_update":"1194880827", "numofapproved":"1", "id":"15901"},\r
-{"last_update":"1182363929", "numofapproved":"1", "id":"3347"},\r
-{"last_update":"1182952243", "numofapproved":"1", "id":"3642"},\r
-{"last_update":"1183386876", "numofapproved":"1", "id":"3962"},\r
-{"last_update":"1193178314", "numofapproved":"1", "id":"13524"},\r
-{"last_update":"1195376577", "numofapproved":"1", "id":"17061"},\r
-{"last_update":"1179832847", "numofapproved":"1", "id":"1621"},\r
-{"last_update":"1184053269", "numofapproved":"1", "id":"4521"},\r
-{"last_update":"1185024744", "numofapproved":"1", "id":"5181"},\r
-{"last_update":"1186130324", "numofapproved":"1", "id":"6101"},\r
-{"last_update":"1192529640", "numofapproved":"1", "id":"12662"},\r
-{"last_update":"1193158482", "numofapproved":"1", "id":"13521"},\r
-{"last_update":"1194247788", "numofapproved":"1", "id":"14883"},\r
-{"last_update":"1182363717", "numofapproved":"1", "id":"3346"},\r
-{"last_update":"1193386824", "numofapproved":"1", "id":"13944"},\r
-{"last_update":"1193844655", "numofapproved":"1", "id":"14502"},\r
-{"last_update":"1180732326", "numofapproved":"1", "id":"2064"},\r
-{"last_update":"1182247493", "numofapproved":"1", "id":"3222"},\r
-{"last_update":"1183515318", "numofapproved":"1", "id":"4143"},\r
-{"last_update":"1184840285", "numofapproved":"1", "id":"5061"},\r
-{"last_update":"1188458821", "numofapproved":"1", "id":"7741"},\r
-{"last_update":"1188919582", "numofapproved":"1", "id":"8241"},\r
-{"last_update":"1190990231", "numofapproved":"1", "id":"10701"},\r
-{"last_update":"1190990557", "numofapproved":"1", "id":"10708"},\r
-{"last_update":"1191583611", "numofapproved":"1", "id":"11521"},\r
-{"last_update":"1192031263", "numofapproved":"1", "id":"12102"},\r
-{"last_update":"1192431349", "numofapproved":"1", "id":"12563"},\r
-{"last_update":"1192608972", "numofapproved":"1", "id":"12801"},\r
-{"last_update":"1193244196", "numofapproved":"1", "id":"13641"},\r
-{"last_update":"1193733530", "numofapproved":"1", "id":"14422"},\r
-{"last_update":"1194988770", "numofapproved":"1", "id":"16381"},\r
-{"last_update":"1195050890", "numofapproved":"1", "id":"16541"},\r
-{"last_update":"1195047262", "numofapproved":"1", "id":"16502"},\r
-{"last_update":"1195221672", "numofapproved":"1", "id":"16941"},\r
-{"last_update":"1195400016", "numofapproved":"1", "id":"17103"},\r
-{"last_update":"1178716622", "numofapproved":"1", "id":"1343"},\r
-{"last_update":"1183563126", "numofapproved":"1", "id":"4181"},\r
-{"last_update":"1183970953", "numofapproved":"1", "id":"4402"},\r
-{"last_update":"1190149151", "numofapproved":"1", "id":"9381"},\r
-{"last_update":"1190628937", "numofapproved":"1", "id":"9921"},\r
-{"last_update":"1190908511", "numofapproved":"1", "id":"10521"},\r
-{"last_update":"1191365468", "numofapproved":"1", "id":"11021"},\r
-{"last_update":"1192431054", "numofapproved":"1", "id":"12561"},\r
-{"last_update":"1188938163", "numofapproved":"1", "id":"8281"},\r
-{"last_update":"1192155298", "numofapproved":"1", "id":"12383"},\r
-{"last_update":"1193223714", "numofapproved":"1", "id":"13561"},\r
-{"last_update":"1171799359", "numofapproved":"1", "id":"80"},\r
-{"last_update":"1171962550", "numofapproved":"1", "id":"112"},\r
-{"last_update":"1171965210", "numofapproved":"1", "id":"113"},\r
-{"last_update":"1171980888", "numofapproved":"1", "id":"128"},\r
-{"last_update":"1174299174", "numofapproved":"1", "id":"361"},\r
-{"last_update":"1174301053", "numofapproved":"1", "id":"376"},\r
-{"last_update":"1174899661", "numofapproved":"1", "id":"516"},\r
-{"last_update":"1172646493", "numofapproved":"1", "id":"218"},\r
-{"last_update":"1174899018", "numofapproved":"1", "id":"487"},\r
-{"last_update":"1175091201", "numofapproved":"1", "id":"540"},\r
-{"last_update":"1175267243", "numofapproved":"1", "id":"564"},\r
-{"last_update":"1176293117", "numofapproved":"1", "id":"826"},\r
-{"last_update":"1171602873", "numofapproved":"1", "id":"67"},\r
-{"last_update":"1172568714", "numofapproved":"1", "id":"210"},\r
-{"last_update":"1174300556", "numofapproved":"1", "id":"369"},\r
-{"last_update":"1174301614", "numofapproved":"1", "id":"398"},\r
-{"last_update":"1174429050", "numofapproved":"1", "id":"404"},\r
-{"last_update":"1175547821", "numofapproved":"1", "id":"641"},\r
-{"last_update":"1175696551", "numofapproved":"1", "id":"702"},\r
-{"last_update":"1176223342", "numofapproved":"1", "id":"823"},\r
-{"last_update":"1176459077", "numofapproved":"1", "id":"905"},\r
-{"last_update":"1172169117", "numofapproved":"1", "id":"172"},\r
-{"last_update":"1172259821", "numofapproved":"1", "id":"189"},\r
-{"last_update":"1172847347", "numofapproved":"1", "id":"237"},\r
-{"last_update":"1176485274", "numofapproved":"1", "id":"961"},\r
-{"last_update":"1176739199", "numofapproved":"1", "id":"983"},\r
-{"last_update":"1171710108", "numofapproved":"1", "id":"72"},\r
-{"last_update":"1172147854", "numofapproved":"1", "id":"170"},\r
-{"last_update":"1172178657", "numofapproved":"1", "id":"173"},\r
-{"last_update":"1174933210", "numofapproved":"1", "id":"535"},\r
-{"last_update":"1175502973", "numofapproved":"1", "id":"626"},\r
-{"last_update":"1172071610", "numofapproved":"1", "id":"146"},\r
-{"last_update":"1172847402", "numofapproved":"1", "id":"240"},\r
-{"last_update":"1173282970", "numofapproved":"1", "id":"258"},\r
-{"last_update":"1175502729", "numofapproved":"1", "id":"621"},\r
-{"last_update":"1173889203", "numofapproved":"1", "id":"327"},\r
-{"last_update":"1174301604", "numofapproved":"1", "id":"396"},\r
-{"last_update":"1176738556", "numofapproved":"1", "id":"1005"},\r
-{"last_update":"1171287066", "numofapproved":"1", "id":"22"},\r
-{"last_update":"1171388951", "numofapproved":"1", "id":"46"},\r
-{"last_update":"1171645099", "numofapproved":"1", "id":"70"},\r
-{"last_update":"1174301489", "numofapproved":"1", "id":"394"},\r
-{"last_update":"1176109438", "numofapproved":"1", "id":"804"},\r
-{"last_update":"1173203622", "numofapproved":"1", "id":"251"},\r
-{"last_update":"1174300337", "numofapproved":"1", "id":"364"},\r
-{"last_update":"1174898999", "numofapproved":"1", "id":"486"},\r
-{"last_update":"1174899221", "numofapproved":"1", "id":"497"},\r
-{"last_update":"1174899505", "numofapproved":"1", "id":"508"},\r
-{"last_update":"1171905996", "numofapproved":"1", "id":"106"},\r
-{"last_update":"1172003938", "numofapproved":"1", "id":"131"},\r
-{"last_update":"1172134183", "numofapproved":"1", "id":"167"},\r
-{"last_update":"1178550080", "numofapproved":"1", "id":"1301"},\r
-{"last_update":"1178718229", "numofapproved":"1", "id":"1346"},\r
-{"last_update":"1178725187", "numofapproved":"1", "id":"1322"},\r
-{"last_update":"1179302219", "numofapproved":"1", "id":"1392"},\r
-{"last_update":"1180015260", "numofapproved":"1", "id":"1650"},\r
-{"last_update":"1180088452", "numofapproved":"1", "id":"1656"},\r
-{"last_update":"1180719498", "numofapproved":"1", "id":"2121"},\r
-{"last_update":"1180731930", "numofapproved":"1", "id":"2145"},\r
-{"last_update":"1180731601", "numofapproved":"1", "id":"2142"},\r
-{"last_update":"1181034337", "numofapproved":"1", "id":"2281"},\r
-{"last_update":"1181222113", "numofapproved":"1", "id":"2501"},\r
-{"last_update":"1181254636", "numofapproved":"1", "id":"2601"},\r
-{"last_update":"1181578682", "numofapproved":"1", "id":"2762"},\r
-{"last_update":"1181731051", "numofapproved":"1", "id":"2881"},\r
-{"last_update":"1177673345", "numofapproved":"1", "id":"1162"},\r
-{"last_update":"1183741680", "numofapproved":"1", "id":"4301"},\r
-{"last_update":"1183988623", "numofapproved":"1", "id":"4441"},\r
-{"last_update":"1184217947", "numofapproved":"1", "id":"4701"},\r
-{"last_update":"1186260146", "numofapproved":"1", "id":"6181"},\r
-{"last_update":"1186289860", "numofapproved":"1", "id":"6163"},\r
-{"last_update":"1186235477", "numofapproved":"1", "id":"6161"},\r
-{"last_update":"1186508996", "numofapproved":"1", "id":"6171"},\r
-{"last_update":"1187626570", "numofapproved":"1", "id":"6961"},\r
-{"last_update":"1187713755", "numofapproved":"1", "id":"7041"},\r
-{"last_update":"1187769208", "numofapproved":"1", "id":"7222"},\r
-{"last_update":"1187856827", "numofapproved":"1", "id":"7341"},\r
-{"last_update":"1188053850", "numofapproved":"1", "id":"7461"},\r
-{"last_update":"1188264856", "numofapproved":"1", "id":"7541"},\r
-{"last_update":"1188319841", "numofapproved":"1", "id":"7681"},\r
-{"last_update":"1188582632", "numofapproved":"1", "id":"7901"},\r
-{"last_update":"1188734330", "numofapproved":"1", "id":"8001"},\r
-{"last_update":"1189003562", "numofapproved":"1", "id":"8381"},\r
-{"last_update":"1179787121", "numofapproved":"1", "id":"1581"},\r
-{"last_update":"1181998896", "numofapproved":"1", "id":"3121"},\r
-{"last_update":"1182274782", "numofapproved":"1", "id":"3261"},\r
-{"last_update":"1186350397", "numofapproved":"1", "id":"6241"},\r
-{"last_update":"1187354512", "numofapproved":"1", "id":"6881"},\r
-{"last_update":"1188918086", "numofapproved":"1", "id":"8221"},\r
-{"last_update":"1190392989", "numofapproved":"1", "id":"9721"},\r
-{"last_update":"1190925022", "numofapproved":"1", "id":"10583"},\r
-{"last_update":"1190959571", "numofapproved":"1", "id":"10601"},\r
-{"last_update":"1190990357", "numofapproved":"1", "id":"10705"},\r
-{"last_update":"1190990656", "numofapproved":"1", "id":"10710"},\r
-{"last_update":"1191226364", "numofapproved":"1", "id":"10921"},\r
-{"last_update":"1180011741", "numofapproved":"1", "id":"1761"},\r
-{"last_update":"1180533694", "numofapproved":"1", "id":"1961"},\r
-{"last_update":"1180731839", "numofapproved":"1", "id":"2144"},\r
-{"last_update":"1181461876", "numofapproved":"1", "id":"2681"},\r
-{"last_update":"1181855690", "numofapproved":"1", "id":"3061"},\r
-{"last_update":"1189537687", "numofapproved":"1", "id":"8821"},\r
-{"last_update":"1189937430", "numofapproved":"1", "id":"9161"},\r
-{"last_update":"1190803903", "numofapproved":"1", "id":"10261"},\r
-{"last_update":"1190973051", "numofapproved":"1", "id":"10664"},\r
-{"last_update":"1191410739", "numofapproved":"1", "id":"11064"},\r
-{"last_update":"1191426697", "numofapproved":"1", "id":"11121"},\r
-{"last_update":"1191446459", "numofapproved":"1", "id":"11182"},\r
-{"last_update":"1191450891", "numofapproved":"1", "id":"11201"},\r
-{"last_update":"1191550000", "numofapproved":"1", "id":"11441"},\r
-{"last_update":"1191588714", "numofapproved":"1", "id":"11601"},\r
-{"last_update":"1191596815", "numofapproved":"1", "id":"11641"},\r
-{"last_update":"1191647971", "numofapproved":"1", "id":"11741"},\r
-{"last_update":"1191949660", "numofapproved":"1", "id":"11981"},\r
-{"last_update":"1180641844", "numofapproved":"1", "id":"2001"},\r
-{"last_update":"1188319710", "numofapproved":"1", "id":"7661"},\r
-{"last_update":"1189169640", "numofapproved":"1", "id":"8621"},\r
-{"last_update":"1192028009", "numofapproved":"1", "id":"12081"},\r
-{"last_update":"1192116783", "numofapproved":"1", "id":"12261"},\r
-{"last_update":"1192558715", "numofapproved":"1", "id":"12741"},\r
-{"last_update":"1192727702", "numofapproved":"1", "id":"13101"},\r
-{"last_update":"1193035517", "numofapproved":"1", "id":"13262"},\r
-{"last_update":"1193080239", "numofapproved":"1", "id":"13381"},\r
-{"last_update":"1193268912", "numofapproved":"1", "id":"13722"},\r
-{"last_update":"1193386894", "numofapproved":"1", "id":"13946"},\r
-{"last_update":"1193388087", "numofapproved":"1", "id":"13982"},\r
-{"last_update":"1179841973", "numofapproved":"1", "id":"1642"},\r
-{"last_update":"1179842066", "numofapproved":"1", "id":"1662"},\r
-{"last_update":"1185971695", "numofapproved":"1", "id":"5941"},\r
-{"last_update":"1186137440", "numofapproved":"1", "id":"6103"},\r
-{"last_update":"1192823224", "numofapproved":"1", "id":"13181"},\r
-{"last_update":"1193921116", "numofapproved":"1", "id":"14581"},\r
-{"last_update":"1193918035", "numofapproved":"1", "id":"14544"},\r
-{"last_update":"1193973759", "numofapproved":"1", "id":"14663"},\r
-{"last_update":"1194004166", "numofapproved":"1", "id":"14721"},\r
-{"last_update":"1194020795", "numofapproved":"1", "id":"14761"},\r
-{"last_update":"1194021069", "numofapproved":"1", "id":"14781"},\r
-{"last_update":"1194283444", "numofapproved":"1", "id":"14887"},\r
-{"last_update":"1194436909", "numofapproved":"1", "id":"15141"},\r
-{"last_update":"1194538247", "numofapproved":"1", "id":"15341"},\r
-{"last_update":"1180031440", "numofapproved":"1", "id":"1801"},\r
-{"last_update":"1181823965", "numofapproved":"1", "id":"2941"},\r
-{"last_update":"1182846565", "numofapproved":"1", "id":"3561"},\r
-{"last_update":"1185872587", "numofapproved":"1", "id":"5843"},\r
-{"last_update":"1186472951", "numofapproved":"1", "id":"6168"},\r
-{"last_update":"1189937606", "numofapproved":"1", "id":"9181"},\r
-{"last_update":"1193389026", "numofapproved":"1", "id":"13955"},\r
-{"last_update":"1192130592", "numofapproved":"1", "id":"12321"},\r
-{"last_update":"1194387386", "numofapproved":"1", "id":"15061"},\r
-{"last_update":"1179336536", "numofapproved":"1", "id":"1396"},\r
-{"last_update":"1182280246", "numofapproved":"1", "id":"3281"},\r
-{"last_update":"1183394591", "numofapproved":"1", "id":"4001"},\r
-{"last_update":"1184677502", "numofapproved":"1", "id":"4909"},\r
-{"last_update":"1186144184", "numofapproved":"1", "id":"6106"},\r
-{"last_update":"1187191683", "numofapproved":"1", "id":"6701"},\r
-{"last_update":"1193909594", "numofapproved":"1", "id":"14527"},\r
-{"last_update":"1194435747", "numofapproved":"1", "id":"15121"},\r
-{"last_update":"1184252278", "numofapproved":"1", "id":"4761"},\r
-{"last_update":"1194854996", "numofapproved":"1", "id":"15721"},\r
-{"last_update":"1194937730", "numofapproved":"1", "id":"16045"},\r
-{"last_update":"1193076864", "numofapproved":"1", "id":"13361"},\r
-{"last_update":"1194904087", "numofapproved":"1", "id":"15981"},\r
-{"last_update":"1181853751", "numofapproved":"1", "id":"3001"},\r
-{"last_update":"1182075529", "numofapproved":"1", "id":"3161"},\r
-{"last_update":"1184883226", "numofapproved":"1", "id":"5081"},\r
-{"last_update":"1186136013", "numofapproved":"1", "id":"6102"},\r
-{"last_update":"1193147983", "numofapproved":"1", "id":"13481"},\r
-{"last_update":"1194532658", "numofapproved":"1", "id":"15301"},\r
-{"last_update":"1194937763", "numofapproved":"1", "id":"16046"},\r
-{"last_update":"1195225183", "numofapproved":"1", "id":"16981"},\r
-{"last_update":"1180616624", "numofapproved":"1", "id":"1981"},\r
-{"last_update":"1183019269", "numofapproved":"1", "id":"3701"},\r
-{"last_update":"1188656338", "numofapproved":"1", "id":"7941"},\r
-{"last_update":"1178799062", "numofapproved":"1", "id":"1353"},\r
-{"last_update":"1178905809", "numofapproved":"1", "id":"1360"},\r
-{"last_update":"1179311575", "numofapproved":"1", "id":"1408"},\r
-{"last_update":"1182507595", "numofapproved":"1", "id":"3461"},\r
-{"last_update":"1184254004", "numofapproved":"1", "id":"4781"},\r
-{"last_update":"1187938257", "numofapproved":"1", "id":"7381"},\r
-{"last_update":"1188473327", "numofapproved":"1", "id":"7801"},\r
-{"last_update":"1189102174", "numofapproved":"1", "id":"8481"},\r
-{"last_update":"1191419747", "numofapproved":"1", "id":"11102"},\r
-{"last_update":"1193389169", "numofapproved":"1", "id":"14002"},\r
-{"last_update":"1194440930", "numofapproved":"1", "id":"15102"},\r
-{"last_update":"1194855848", "numofapproved":"1", "id":"15741"},\r
-{"last_update":"1194862162", "numofapproved":"1", "id":"15841"},\r
-{"last_update":"1194923605", "numofapproved":"1", "id":"16021"},\r
-{"last_update":"1194950051", "numofapproved":"1", "id":"16142"},\r
-{"last_update":"1194960554", "numofapproved":"1", "id":"16181"},\r
-{"last_update":"1194988868", "numofapproved":"1", "id":"16382"},\r
-{"last_update":"1195058276", "numofapproved":"1", "id":"16601"},\r
-{"last_update":"1195469960", "numofapproved":"1", "id":"17201"},\r
-{"last_update":"1178648361", "numofapproved":"1", "id":"1311"},\r
-{"last_update":"1183970840", "numofapproved":"1", "id":"4401"},\r
-{"last_update":"1184838534", "numofapproved":"1", "id":"5041"},\r
-{"last_update":"1190745858", "numofapproved":"1", "id":"10161"},\r
-{"last_update":"1191587968", "numofapproved":"1", "id":"11581"},\r
-{"last_update":"1189773687", "numofapproved":"1", "id":"9021"},\r
-{"last_update":"1192612866", "numofapproved":"1", "id":"12804"},\r
-{"last_update":"1193746024", "numofapproved":"1", "id":"14461"},\r
-{"last_update":"1193918117", "numofapproved":"1", "id":"14561"},\r
-{"last_update":"1194981013", "numofapproved":"1", "id":"16321"},\r
-{"last_update":"1195546695", "numofapproved":"1", "id":"17481"},\r
-{"last_update":"1177592107", "numofapproved":"1", "id":"1047"},\r
-{"last_update":"1183569612", "numofapproved":"1", "id":"4221"},\r
-{"last_update":"1186770649", "numofapproved":"1", "id":"6401"},\r
-{"last_update":"1187707518", "numofapproved":"1", "id":"7021"},\r
-{"last_update":"1187769297", "numofapproved":"1", "id":"7223"},\r
-{"last_update":"1187798945", "numofapproved":"1", "id":"7241"},\r
-{"last_update":"1187820883", "numofapproved":"1", "id":"7261"},\r
-{"last_update":"1190286816", "numofapproved":"1", "id":"9581"},\r
-{"last_update":"1190541964", "numofapproved":"1", "id":"9842"},\r
-{"last_update":"1190500569", "numofapproved":"1", "id":"9802"},\r
-{"last_update":"1190800190", "numofapproved":"1", "id":"10222"},\r
-{"last_update":"1190965460", "numofapproved":"1", "id":"10642"},\r
-{"last_update":"1192120899", "numofapproved":"1", "id":"12301"},\r
-{"last_update":"1193265675", "numofapproved":"1", "id":"13701"},\r
-{"last_update":"1194508196", "numofapproved":"1", "id":"15261"},\r
-{"last_update":"1172503197", "numofapproved":"1", "id":"196"},\r
-{"last_update":"1172847366", "numofapproved":"1", "id":"238"},\r
-{"last_update":"1173975764", "numofapproved":"1", "id":"347"},\r
-{"last_update":"1174301010", "numofapproved":"1", "id":"375"},\r
-{"last_update":"1174899614", "numofapproved":"1", "id":"514"},\r
-{"last_update":"1174924853", "numofapproved":"1", "id":"527"},\r
-{"last_update":"1175270318", "numofapproved":"1", "id":"567"},\r
-{"last_update":"1174933246", "numofapproved":"1", "id":"536"},\r
-{"last_update":"1176369900", "numofapproved":"1", "id":"889"},\r
-{"last_update":"1171102836", "numofapproved":"1", "id":"2"},\r
-{"last_update":"1171970451", "numofapproved":"1", "id":"121"},\r
-{"last_update":"1174898953", "numofapproved":"1", "id":"484"},\r
-{"last_update":"1175610845", "numofapproved":"1", "id":"664"},\r
-{"last_update":"1176313569", "numofapproved":"1", "id":"885"},\r
-{"last_update":"1171878648", "numofapproved":"1", "id":"89"},\r
-{"last_update":"1171897268", "numofapproved":"1", "id":"96"},\r
-{"last_update":"1172326187", "numofapproved":"1", "id":"193"},\r
-{"last_update":"1176106905", "numofapproved":"1", "id":"802"},\r
-{"last_update":"1176389540", "numofapproved":"1", "id":"891"},\r
-{"last_update":"1171318806", "numofapproved":"1", "id":"24"},\r
-{"last_update":"1171601548", "numofapproved":"1", "id":"66"},\r
-{"last_update":"1172148331", "numofapproved":"1", "id":"171"},\r
-{"last_update":"1172686680", "numofapproved":"1", "id":"228"},\r
-{"last_update":"1173793572", "numofapproved":"1", "id":"308"},\r
-{"last_update":"1174899594", "numofapproved":"1", "id":"513"},\r
-{"last_update":"1174898936", "numofapproved":"1", "id":"483"},\r
-{"last_update":"1175502773", "numofapproved":"1", "id":"622"},\r
-{"last_update":"1175722537", "numofapproved":"1", "id":"709"},\r
-{"last_update":"1175764633", "numofapproved":"1", "id":"672"},\r
-{"last_update":"1175797156", "numofapproved":"1", "id":"721"},\r
-{"last_update":"1175899070", "numofapproved":"1", "id":"785"},\r
-{"last_update":"1176106959", "numofapproved":"1", "id":"803"},\r
-{"last_update":"1176228460", "numofapproved":"1", "id":"824"},\r
-{"last_update":"1176488163", "numofapproved":"1", "id":"962"},\r
-{"last_update":"1172068869", "numofapproved":"1", "id":"133"},\r
-{"last_update":"1172847381", "numofapproved":"1", "id":"239"},\r
-{"last_update":"1173888657", "numofapproved":"1", "id":"320"},\r
-{"last_update":"1171449446", "numofapproved":"1", "id":"48"},\r
-{"last_update":"1175287424", "numofapproved":"1", "id":"581"},\r
-{"last_update":"1175502897", "numofapproved":"1", "id":"624"},\r
-{"last_update":"1175503020", "numofapproved":"1", "id":"605"},\r
-{"last_update":"1172848367", "numofapproved":"1", "id":"243"},\r
-{"last_update":"1174301060", "numofapproved":"1", "id":"377"},\r
-{"last_update":"1176824481", "numofapproved":"1", "id":"986"},\r
-{"last_update":"1171275893", "numofapproved":"1", "id":"6"},\r
-{"last_update":"1172546216", "numofapproved":"1", "id":"206"},\r
-{"last_update":"1175502705", "numofapproved":"1", "id":"601"},\r
-{"last_update":"1173962671", "numofapproved":"1", "id":"341"},\r
-{"last_update":"1173975403", "numofapproved":"1", "id":"342"},\r
-{"last_update":"1173816295", "numofapproved":"1", "id":"313"},\r
-{"last_update":"1174301256", "numofapproved":"1", "id":"384"},\r
-{"last_update":"1174933293", "numofapproved":"1", "id":"537"},\r
-{"last_update":"1176899419", "numofapproved":"1", "id":"988"},\r
-{"last_update":"1173975599", "numofapproved":"1", "id":"345"},\r
-{"last_update":"1174041960", "numofapproved":"1", "id":"351"},\r
-{"last_update":"1175759476", "numofapproved":"1", "id":"671"},\r
-{"last_update":"1178195644", "numofapproved":"1", "id":"1207"},\r
-{"last_update":"1178725318", "numofapproved":"1", "id":"1348"},\r
-{"last_update":"1179333492", "numofapproved":"1", "id":"1421"},\r
-{"last_update":"1179999737", "numofapproved":"1", "id":"1646"},\r
-{"last_update":"1180710770", "numofapproved":"1", "id":"2062"},\r
-{"last_update":"1182868347", "numofapproved":"1", "id":"3601"},\r
-{"last_update":"1182932927", "numofapproved":"1", "id":"3621"},\r
-{"last_update":"1183115054", "numofapproved":"1", "id":"3784"},\r
-{"last_update":"1180000741", "numofapproved":"1", "id":"1647"},\r
-{"last_update":"1181292582", "numofapproved":"1", "id":"2621"},\r
-{"last_update":"1184181581", "numofapproved":"1", "id":"4641"},\r
-{"last_update":"1185280501", "numofapproved":"1", "id":"5301"},\r
-{"last_update":"1185471699", "numofapproved":"1", "id":"5561"},\r
-{"last_update":"1185542771", "numofapproved":"1", "id":"5701"},\r
-{"last_update":"1186650650", "numofapproved":"1", "id":"6361"},\r
-{"last_update":"1186951065", "numofapproved":"1", "id":"6461"},\r
-{"last_update":"1187769080", "numofapproved":"1", "id":"7221"},\r
-{"last_update":"1187887905", "numofapproved":"1", "id":"7348"},\r
-{"last_update":"1188001607", "numofapproved":"1", "id":"7423"},\r
-{"last_update":"1188463414", "numofapproved":"1", "id":"7762"},\r
-{"last_update":"1188555813", "numofapproved":"1", "id":"7861"},\r
-{"last_update":"1188634622", "numofapproved":"1", "id":"7921"},\r
-{"last_update":"1189543954", "numofapproved":"1", "id":"8841"},\r
-{"last_update":"1177511009", "numofapproved":"1", "id":"1043"},\r
-{"last_update":"1181898808", "numofapproved":"1", "id":"3081"},\r
-{"last_update":"1182247483", "numofapproved":"1", "id":"3221"},\r
-{"last_update":"1187024005", "numofapproved":"1", "id":"6562"},\r
-{"last_update":"1189839471", "numofapproved":"1", "id":"9081"},\r
-{"last_update":"1190018380", "numofapproved":"1", "id":"9241"},\r
-{"last_update":"1190149586", "numofapproved":"1", "id":"9401"},\r
-{"last_update":"1190652684", "numofapproved":"1", "id":"9981"},\r
-{"last_update":"1190662296", "numofapproved":"1", "id":"10022"},\r
-{"last_update":"1190813509", "numofapproved":"1", "id":"10281"},\r
-{"last_update":"1190826005", "numofapproved":"1", "id":"10403"},\r
-{"last_update":"1190991166", "numofapproved":"1", "id":"10722"},\r
-{"last_update":"1191057700", "numofapproved":"1", "id":"10801"},\r
-{"last_update":"1191161241", "numofapproved":"1", "id":"10821"},\r
-{"last_update":"1191227885", "numofapproved":"1", "id":"10941"},\r
-{"last_update":"1182537005", "numofapproved":"1", "id":"3481"},\r
-{"last_update":"1185018401", "numofapproved":"1", "id":"5162"},\r
-{"last_update":"1186752963", "numofapproved":"1", "id":"6386"},\r
-{"last_update":"1190660077", "numofapproved":"1", "id":"10001"},\r
-{"last_update":"1191319062", "numofapproved":"1", "id":"10981"},\r
-{"last_update":"1191446097", "numofapproved":"1", "id":"11161"},\r
-{"last_update":"1191446587", "numofapproved":"1", "id":"11184"},\r
-{"last_update":"1191470824", "numofapproved":"1", "id":"11221"},\r
-{"last_update":"1191526821", "numofapproved":"1", "id":"11401"},\r
-{"last_update":"1191585471", "numofapproved":"1", "id":"11561"},\r
-{"last_update":"1191602213", "numofapproved":"1", "id":"11701"},\r
-{"last_update":"1191845720", "numofapproved":"1", "id":"11821"},\r
-{"last_update":"1191933874", "numofapproved":"1", "id":"11902"},\r
-{"last_update":"1191933897", "numofapproved":"1", "id":"11903"},\r
-{"last_update":"1177673238", "numofapproved":"1", "id":"1161"},\r
-{"last_update":"1181601542", "numofapproved":"1", "id":"2781"},\r
-{"last_update":"1182869532", "numofapproved":"1", "id":"3583"},\r
-{"last_update":"1183315879", "numofapproved":"1", "id":"3881"},\r
-{"last_update":"1187097870", "numofapproved":"1", "id":"6641"},\r
-{"last_update":"1190148660", "numofapproved":"1", "id":"9361"},\r
-{"last_update":"1192248648", "numofapproved":"1", "id":"12521"},\r
-{"last_update":"1192702958", "numofapproved":"1", "id":"13001"},\r
-{"last_update":"1193387721", "numofapproved":"1", "id":"13981"},\r
-{"last_update":"1193391276", "numofapproved":"1", "id":"14021"},\r
-{"last_update":"1193397051", "numofapproved":"1", "id":"14061"},\r
-{"last_update":"1193592081", "numofapproved":"1", "id":"14321"},\r
-{"last_update":"1188474438", "numofapproved":"1", "id":"7821"},\r
-{"last_update":"1190158372", "numofapproved":"1", "id":"9441"},\r
-{"last_update":"1193648459", "numofapproved":"1", "id":"14361"},\r
-{"last_update":"1193999834", "numofapproved":"1", "id":"14681"},\r
-{"last_update":"1194200119", "numofapproved":"1", "id":"14861"},\r
-{"last_update":"1194528747", "numofapproved":"1", "id":"15111"},\r
-{"last_update":"1179150787", "numofapproved":"1", "id":"1384"},\r
-{"last_update":"1179266496", "numofapproved":"1", "id":"1390"},\r
-{"last_update":"1179508139", "numofapproved":"1", "id":"1501"},\r
-{"last_update":"1179842157", "numofapproved":"1", "id":"1664"},\r
-{"last_update":"1179842347", "numofapproved":"1", "id":"1668"},\r
-{"last_update":"1181245388", "numofapproved":"1", "id":"2562"},\r
-{"last_update":"1181311044", "numofapproved":"1", "id":"2661"},\r
-{"last_update":"1181545818", "numofapproved":"1", "id":"2701"},\r
-{"last_update":"1181934881", "numofapproved":"1", "id":"3103"},\r
-{"last_update":"1187020798", "numofapproved":"1", "id":"6541"},\r
-{"last_update":"1187271377", "numofapproved":"1", "id":"6801"},\r
-{"last_update":"1196086904", "numofapproved":"1", "id":"17545"},\r
-{"last_update":"1196266437", "numofapproved":"2", "id":"17662"},\r
-{"last_update":"1196266638", "numofapproved":"2", "id":"17663"},\r
-{"last_update":"1197533251", "numofapproved":"1", "id":"17901"},\r
-{"last_update":"1197533384", "numofapproved":"1", "id":"17923"},\r
-{"last_update":"1197556776", "numofapproved":"2", "id":"17941"},\r
-{"last_update":"1200059354", "numofapproved":"1", "id":"17981"},\r
-{"last_update":"1200576144", "numofapproved":"1", "id":"18001"},\r
-{"last_update":"1200576230", "numofapproved":"1", "id":"18002"},\r
-{"last_update":"1200657266", "numofapproved":"1", "id":"18041"},\r
-{"last_update":"1201510556", "numofapproved":"1", "id":"18061"},\r
-{"last_update":"1196087136", "numofapproved":"1", "id":"17546"},\r
-{"last_update":"1196087269", "numofapproved":"1", "id":"17547"},\r
-{"last_update":"1196087335", "numofapproved":"1", "id":"17548"},\r
-{"last_update":"1196087379", "numofapproved":"1", "id":"17549"},\r
-{"last_update":"1196087427", "numofapproved":"1", "id":"17550"},\r
-{"last_update":"1196096347", "numofapproved":"1", "id":"17581"},\r
-{"last_update":"1196265997", "numofapproved":"2", "id":"17661"},\r
-{"last_update":"1196266785", "numofapproved":"1", "id":"17664"},\r
-{"last_update":"1196270058", "numofapproved":"1", "id":"17701"},\r
-{"last_update":"1196431875", "numofapproved":"1", "id":"17804"},\r
-{"last_update":"1197635044", "numofapproved":"1", "id":"17961"},\r
-{"last_update":"1202720206", "numofapproved":"2", "id":"18084"},\r
-{"last_update":"1196267153", "numofapproved":"1", "id":"17681"},\r
-{"last_update":"1196090749", "numofapproved":"1", "id":"17569"},\r
-{"last_update":"1196162163", "numofapproved":"2", "id":"17641"},\r
-{"last_update":"1196345846", "numofapproved":"1", "id":"17721"},\r
-{"last_update":"1196088254", "numofapproved":"1", "id":"17552"},\r
-{"last_update":"1196088437", "numofapproved":"1", "id":"17564"},\r
-{"last_update":"1196088477", "numofapproved":"1", "id":"17565"},\r
-{"last_update":"1196088537", "numofapproved":"1", "id":"17566"},\r
-{"last_update":"1196088894", "numofapproved":"1", "id":"17567"},\r
-{"last_update":"1196090414", "numofapproved":"1", "id":"17554"},\r
-{"last_update":"1196097621", "numofapproved":"1", "id":"17601"},\r
-{"last_update":"1196097710", "numofapproved":"1", "id":"17602"},\r
-{"last_update":"1196098047", "numofapproved":"1", "id":"17603"},\r
-{"last_update":"1196358376", "numofapproved":"2", "id":"17761"},\r
-{"last_update":"1196358647", "numofapproved":"1", "id":"17762"},\r
-{"last_update":"1196427604", "numofapproved":"1", "id":"17781"},\r
-{"last_update":"1196429856", "numofapproved":"1", "id":"17782"},\r
-{"last_update":"1196431068", "numofapproved":"2", "id":"17783"},\r
-{"last_update":"1196435953", "numofapproved":"2", "id":"17821"},\r
-{"last_update":"1204027277", "numofapproved":"1", "id":"18104"},\r
-{"last_update":"1196090201", "numofapproved":"1", "id":"17553"},\r
-{"last_update":"1196097095", "numofapproved":"1", "id":"17582"},\r
-{"last_update":"1196097215", "numofapproved":"1", "id":"17583"},\r
-{"last_update":"1196430140", "numofapproved":"2", "id":"17803"},\r
-{"last_update":"1196436411", "numofapproved":"2", "id":"17841"},\r
-{"last_update":"1196692298", "numofapproved":"1", "id":"17861"},\r
-{"last_update":"1196692342", "numofapproved":"2", "id":"17862"},\r
-{"last_update":"1196695231", "numofapproved":"2", "id":"17865"},\r
-{"last_update":"1197533316", "numofapproved":"1", "id":"17921"},\r
-{"last_update":"1201512744", "numofapproved":"1", "id":"18082"},\r
-{"last_update":"1201513438", "numofapproved":"2", "id":"18083"},\r
-{"last_update":"1196087540", "numofapproved":"1", "id":"17551"},\r
-{"last_update":"1196156416", "numofapproved":"2", "id":"17621"},\r
-{"last_update":"1196356717", "numofapproved":"1", "id":"17741"},\r
-{"last_update":"1196428544", "numofapproved":"2", "id":"17801"},\r
-{"last_update":"1196429000", "numofapproved":"2", "id":"17802"},\r
-{"last_update":"1196692578", "numofapproved":"1", "id":"17863"},\r
-{"last_update":"1196693445", "numofapproved":"2", "id":"17881"},\r
-{"last_update":"1196693804", "numofapproved":"2", "id":"17864"},\r
-{"last_update":"1197533347", "numofapproved":"1", "id":"17922"},\r
-{"last_update":"1200591782", "numofapproved":"1", "id":"18021"},\r
-{"last_update":"1201510930", "numofapproved":"1", "id":"18081"},\r
-{"last_update":"1192432005", "numofapproved":"1", "id":"12582"},\r
-{"last_update":"1192614291", "numofapproved":"1", "id":"12805"},\r
-{"last_update":"1192624421", "numofapproved":"1", "id":"12806"},\r
-{"last_update":"1192983623", "numofapproved":"1", "id":"13221"},\r
-{"last_update":"1193043248", "numofapproved":"1", "id":"13282"},\r
-{"last_update":"1193223892", "numofapproved":"1", "id":"13562"},\r
-{"last_update":"1193239943", "numofapproved":"1", "id":"13601"},\r
-{"last_update":"1193385960", "numofapproved":"1", "id":"13961"},\r
-{"last_update":"1193386863", "numofapproved":"1", "id":"13945"},\r
-{"last_update":"1193399770", "numofapproved":"1", "id":"14042"},\r
-{"last_update":"1193417684", "numofapproved":"1", "id":"14181"},\r
-{"last_update":"1193458402", "numofapproved":"1", "id":"14261"},\r
-{"last_update":"1193555071", "numofapproved":"1", "id":"14301"},\r
-{"last_update":"1185285506", "numofapproved":"1", "id":"5321"},\r
-{"last_update":"1188250869", "numofapproved":"1", "id":"7521"},\r
-{"last_update":"1191410480", "numofapproved":"1", "id":"11061"},\r
-{"last_update":"1193763056", "numofapproved":"1", "id":"14482"},\r
-{"last_update":"1193913886", "numofapproved":"1", "id":"14542"},\r
-{"last_update":"1194366001", "numofapproved":"1", "id":"14890"},\r
-{"last_update":"1194454607", "numofapproved":"1", "id":"15105"},\r
-{"last_update":"1194255904", "numofapproved":"1", "id":"14941"},\r
-{"last_update":"1179328986", "numofapproved":"1", "id":"1395"},\r
-{"last_update":"1180377628", "numofapproved":"1", "id":"1861"},\r
-{"last_update":"1181250011", "numofapproved":"1", "id":"2563"},\r
-{"last_update":"1181572386", "numofapproved":"1", "id":"2741"},\r
-{"last_update":"1183967114", "numofapproved":"1", "id":"4381"},\r
-{"last_update":"1192512712", "numofapproved":"1", "id":"12623"},\r
-{"last_update":"1193172621", "numofapproved":"1", "id":"13522"},\r
-{"last_update":"1193868932", "numofapproved":"1", "id":"14523"},\r
-{"last_update":"1194980345", "numofapproved":"1", "id":"16301"},\r
-{"last_update":"1182280312", "numofapproved":"1", "id":"3282"},\r
-{"last_update":"1184058726", "numofapproved":"1", "id":"4542"},\r
-{"last_update":"1188829875", "numofapproved":"1", "id":"8161"},\r
-{"last_update":"1190129857", "numofapproved":"1", "id":"9341"},\r
-{"last_update":"1190652687", "numofapproved":"1", "id":"9982"},\r
-{"last_update":"1193389082", "numofapproved":"1", "id":"13956"},\r
-{"last_update":"1195400591", "numofapproved":"1", "id":"17121"},\r
-{"last_update":"1184420846", "numofapproved":"1", "id":"4882"},\r
-{"last_update":"1184532219", "numofapproved":"1", "id":"4903"},\r
-{"last_update":"1192030476", "numofapproved":"1", "id":"12101"},\r
-{"last_update":"1192202239", "numofapproved":"1", "id":"12461"},\r
-{"last_update":"1192688302", "numofapproved":"1", "id":"12961"},\r
-{"last_update":"1192703266", "numofapproved":"1", "id":"13021"},\r
-{"last_update":"1193387096", "numofapproved":"1", "id":"13948"},\r
-{"last_update":"1193387200", "numofapproved":"1", "id":"13949"},\r
-{"last_update":"1193909837", "numofapproved":"1", "id":"14528"},\r
-{"last_update":"1181062093", "numofapproved":"1", "id":"2301"},\r
-{"last_update":"1182364431", "numofapproved":"1", "id":"3348"},\r
-{"last_update":"1182364589", "numofapproved":"1", "id":"3349"},\r
-{"last_update":"1184942429", "numofapproved":"1", "id":"5101"},\r
-{"last_update":"1192682522", "numofapproved":"1", "id":"12901"},\r
-{"last_update":"1184756287", "numofapproved":"1", "id":"4944"},\r
-{"last_update":"1190274411", "numofapproved":"1", "id":"9541"},\r
-{"last_update":"1193324229", "numofapproved":"1", "id":"13861"},\r
-{"last_update":"1195163999", "numofapproved":"1", "id":"16861"},\r
-{"last_update":"1181553321", "numofapproved":"1", "id":"2721"},\r
-{"last_update":"1178869453", "numofapproved":"1", "id":"1361"},\r
-{"last_update":"1181219788", "numofapproved":"1", "id":"2481"},\r
-{"last_update":"1178140002", "numofapproved":"1", "id":"1205"},\r
-{"last_update":"1178716891", "numofapproved":"1", "id":"1345"},\r
-{"last_update":"1180691957", "numofapproved":"1", "id":"2061"},\r
-{"last_update":"1182246242", "numofapproved":"1", "id":"3206"},\r
-{"last_update":"1182882314", "numofapproved":"1", "id":"3585"},\r
-{"last_update":"1183124192", "numofapproved":"1", "id":"3821"},\r
-{"last_update":"1183905634", "numofapproved":"1", "id":"4361"},\r
-{"last_update":"1191225755", "numofapproved":"1", "id":"10901"},\r
-{"last_update":"1192635977", "numofapproved":"1", "id":"12881"},\r
-{"last_update":"1193268752", "numofapproved":"1", "id":"13721"},\r
-{"last_update":"1193242245", "numofapproved":"1", "id":"13621"},\r
-{"last_update":"1193949751", "numofapproved":"1", "id":"14621"},\r
-{"last_update":"1194635892", "numofapproved":"1", "id":"15621"},\r
-{"last_update":"1194726918", "numofapproved":"1", "id":"15664"},\r
-{"last_update":"1194726371", "numofapproved":"1", "id":"15662"},\r
-{"last_update":"1194858043", "numofapproved":"1", "id":"15781"},\r
-{"last_update":"1194946522", "numofapproved":"1", "id":"16101"},\r
-{"last_update":"1195047359", "numofapproved":"1", "id":"16521"},\r
-{"last_update":"1195050812", "numofapproved":"1", "id":"16503"},\r
-{"last_update":"1195058811", "numofapproved":"1", "id":"16621"},\r
-{"last_update":"1195476161", "numofapproved":"1", "id":"17241"},\r
-{"last_update":"1178645683", "numofapproved":"1", "id":"1305"},\r
-{"last_update":"1183118619", "numofapproved":"1", "id":"3801"},\r
-{"last_update":"1186150376", "numofapproved":"1", "id":"6121"},\r
-{"last_update":"1189114226", "numofapproved":"1", "id":"8501"},\r
-{"last_update":"1190973079", "numofapproved":"1", "id":"10666"},\r
-{"last_update":"1190990329", "numofapproved":"1", "id":"10704"},\r
-{"last_update":"1191508485", "numofapproved":"1", "id":"11361"},\r
-{"last_update":"1183054560", "numofapproved":"1", "id":"3721"},\r
-{"last_update":"1185263889", "numofapproved":"1", "id":"5241"},\r
-{"last_update":"1187876083", "numofapproved":"1", "id":"7346"},\r
-{"last_update":"1189550218", "numofapproved":"1", "id":"8861"},\r
-{"last_update":"1190800088", "numofapproved":"1", "id":"10221"},\r
-{"last_update":"1193260528", "numofapproved":"1", "id":"13661"},\r
-{"last_update":"1172509002", "numofapproved":"1", "id":"199"},\r
-{"last_update":"1172509846", "numofapproved":"1", "id":"200"},\r
-{"last_update":"1172589855", "numofapproved":"1", "id":"214"},\r
-{"last_update":"1172847322", "numofapproved":"1", "id":"236"},\r
-{"last_update":"1172847433", "numofapproved":"1", "id":"242"},\r
-{"last_update":"1173607050", "numofapproved":"1", "id":"283"},\r
-{"last_update":"1173703535", "numofapproved":"1", "id":"301"},\r
-{"last_update":"1173719825", "numofapproved":"1", "id":"302"},\r
-{"last_update":"1174414845", "numofapproved":"1", "id":"403"},\r
-{"last_update":"1174650542", "numofapproved":"1", "id":"441"},\r
-{"last_update":"1171475944", "numofapproved":"1", "id":"52"},\r
-{"last_update":"1172746278", "numofapproved":"1", "id":"231"},\r
-{"last_update":"1173251095", "numofapproved":"1", "id":"254"},\r
-{"last_update":"1173259501", "numofapproved":"1", "id":"255"},\r
-{"last_update":"1174899183", "numofapproved":"1", "id":"495"},\r
-{"last_update":"1174924714", "numofapproved":"1", "id":"524"},\r
-{"last_update":"1171962179", "numofapproved":"1", "id":"108"},\r
-{"last_update":"1172522401", "numofapproved":"1", "id":"205"},\r
-{"last_update":"1174299349", "numofapproved":"1", "id":"362"},\r
-{"last_update":"1174899291", "numofapproved":"1", "id":"500"},\r
-{"last_update":"1175617661", "numofapproved":"1", "id":"688"},\r
-{"last_update":"1176302948", "numofapproved":"1", "id":"881"},\r
-{"last_update":"1176467393", "numofapproved":"1", "id":"893"},\r
-{"last_update":"1176737599", "numofapproved":"1", "id":"982"},\r
-{"last_update":"1171465517", "numofapproved":"1", "id":"50"},\r
-{"last_update":"1171924670", "numofapproved":"1", "id":"107"},\r
-{"last_update":"1173880505", "numofapproved":"1", "id":"317"},\r
-{"last_update":"1173889350", "numofapproved":"1", "id":"329"},\r
-{"last_update":"1173889557", "numofapproved":"1", "id":"332"},\r
-{"last_update":"1176391285", "numofapproved":"1", "id":"892"},\r
-{"last_update":"1176673529", "numofapproved":"1", "id":"981"},\r
-{"last_update":"1171643442", "numofapproved":"1", "id":"69"},\r
-{"last_update":"1172226841", "numofapproved":"1", "id":"182"},\r
-{"last_update":"1174899475", "numofapproved":"1", "id":"506"},\r
-{"last_update":"1174915327", "numofapproved":"1", "id":"521"},\r
-{"last_update":"1176194461", "numofapproved":"1", "id":"821"},\r
-{"last_update":"1172013837", "numofapproved":"1", "id":"132"},\r
-{"last_update":"1172184974", "numofapproved":"1", "id":"177"},\r
-{"last_update":"1175777908", "numofapproved":"1", "id":"674"},\r
-{"last_update":"1173460745", "numofapproved":"1", "id":"281"},\r
-{"last_update":"1174401746", "numofapproved":"1", "id":"402"},\r
-{"last_update":"1171274691", "numofapproved":"1", "id":"5"},\r
-{"last_update":"1171799314", "numofapproved":"1", "id":"78"},\r
-{"last_update":"1171979089", "numofapproved":"1", "id":"127"},\r
-{"last_update":"1172503571", "numofapproved":"1", "id":"197"},\r
-{"last_update":"1174301365", "numofapproved":"1", "id":"391"},\r
-{"last_update":"1174301259", "numofapproved":"1", "id":"385"},\r
-{"last_update":"1174899163", "numofapproved":"1", "id":"494"},\r
-{"last_update":"1174933167", "numofapproved":"1", "id":"534"},\r
-{"last_update":"1176139704", "numofapproved":"1", "id":"808"},\r
-{"last_update":"1175502855", "numofapproved":"1", "id":"603"},\r
-{"last_update":"1173721122", "numofapproved":"1", "id":"303"},\r
-{"last_update":"1173809079", "numofapproved":"1", "id":"311"},\r
-{"last_update":"1174734352", "numofapproved":"1", "id":"461"},\r
-{"last_update":"1174898917", "numofapproved":"1", "id":"482"},\r
-{"last_update":"1174899374", "numofapproved":"1", "id":"503"},\r
-{"last_update":"1176392495", "numofapproved":"1", "id":"903"},\r
-{"last_update":"1176829535", "numofapproved":"1", "id":"987"},\r
-{"last_update":"1173889385", "numofapproved":"1", "id":"330"},\r
-{"last_update":"1175869070", "numofapproved":"1", "id":"783"},\r
-{"last_update":"1177510634", "numofapproved":"1", "id":"1042"},\r
-{"last_update":"1177585810", "numofapproved":"1", "id":"1062"},\r
-{"last_update":"1178648303", "numofapproved":"1", "id":"1309"},\r
-{"last_update":"1178883682", "numofapproved":"1", "id":"1363"},\r
-{"last_update":"1179239792", "numofapproved":"1", "id":"1402"},\r
-{"last_update":"1179997715", "numofapproved":"1", "id":"1644"},\r
-{"last_update":"1180031289", "numofapproved":"1", "id":"1654"},\r
-{"last_update":"1180440758", "numofapproved":"1", "id":"1921"},\r
-{"last_update":"1180972413", "numofapproved":"1", "id":"2221"},\r
-{"last_update":"1181032741", "numofapproved":"1", "id":"2261"},\r
-{"last_update":"1181198104", "numofapproved":"1", "id":"2401"},\r
-{"last_update":"1181237541", "numofapproved":"1", "id":"2581"},\r
-{"last_update":"1181293731", "numofapproved":"1", "id":"2641"},\r
-{"last_update":"1182231158", "numofapproved":"1", "id":"3204"},\r
-{"last_update":"1177668412", "numofapproved":"1", "id":"1121"},\r
-{"last_update":"1178713554", "numofapproved":"1", "id":"1342"},\r
-{"last_update":"1179239886", "numofapproved":"1", "id":"1404"},\r
-{"last_update":"1184766561", "numofapproved":"1", "id":"4961"},\r
-{"last_update":"1185293883", "numofapproved":"1", "id":"5341"},\r
-{"last_update":"1185781181", "numofapproved":"1", "id":"5761"},\r
-{"last_update":"1185898126", "numofapproved":"1", "id":"5862"},\r
-{"last_update":"1186290486", "numofapproved":"1", "id":"6164"},\r
-{"last_update":"1186260193", "numofapproved":"1", "id":"6162"},\r
-{"last_update":"1186305362", "numofapproved":"1", "id":"6201"},\r
-{"last_update":"1187024035", "numofapproved":"1", "id":"6563"},\r
-{"last_update":"1187245873", "numofapproved":"1", "id":"6761"},\r
-{"last_update":"1187765176", "numofapproved":"1", "id":"7142"},\r
-{"last_update":"1187872548", "numofapproved":"1", "id":"7343"},\r
-{"last_update":"1188774634", "numofapproved":"1", "id":"8061"},\r
-{"last_update":"1188838929", "numofapproved":"1", "id":"8181"},\r
-{"last_update":"1189608461", "numofapproved":"1", "id":"8881"},\r
-{"last_update":"1189667694", "numofapproved":"1", "id":"8921"},\r
-{"last_update":"1179747423", "numofapproved":"1", "id":"1541"},\r
-{"last_update":"1181142187", "numofapproved":"1", "id":"2381"},\r
-{"last_update":"1185965227", "numofapproved":"1", "id":"5921"},\r
-{"last_update":"1190476977", "numofapproved":"1", "id":"9761"},\r
-{"last_update":"1190648889", "numofapproved":"1", "id":"9961"},\r
-{"last_update":"1190824195", "numofapproved":"1", "id":"10381"},\r
-{"last_update":"1190825530", "numofapproved":"1", "id":"10401"},\r
-{"last_update":"1190894398", "numofapproved":"1", "id":"10501"},\r
-{"last_update":"1178271031", "numofapproved":"1", "id":"1242"},\r
-{"last_update":"1178878052", "numofapproved":"1", "id":"1359"},\r
-{"last_update":"1178967516", "numofapproved":"1", "id":"1364"},\r
-{"last_update":"1180018261", "numofapproved":"1", "id":"1652"},\r
-{"last_update":"1180107922", "numofapproved":"1", "id":"1841"},\r
-{"last_update":"1180514196", "numofapproved":"1", "id":"1941"},\r
-{"last_update":"1181901023", "numofapproved":"1", "id":"3082"},\r
-{"last_update":"1182417878", "numofapproved":"1", "id":"3361"},\r
-{"last_update":"1182785340", "numofapproved":"1", "id":"3521"},\r
-{"last_update":"1183485766", "numofapproved":"1", "id":"4101"},\r
-{"last_update":"1189526136", "numofapproved":"1", "id":"8803"},\r
-{"last_update":"1191446636", "numofapproved":"1", "id":"11185"},\r
-{"last_update":"1191489743", "numofapproved":"1", "id":"11241"},\r
-{"last_update":"1191903141", "numofapproved":"1", "id":"11882"},\r
-{"last_update":"1191940049", "numofapproved":"1", "id":"11941"},\r
-{"last_update":"1179239857", "numofapproved":"1", "id":"1403"},\r
-{"last_update":"1185799202", "numofapproved":"1", "id":"5801"},\r
-{"last_update":"1190924823", "numofapproved":"1", "id":"10562"},\r
-{"last_update":"1191410783", "numofapproved":"1", "id":"11065"},\r
-{"last_update":"1192031578", "numofapproved":"1", "id":"12121"},\r
-{"last_update":"1192431234", "numofapproved":"1", "id":"12562"},\r
-{"last_update":"1192609228", "numofapproved":"1", "id":"12802"},\r
-{"last_update":"1192742243", "numofapproved":"1", "id":"13161"},\r
-{"last_update":"1192942532", "numofapproved":"1", "id":"13201"},\r
-{"last_update":"1193386303", "numofapproved":"1", "id":"13962"},\r
-{"last_update":"1193406158", "numofapproved":"1", "id":"14121"},\r
-{"last_update":"1193418273", "numofapproved":"1", "id":"14201"},\r
-{"last_update":"1193519213", "numofapproved":"1", "id":"14281"},\r
-{"last_update":"1193666593", "numofapproved":"1", "id":"14401"},\r
-{"last_update":"1193733296", "numofapproved":"1", "id":"14421"},\r
-{"last_update":"1193760981", "numofapproved":"1", "id":"14481"},\r
-{"last_update":"1182436569", "numofapproved":"1", "id":"3422"},\r
-{"last_update":"1184012598", "numofapproved":"1", "id":"4481"},\r
-{"last_update":"1189715279", "numofapproved":"1", "id":"8981"},\r
-{"last_update":"1192528903", "numofapproved":"1", "id":"12701"},\r
-{"last_update":"1194246273", "numofapproved":"1", "id":"14901"},\r
-{"last_update":"1194354217", "numofapproved":"1", "id":"14888"},\r
-{"last_update":"1194366787", "numofapproved":"1", "id":"14891"},\r
-{"last_update":"1194445768", "numofapproved":"1", "id":"15104"},\r
-{"last_update":"1194467580", "numofapproved":"1", "id":"15107"},\r
-{"last_update":"1194508237", "numofapproved":"1", "id":"15262"},\r
-{"last_update":"1194635341", "numofapproved":"1", "id":"15581"},\r
-{"last_update":"1194635508", "numofapproved":"1", "id":"15582"},\r
-{"last_update":"1179214538", "numofapproved":"1", "id":"1386"},\r
-{"last_update":"1186433530", "numofapproved":"1", "id":"6167"},\r
-{"last_update":"1187853435", "numofapproved":"1", "id":"7321"},\r
-{"last_update":"1187972012", "numofapproved":"1", "id":"7421"},\r
-{"last_update":"1188895906", "numofapproved":"1", "id":"8201"},\r
-{"last_update":"1190284020", "numofapproved":"1", "id":"9561"},\r
-{"last_update":"1190924163", "numofapproved":"1", "id":"10561"},\r
-{"last_update":"1192529770", "numofapproved":"1", "id":"12663"},\r
-{"last_update":"1192536538", "numofapproved":"1", "id":"12666"},\r
-{"last_update":"1193269090", "numofapproved":"1", "id":"13741"},\r
-{"last_update":"1193428819", "numofapproved":"1", "id":"14221"},\r
-{"last_update":"1193860091", "numofapproved":"1", "id":"14521"},\r
-{"last_update":"1193909426", "numofapproved":"1", "id":"14526"},\r
-{"last_update":"1194533708", "numofapproved":"1", "id":"15321"},\r
-{"last_update":"1179822723", "numofapproved":"1", "id":"1601"},\r
-{"last_update":"1179842248", "numofapproved":"1", "id":"1666"},\r
-{"last_update":"1182412362", "numofapproved":"1", "id":"3352"},\r
-{"last_update":"1185980065", "numofapproved":"1", "id":"5961"},\r
-{"last_update":"1186751100", "numofapproved":"1", "id":"6385"},\r
-{"last_update":"1187202714", "numofapproved":"1", "id":"6721"},\r
-{"last_update":"1187601864", "numofapproved":"1", "id":"6923"},\r
-{"last_update":"1191490727", "numofapproved":"1", "id":"11281"},\r
-{"last_update":"1194449840", "numofapproved":"1", "id":"15161"},\r
-{"last_update":"1180028166", "numofapproved":"1", "id":"1781"},\r
-{"last_update":"1185025939", "numofapproved":"1", "id":"5201"},\r
-{"last_update":"1192454400", "numofapproved":"1", "id":"12621"},\r
-{"last_update":"1193414234", "numofapproved":"1", "id":"14141"},\r
-{"last_update":"1194270682", "numofapproved":"1", "id":"14961"},\r
-{"last_update":"1184061669", "numofapproved":"1", "id":"4561"},\r
-{"last_update":"1186161284", "numofapproved":"1", "id":"6141"},\r
-{"last_update":"1187714492", "numofapproved":"1", "id":"7061"},\r
-{"last_update":"1187893562", "numofapproved":"1", "id":"7361"},\r
-{"last_update":"1190815311", "numofapproved":"1", "id":"10301"},\r
-{"last_update":"1193388120", "numofapproved":"1", "id":"13951"},\r
-{"last_update":"1195239956", "numofapproved":"1", "id":"17041"},\r
-{"last_update":"1179147467", "numofapproved":"1", "id":"1381"},\r
-{"last_update":"1182346611", "numofapproved":"1", "id":"3341"},\r
-{"last_update":"1184267506", "numofapproved":"1", "id":"4802"},\r
-{"last_update":"1192047087", "numofapproved":"1", "id":"12161"},\r
-{"last_update":"1192198948", "numofapproved":"1", "id":"12441"},\r
-{"last_update":"1193208717", "numofapproved":"1", "id":"13528"},\r
-{"last_update":"1194907182", "numofapproved":"1", "id":"16001"},\r
-{"last_update":"1179153020", "numofapproved":"1", "id":"1385"},\r
-{"last_update":"1179835655", "numofapproved":"1", "id":"1641"},\r
-{"last_update":"1181234739", "numofapproved":"1", "id":"2542"},\r
-{"last_update":"1182356477", "numofapproved":"1", "id":"3343"},\r
-{"last_update":"1182418583", "numofapproved":"1", "id":"3381"},\r
-{"last_update":"1184568502", "numofapproved":"1", "id":"4905"},\r
-{"last_update":"1189151603", "numofapproved":"1", "id":"8581"},\r
-{"last_update":"1191595695", "numofapproved":"1", "id":"11621"},\r
-{"last_update":"1193105000", "numofapproved":"1", "id":"13421"},\r
-{"last_update":"1195104657", "numofapproved":"1", "id":"16701"}],\r
-"request_timestamp":1206363392.08521, "request_call":"requestDetails",\r
-"instance":"tbedi", "call_time":"0.10059", "request_date":"2008-03-2412:56:32 UTC", "request_url":"http://cmsdoc.cern.ch/cms/test/aprom/phedex/dev/gowri/datasvc/tbedi/requestDetails?format=json"}}\r
-"""\r
-\r
-from jsonParser import jsonObject\r
-\r
-data = jsonObject.parseString(s)\r
-\r
-#~ from pprint import pprint\r
-#~ pprint( data[0].asList() )\r
-#~ print\r
-#~ print data.dump()\r
-print(data.phedex.call_time)\r
-print(data.phedex.instance)\r
-print(data.phedex.request_call)\r
-print(len(data.phedex.request))\r
-for req in data.phedex.request[:10]:\r
- #~ print req.dump()\r
- print("-", req.id, req.last_update)\r
+++ /dev/null
-# removeLineBreaks.py\r
-#\r
-# Demonstration of the pyparsing module, converting text files\r
-# with hard line-breaks to text files with line breaks only\r
-# between paragraphs. (Helps when converting downloads from Project\r
-# Gutenberg - http://www.gutenberg.org - to import to word processing apps \r
-# that can reformat paragraphs once hard line-breaks are removed.)\r
-#\r
-# Uses parse actions and transformString to remove unwanted line breaks,\r
-# and to double up line breaks between paragraphs.\r
-#\r
-# Copyright 2006, by Paul McGuire\r
-#\r
-from pyparsing import *\r
-\r
-# define an expression for the body of a line of text - use a parse action to reject any\r
-# empty lines\r
-def mustBeNonBlank(s,l,t):\r
- if not t[0]:\r
- raise ParseException(s,l,"line body can't be empty")\r
-lineBody = SkipTo(lineEnd).setParseAction(mustBeNonBlank)\r
-\r
-# now define a line with a trailing lineEnd, to be replaced with a space character\r
-textLine = lineBody + Suppress(lineEnd).setParseAction(replaceWith(" "))\r
-\r
-# define a paragraph, with a separating lineEnd, to be replaced with a double newline\r
-para = OneOrMore(textLine) + Suppress(lineEnd).setParseAction(replaceWith("\n\n"))\r
-\r
-\r
-# run a test\r
-test = """\r
- Now is the\r
- time for\r
- all\r
- good men\r
- to come to\r
-\r
- the aid of their\r
- country.\r
-"""\r
-print(para.transformString(test))\r
-\r
-# process an entire file\r
-z = para.transformString(file("Successful Methods of Public Speaking.txt").read())\r
-file("Successful Methods of Public Speaking(2).txt","w").write(z)\r
+++ /dev/null
-# romanNumerals.py\r
-#\r
-# Copyright (c) 2006, Paul McGuire\r
-#\r
-\r
-from pyparsing import *\r
-\r
-def romanNumeralLiteral(numeralString, value):\r
- return Literal(numeralString).setParseAction(replaceWith(value))\r
- \r
-one = romanNumeralLiteral("I",1)\r
-four = romanNumeralLiteral("IV",4)\r
-five = romanNumeralLiteral("V",5)\r
-nine = romanNumeralLiteral("IX",9)\r
-ten = romanNumeralLiteral("X",10)\r
-forty = romanNumeralLiteral("XL",40)\r
-fifty = romanNumeralLiteral("L",50)\r
-ninety = romanNumeralLiteral("XC",90)\r
-onehundred = romanNumeralLiteral("C",100)\r
-fourhundred = romanNumeralLiteral("CD",400)\r
-fivehundred = romanNumeralLiteral("D",500)\r
-ninehundred = romanNumeralLiteral("CM",900)\r
-onethousand = romanNumeralLiteral("M",1000)\r
-\r
-numeral = ( onethousand | ninehundred | fivehundred | fourhundred | \r
- onehundred | ninety | fifty | forty | ten | nine | five | \r
- four | one ).leaveWhitespace()\r
-\r
-romanNumeral = OneOrMore(numeral).setParseAction( lambda s,l,t : sum(t) )\r
-\r
-# unit tests\r
-def makeRomanNumeral(n):\r
- def addDigit(n,limit,c,s):\r
- n -= limit\r
- s += c\r
- return n,s\r
- \r
- ret = ""\r
- while n >= 1000: n,ret = addDigit(n,1000,"M",ret)\r
- while n >= 900: n,ret = addDigit(n, 900,"CM",ret)\r
- while n >= 500: n,ret = addDigit(n, 500,"D",ret)\r
- while n >= 400: n,ret = addDigit(n, 400,"CD",ret)\r
- while n >= 100: n,ret = addDigit(n, 100,"C",ret)\r
- while n >= 90: n,ret = addDigit(n, 90,"XC",ret)\r
- while n >= 50: n,ret = addDigit(n, 50,"L",ret)\r
- while n >= 40: n,ret = addDigit(n, 40,"XL",ret)\r
- while n >= 10: n,ret = addDigit(n, 10,"X",ret)\r
- while n >= 9: n,ret = addDigit(n, 9,"IX",ret)\r
- while n >= 5: n,ret = addDigit(n, 5,"V",ret)\r
- while n >= 4: n,ret = addDigit(n, 4,"IV",ret)\r
- while n >= 1: n,ret = addDigit(n, 1,"I",ret)\r
- return ret\r
-tests = " ".join(makeRomanNumeral(i) for i in range(1,5000+1))\r
-\r
-expected = 1\r
-for t,s,e in romanNumeral.scanString(tests):\r
- if t[0] != expected:\r
- print("{} {} {}".format("==>", t, tests[s:e]))\r
- expected += 1\r
-\r
-def test(rn):\r
- print("{} -> {}".format(rn, romanNumeral.parseString(rn)[0]))\r
-test("XVI")\r
-test("XXXIX")\r
-test("XIV")\r
-test("XIX")\r
-test("MCMLXXX")\r
-test("MMVI")\r
-\r
-\r
-\r
-\r
-\r
-\r
+++ /dev/null
-#\r
-# scanExamples.py\r
-#\r
-# Illustration of using pyparsing's scanString,transformString, and searchString methods\r
-#\r
-# Copyright (c) 2004, 2006 Paul McGuire\r
-#\r
-from pyparsing import Word, alphas, alphanums, Literal, restOfLine, OneOrMore, \\r
- empty, Suppress, replaceWith\r
-\r
-# simulate some C++ code\r
-testData = """\r
-#define MAX_LOCS=100\r
-#define USERNAME = "floyd"\r
-#define PASSWORD = "swordfish"\r
-\r
-a = MAX_LOCS;\r
-CORBA::initORB("xyzzy", USERNAME, PASSWORD );\r
-\r
-"""\r
-\r
-#################\r
-print("Example of an extractor")\r
-print("----------------------")\r
-\r
-# simple grammar to match #define's\r
-ident = Word(alphas, alphanums+"_")\r
-macroDef = Literal("#define") + ident.setResultsName("name") + "=" + restOfLine.setResultsName("value")\r
-for t,s,e in macroDef.scanString( testData ):\r
- print(t.name,":", t.value)\r
- \r
-# or a quick way to make a dictionary of the names and values \r
-# (return only key and value tokens, and construct dict from key-value pairs)\r
-# - empty ahead of restOfLine advances past leading whitespace, does implicit lstrip during parsing\r
-macroDef = Suppress("#define") + ident + Suppress("=") + empty + restOfLine\r
-macros = dict(list(macroDef.searchString(testData)))\r
-print("macros =", macros)\r
-print()\r
-\r
-\r
-#################\r
-print("Examples of a transformer")\r
-print("----------------------")\r
-\r
-# convert C++ namespaces to mangled C-compatible names\r
-scopedIdent = ident + OneOrMore( Literal("::").suppress() + ident )\r
-scopedIdent.setParseAction(lambda t: "_".join(t))\r
-\r
-print("(replace namespace-scoped names with C-compatible names)")\r
-print(scopedIdent.transformString( testData ))\r
- \r
- \r
-# or a crude pre-processor (use parse actions to replace matching text)\r
-def substituteMacro(s,l,t):\r
- if t[0] in macros:\r
- return macros[t[0]]\r
-ident.setParseAction( substituteMacro )\r
-ident.ignore(macroDef)\r
-\r
-print("(simulate #define pre-processor)")\r
-print(ident.transformString( testData ))\r
-\r
-\r
-\r
-#################\r
-print("Example of a stripper")\r
-print("----------------------")\r
-\r
-from pyparsing import dblQuotedString, LineStart\r
-\r
-# remove all string macro definitions (after extracting to a string resource table?)\r
-stringMacroDef = Literal("#define") + ident + "=" + dblQuotedString + LineStart()\r
-stringMacroDef.setParseAction( replaceWith("") )\r
-\r
-print(stringMacroDef.transformString( testData ))\r
+++ /dev/null
-from pyparsing import makeHTMLTags,SkipTo,htmlComment\r
-import urllib.request, urllib.parse, urllib.error\r
-\r
-serverListPage = urllib.request.urlopen( "http://www.yahoo.com" )\r
-htmlText = serverListPage.read()\r
-serverListPage.close()\r
-\r
-aStart,aEnd = makeHTMLTags("A")\r
-\r
-link = aStart + SkipTo(aEnd).setResultsName("link") + aEnd\r
-link.ignore(htmlComment)\r
-\r
-for toks,start,end in link.scanString(htmlText):\r
- print(toks.link, "->", toks.startA.href)
\ No newline at end of file
+++ /dev/null
-from searchparser import SearchQueryParser\r
-\r
-products = [ "grape juice", "grape jelly", "orange juice", "orange jujubees",\r
- "strawberry jam", "prune juice", "prune butter", "orange marmalade",\r
- "grapefruit juice" ]\r
- \r
-class FruitSearchParser(SearchQueryParser):\r
- def GetWord(self, word):\r
- return set( p for p in products if p.startswith(word + " ") )\r
-\r
- def GetWordWildcard(self, word):\r
- return set( p for p in products if p.startswith(word[:-1]) )\r
-\r
- def GetQuotes(self, search_string, tmp_result):\r
- result = Set()\r
- # I have no idea how to use this feature...\r
- return result\r
-\r
- def GetNot(self, not_set):\r
- return set( products ) - not_set\r
-\r
-\r
-parser = FruitSearchParser()\r
-\r
-tests = """\\r
- grape or orange\r
- grape*\r
- not(grape*)\r
- prune and grape""".splitlines()\r
-\r
-for t in tests:\r
- print(t.strip())\r
- print(parser.Parse(t))\r
- print('')
\ No newline at end of file
+++ /dev/null
-"""Search query parser\r
-\r
-version 2006-03-09\r
-\r
-This search query parser uses the excellent Pyparsing module \r
-(http://pyparsing.sourceforge.net/) to parse search queries by users.\r
-It handles:\r
-\r
-* 'and', 'or' and implicit 'and' operators;\r
-* parentheses;\r
-* quoted strings;\r
-* wildcards at the end of a search term (help*);\r
-\r
-Requirements:\r
-* Python\r
-* Pyparsing\r
-\r
-If you run this script, it will perform a number of tests. To use is as a\r
-module, you should use inheritance on the SearchQueryParser class and overwrite\r
-the Get... methods. The ParserTest class gives a very simple example of how this\r
-could work.\r
-\r
--------------------------------------------------------------------------------\r
-Copyright (c) 2006, Estrate, the Netherlands\r
-All rights reserved.\r
-\r
-Redistribution and use in source and binary forms, with or without modification,\r
-are permitted provided that the following conditions are met:\r
-\r
-* Redistributions of source code must retain the above copyright notice, this\r
- list of conditions and the following disclaimer.\r
-* Redistributions in binary form must reproduce the above copyright notice,\r
- this list of conditions and the following disclaimer in the documentation \r
- and/or other materials provided with the distribution.\r
-* Neither the name of Estrate nor the names of its contributors may be used\r
- to endorse or promote products derived from this software without specific\r
- prior written permission.\r
-\r
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\r
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\r
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \r
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON \r
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \r
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \r
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
-\r
-CONTRIBUTORS:\r
-- Steven Mooij\r
-- Rudolph Froger\r
-- Paul McGuire\r
-\r
-TODO:\r
-- add more docs\r
-- ask someone to check my English texts\r
-- add more kinds of wildcards ('*' at the beginning and '*' inside a word)?\r
-"""\r
-from pyparsing import Word, alphanums, Keyword, Group, Combine, Forward, Suppress, Optional, OneOrMore, oneOf\r
-\r
-class SearchQueryParser:\r
-\r
- def __init__(self):\r
- self._methods = {\r
- 'and': self.evaluateAnd,\r
- 'or': self.evaluateOr,\r
- 'not': self.evaluateNot,\r
- 'parenthesis': self.evaluateParenthesis,\r
- 'quotes': self.evaluateQuotes,\r
- 'word': self.evaluateWord,\r
- 'wordwildcard': self.evaluateWordWildcard,\r
- }\r
- self._parser = self.parser()\r
- \r
- def parser(self):\r
- """\r
- This function returns a parser.\r
- The grammar should be like most full text search engines (Google, Tsearch, Lucene).\r
- \r
- Grammar:\r
- - a query consists of alphanumeric words, with an optional '*' wildcard\r
- at the end of a word\r
- - a sequence of words between quotes is a literal string\r
- - words can be used together by using operators ('and' or 'or')\r
- - words with operators can be grouped with parenthesis\r
- - a word or group of words can be preceded by a 'not' operator\r
- - the 'and' operator precedes an 'or' operator\r
- - if an operator is missing, use an 'and' operator\r
- """\r
- operatorOr = Forward()\r
- \r
- operatorWord = Group(Combine(Word(alphanums) + Suppress('*'))).setResultsName('wordwildcard') | \\r
- Group(Word(alphanums)).setResultsName('word')\r
- \r
- operatorQuotesContent = Forward()\r
- operatorQuotesContent << (\r
- (operatorWord + operatorQuotesContent) | operatorWord\r
- )\r
- \r
- operatorQuotes = Group(\r
- Suppress('"') + operatorQuotesContent + Suppress('"')\r
- ).setResultsName("quotes") | operatorWord\r
- \r
- operatorParenthesis = Group(\r
- (Suppress("(") + operatorOr + Suppress(")"))\r
- ).setResultsName("parenthesis") | operatorQuotes\r
-\r
- operatorNot = Forward()\r
- operatorNot << (Group(\r
- Suppress(Keyword("not", caseless=True)) + operatorNot\r
- ).setResultsName("not") | operatorParenthesis)\r
-\r
- operatorAnd = Forward()\r
- operatorAnd << (Group(\r
- operatorNot + Suppress(Keyword("and", caseless=True)) + operatorAnd\r
- ).setResultsName("and") | Group(\r
- operatorNot + OneOrMore(~oneOf("and or") + operatorAnd)\r
- ).setResultsName("and") | operatorNot)\r
- \r
- operatorOr << (Group(\r
- operatorAnd + Suppress(Keyword("or", caseless=True)) + operatorOr\r
- ).setResultsName("or") | operatorAnd)\r
-\r
- return operatorOr.parseString\r
-\r
- def evaluateAnd(self, argument):\r
- return self.evaluate(argument[0]).intersection(self.evaluate(argument[1]))\r
-\r
- def evaluateOr(self, argument):\r
- return self.evaluate(argument[0]).union(self.evaluate(argument[1]))\r
-\r
- def evaluateNot(self, argument):\r
- return self.GetNot(self.evaluate(argument[0]))\r
-\r
- def evaluateParenthesis(self, argument):\r
- return self.evaluate(argument[0])\r
-\r
- def evaluateQuotes(self, argument):\r
- """Evaluate quoted strings\r
-\r
- First is does an 'and' on the indidual search terms, then it asks the\r
- function GetQuoted to only return the subset of ID's that contain the\r
- literal string.\r
- """\r
- r = set()\r
- search_terms = []\r
- for item in argument:\r
- search_terms.append(item[0])\r
- if len(r) == 0:\r
- r = self.evaluate(item)\r
- else:\r
- r = r.intersection(self.evaluate(item))\r
- return self.GetQuotes(' '.join(search_terms), r)\r
-\r
- def evaluateWord(self, argument):\r
- return self.GetWord(argument[0])\r
-\r
- def evaluateWordWildcard(self, argument):\r
- return self.GetWordWildcard(argument[0])\r
- \r
- def evaluate(self, argument):\r
- return self._methods[argument.getName()](argument)\r
-\r
- def Parse(self, query):\r
- #print self._parser(query)[0]\r
- return self.evaluate(self._parser(query)[0])\r
-\r
- def GetWord(self, word):\r
- return set()\r
-\r
- def GetWordWildcard(self, word):\r
- return set()\r
-\r
- def GetQuotes(self, search_string, tmp_result):\r
- return set()\r
-\r
- def GetNot(self, not_set):\r
- return set().difference(not_set)\r
-\r
-\r
-class ParserTest(SearchQueryParser):\r
- """Tests the parser with some search queries\r
- tests containts a dictionary with tests and expected results.\r
- """\r
- tests = {\r
- 'help': set([1, 2, 4, 5]),\r
- 'help or hulp': set([1, 2, 3, 4, 5]),\r
- 'help and hulp': set([2]),\r
- 'help hulp': set([2]),\r
- 'help and hulp or hilp': set([2, 3, 4]),\r
- 'help or hulp and hilp': set([1, 2, 3, 4, 5]),\r
- 'help or hulp or hilp or halp': set([1, 2, 3, 4, 5, 6]),\r
- '(help or hulp) and (hilp or halp)': set([3, 4, 5]),\r
- 'help and (hilp or halp)': set([4, 5]),\r
- '(help and (hilp or halp)) or hulp': set([2, 3, 4, 5]),\r
- 'not help': set([3, 6, 7, 8]),\r
- 'not hulp and halp': set([5, 6]),\r
- 'not (help and halp)': set([1, 2, 3, 4, 6, 7, 8]),\r
- '"help me please"': set([2]),\r
- '"help me please" or hulp': set([2, 3]),\r
- '"help me please" or (hulp and halp)': set([2]),\r
- 'help*': set([1, 2, 4, 5, 8]),\r
- 'help or hulp*': set([1, 2, 3, 4, 5]),\r
- 'help* and hulp': set([2]),\r
- 'help and hulp* or hilp': set([2, 3, 4]),\r
- 'help* or hulp or hilp or halp': set([1, 2, 3, 4, 5, 6, 8]),\r
- '(help or hulp*) and (hilp* or halp)': set([3, 4, 5]),\r
- 'help* and (hilp* or halp*)': set([4, 5]),\r
- '(help and (hilp* or halp)) or hulp*': set([2, 3, 4, 5]),\r
- 'not help* and halp': set([6]),\r
- 'not (help* and helpe*)': set([1, 2, 3, 4, 5, 6, 7]),\r
- '"help* me please"': set([2]),\r
- '"help* me* please" or hulp*': set([2, 3]),\r
- '"help me please*" or (hulp and halp)': set([2]),\r
- '"help me please" not (hulp and halp)': set([2]),\r
- '"help me please" hulp': set([2]),\r
- 'help and hilp and not holp': set([4]),\r
- 'help hilp not holp': set([4]),\r
- 'help hilp and not holp': set([4]),\r
- }\r
-\r
- docs = {\r
- 1: 'help',\r
- 2: 'help me please hulp',\r
- 3: 'hulp hilp',\r
- 4: 'help hilp',\r
- 5: 'halp thinks he needs help',\r
- 6: 'he needs halp',\r
- 7: 'nothing',\r
- 8: 'helper',\r
- }\r
- \r
- index = {\r
- 'help': set((1, 2, 4, 5)),\r
- 'me': set((2,)),\r
- 'please': set((2,)),\r
- 'hulp': set((2, 3,)),\r
- 'hilp': set((3, 4,)),\r
- 'halp': set((5, 6,)),\r
- 'thinks': set((5,)),\r
- 'he': set((5, 6,)),\r
- 'needs': set((5, 6,)),\r
- 'nothing': set((7,)),\r
- 'helper': set((8,)),\r
- }\r
-\r
- def GetWord(self, word):\r
- if (word in self.index):\r
- return self.index[word]\r
- else:\r
- return set()\r
-\r
- def GetWordWildcard(self, word):\r
- result = set()\r
- for item in list(self.index.keys()):\r
- if word == item[0:len(word)]:\r
- result = result.union(self.index[item])\r
- return result\r
-\r
- def GetQuotes(self, search_string, tmp_result):\r
- result = set()\r
- for item in tmp_result:\r
- if self.docs[item].count(search_string):\r
- result.add(item)\r
- return result\r
- \r
- def GetNot(self, not_set):\r
- all = set(list(self.docs.keys()))\r
- return all.difference(not_set)\r
-\r
- def Test(self):\r
- all_ok = True\r
- for item in list(self.tests.keys()):\r
- print(item)\r
- r = self.Parse(item)\r
- e = self.tests[item]\r
- print('Result: %s' % r)\r
- print('Expect: %s' % e)\r
- if e == r:\r
- print('Test OK')\r
- else:\r
- all_ok = False\r
- print('>>>>>>>>>>>>>>>>>>>>>>Test ERROR<<<<<<<<<<<<<<<<<<<<<')\r
- print('')\r
- return all_ok\r
- \r
-if __name__=='__main__':\r
- if ParserTest().Test():\r
- print('All tests OK')\r
- else:\r
- print('One or more tests FAILED')\r
+++ /dev/null
-# select_parser.py\r
-# Copyright 2010, Paul McGuire\r
-#\r
-# a simple SELECT statement parser, taken from SQLite's SELECT statement\r
-# definition at http://www.sqlite.org/lang_select.html\r
-#\r
-from pyparsing import *\r
-ParserElement.enablePackrat()\r
-\r
-LPAR,RPAR,COMMA = map(Suppress,"(),")\r
-select_stmt = Forward().setName("select statement")\r
-\r
-# keywords\r
-(UNION, ALL, AND, INTERSECT, EXCEPT, COLLATE, ASC, DESC, ON, USING, NATURAL, INNER, \r
- CROSS, LEFT, OUTER, JOIN, AS, INDEXED, NOT, SELECT, DISTINCT, FROM, WHERE, GROUP, BY,\r
- HAVING, ORDER, BY, LIMIT, OFFSET, OR) = map(CaselessKeyword, """UNION, ALL, AND, INTERSECT, \r
- EXCEPT, COLLATE, ASC, DESC, ON, USING, NATURAL, INNER, CROSS, LEFT, OUTER, JOIN, AS, INDEXED, NOT, SELECT, \r
- DISTINCT, FROM, WHERE, GROUP, BY, HAVING, ORDER, BY, LIMIT, OFFSET, OR""".replace(",","").split())\r
-(CAST, ISNULL, NOTNULL, NULL, IS, BETWEEN, ELSE, END, CASE, WHEN, THEN, EXISTS,\r
- COLLATE, IN, LIKE, GLOB, REGEXP, MATCH, ESCAPE, CURRENT_TIME, CURRENT_DATE, \r
- CURRENT_TIMESTAMP) = map(CaselessKeyword, """CAST, ISNULL, NOTNULL, NULL, IS, BETWEEN, ELSE, \r
- END, CASE, WHEN, THEN, EXISTS, COLLATE, IN, LIKE, GLOB, REGEXP, MATCH, ESCAPE, \r
- CURRENT_TIME, CURRENT_DATE, CURRENT_TIMESTAMP""".replace(",","").split())\r
-keyword = MatchFirst((UNION, ALL, INTERSECT, EXCEPT, COLLATE, ASC, DESC, ON, USING, NATURAL, INNER, \r
- CROSS, LEFT, OUTER, JOIN, AS, INDEXED, NOT, SELECT, DISTINCT, FROM, WHERE, GROUP, BY,\r
- HAVING, ORDER, BY, LIMIT, OFFSET, CAST, ISNULL, NOTNULL, NULL, IS, BETWEEN, ELSE, END, CASE, WHEN, THEN, EXISTS,\r
- COLLATE, IN, LIKE, GLOB, REGEXP, MATCH, ESCAPE, CURRENT_TIME, CURRENT_DATE, \r
- CURRENT_TIMESTAMP))\r
- \r
-identifier = ~keyword + Word(alphas, alphanums+"_")\r
-collation_name = identifier.copy()\r
-column_name = identifier.copy()\r
-column_alias = identifier.copy()\r
-table_name = identifier.copy()\r
-table_alias = identifier.copy()\r
-index_name = identifier.copy()\r
-function_name = identifier.copy()\r
-parameter_name = identifier.copy()\r
-database_name = identifier.copy()\r
-\r
-# expression\r
-expr = Forward().setName("expression")\r
-\r
-integer = Regex(r"[+-]?\d+")\r
-numeric_literal = Regex(r"\d+(\.\d*)?([eE][+-]?\d+)?")\r
-string_literal = QuotedString("'")\r
-blob_literal = Regex(r"[xX]'[0-9A-Fa-f]+'")\r
-literal_value = ( numeric_literal | string_literal | blob_literal |\r
- NULL | CURRENT_TIME | CURRENT_DATE | CURRENT_TIMESTAMP )\r
-bind_parameter = (\r
- Word("?",nums) |\r
- Combine(oneOf(": @ $") + parameter_name)\r
- )\r
-type_name = oneOf("TEXT REAL INTEGER BLOB NULL")\r
-\r
-expr_term = (\r
- CAST + LPAR + expr + AS + type_name + RPAR |\r
- EXISTS + LPAR + select_stmt + RPAR |\r
- function_name.setName("function_name") + LPAR + Optional("*" | delimitedList(expr)) + RPAR |\r
- literal_value |\r
- bind_parameter |\r
- Combine(identifier+('.'+identifier)*(0,2)).setName("ident")\r
- )\r
-\r
-UNARY,BINARY,TERNARY=1,2,3\r
-expr << infixNotation(expr_term,\r
- [\r
- (oneOf('- + ~') | NOT, UNARY, opAssoc.RIGHT),\r
- (ISNULL | NOTNULL | NOT + NULL, UNARY, opAssoc.LEFT),\r
- ('||', BINARY, opAssoc.LEFT),\r
- (oneOf('* / %'), BINARY, opAssoc.LEFT),\r
- (oneOf('+ -'), BINARY, opAssoc.LEFT),\r
- (oneOf('<< >> & |'), BINARY, opAssoc.LEFT),\r
- (oneOf('< <= > >='), BINARY, opAssoc.LEFT),\r
- (oneOf('= == != <>') | IS | IN | LIKE | GLOB | MATCH | REGEXP, BINARY, opAssoc.LEFT),\r
- ((BETWEEN,AND), TERNARY, opAssoc.LEFT),\r
- (IN + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR, UNARY, opAssoc.LEFT),\r
- (AND, BINARY, opAssoc.LEFT),\r
- (OR, BINARY, opAssoc.LEFT),\r
- ])\r
-\r
-compound_operator = (UNION + Optional(ALL) | INTERSECT | EXCEPT)\r
-\r
-ordering_term = Group(expr('order_key') + Optional(COLLATE + collation_name('collate')) + Optional(ASC | DESC)('direction'))\r
-\r
-join_constraint = Group(Optional(ON + expr | USING + LPAR + Group(delimitedList(column_name)) + RPAR))\r
-\r
-join_op = COMMA | Group(Optional(NATURAL) + Optional(INNER | CROSS | LEFT + OUTER | LEFT | OUTER) + JOIN)\r
-\r
-join_source = Forward()\r
-single_source = ( (Group(database_name("database") + "." + table_name("table*")) | table_name("table*")) + \r
- Optional(Optional(AS) + table_alias("table_alias*")) +\r
- Optional(INDEXED + BY + index_name("name") | NOT + INDEXED)("index") | \r
- (LPAR + select_stmt + RPAR + Optional(Optional(AS) + table_alias)) | \r
- (LPAR + join_source + RPAR) )\r
-\r
-join_source << (Group(single_source + OneOrMore(join_op + single_source + join_constraint)) | \r
- single_source)\r
-\r
-result_column = "*" | table_name + "." + "*" | Group(expr + Optional(Optional(AS) + column_alias))\r
-select_core = (SELECT + Optional(DISTINCT | ALL) + Group(delimitedList(result_column))("columns") +\r
- Optional(FROM + join_source("from*")) +\r
- Optional(WHERE + expr("where_expr")) +\r
- Optional(GROUP + BY + Group(delimitedList(ordering_term)("group_by_terms")) + \r
- Optional(HAVING + expr("having_expr"))))\r
-\r
-select_stmt << (select_core + ZeroOrMore(compound_operator + select_core) +\r
- Optional(ORDER + BY + Group(delimitedList(ordering_term))("order_by_terms")) +\r
- Optional(LIMIT + (Group(expr + OFFSET + expr) | Group(expr + COMMA + expr) | expr)("limit")))\r
-\r
-tests = """\\r
- select * from xyzzy where z > 100\r
- select * from xyzzy where z > 100 order by zz\r
- select * from xyzzy\r
- select z.* from xyzzy\r
- select a, b from test_table where 1=1 and b='yes'\r
- select a, b from test_table where 1=1 and b in (select bb from foo)\r
- select z.a, b from test_table where 1=1 and b in (select bb from foo)\r
- select z.a, b from test_table where 1=1 and b in (select bb from foo) order by b,c desc,d\r
- select z.a, b from test_table left join test2_table where 1=1 and b in (select bb from foo)\r
- select a, db.table.b as BBB from db.table where 1=1 and BBB='yes'\r
- select a, db.table.b as BBB from test_table,db.table where 1=1 and BBB='yes'\r
- select a, db.table.b as BBB from test_table,db.table where 1=1 and BBB='yes' limit 50\r
- """\r
-\r
-select_stmt.runTests(tests)\r
+++ /dev/null
-# sexpParser.py\r
-#\r
-# Demonstration of the pyparsing module, implementing a simple S-expression\r
-# parser.\r
-#\r
-# Updates:\r
-# November, 2011 - fixed errors in precedence of alternatives in simpleString;\r
-# fixed exception raised in verifyLen to properly signal the input string \r
-# and exception location so that markInputline works correctly; fixed \r
-# definition of decimal to accept a single '0' and optional leading '-'\r
-# sign; updated tests to improve parser coverage\r
-#\r
-# Copyright 2007-2011, by Paul McGuire\r
-#\r
-"""\r
-BNF reference: http://theory.lcs.mit.edu/~rivest/sexp.txt\r
-\r
-<sexp> :: <string> | <list>\r
-<string> :: <display>? <simple-string> ;\r
-<simple-string> :: <raw> | <token> | <base-64> | <hexadecimal> | \r
- <quoted-string> ;\r
-<display> :: "[" <simple-string> "]" ;\r
-<raw> :: <decimal> ":" <bytes> ;\r
-<decimal> :: <decimal-digit>+ ;\r
- -- decimal numbers should have no unnecessary leading zeros\r
-<bytes> -- any string of bytes, of the indicated length\r
-<token> :: <tokenchar>+ ;\r
-<base-64> :: <decimal>? "|" ( <base-64-char> | <whitespace> )* "|" ;\r
-<hexadecimal> :: "#" ( <hex-digit> | <white-space> )* "#" ;\r
-<quoted-string> :: <decimal>? <quoted-string-body> \r
-<quoted-string-body> :: "\"" <bytes> "\""\r
-<list> :: "(" ( <sexp> | <whitespace> )* ")" ;\r
-<whitespace> :: <whitespace-char>* ;\r
-<token-char> :: <alpha> | <decimal-digit> | <simple-punc> ;\r
-<alpha> :: <upper-case> | <lower-case> | <digit> ;\r
-<lower-case> :: "a" | ... | "z" ;\r
-<upper-case> :: "A" | ... | "Z" ;\r
-<decimal-digit> :: "0" | ... | "9" ;\r
-<hex-digit> :: <decimal-digit> | "A" | ... | "F" | "a" | ... | "f" ;\r
-<simple-punc> :: "-" | "." | "/" | "_" | ":" | "*" | "+" | "=" ;\r
-<whitespace-char> :: " " | "\t" | "\r" | "\n" ;\r
-<base-64-char> :: <alpha> | <decimal-digit> | "+" | "/" | "=" ;\r
-<null> :: "" ;\r
-"""\r
-\r
-from pyparsing import *\r
-from base64 import b64decode\r
-import pprint\r
-\r
-def verifyLen(s,l,t):\r
- t = t[0]\r
- if t.len is not None:\r
- t1len = len(t[1])\r
- if t1len != t.len:\r
- raise ParseFatalException(s,l,\\r
- "invalid data of length %d, expected %s" % (t1len, t.len))\r
- return t[1]\r
-\r
-# define punctuation literals\r
-LPAR, RPAR, LBRK, RBRK, LBRC, RBRC, VBAR = map(Suppress, "()[]{}|")\r
-\r
-decimal = Regex(r'0|[1-9]\d*').setParseAction(lambda t: int(t[0]))\r
-hexadecimal = ("#" + OneOrMore(Word(hexnums)) + "#")\\r
- .setParseAction(lambda t: int("".join(t[1:-1]),16))\r
-bytes = Word(printables)\r
-raw = Group(decimal("len") + Suppress(":") + bytes).setParseAction(verifyLen)\r
-token = Word(alphanums + "-./_:*+=")\r
-base64_ = Group(Optional(decimal|hexadecimal,default=None)("len") + VBAR \r
- + OneOrMore(Word( alphanums +"+/=" )).setParseAction(lambda t: b64decode("".join(t)))\r
- + VBAR).setParseAction(verifyLen)\r
- \r
-qString = Group(Optional(decimal,default=None)("len") + \r
- dblQuotedString.setParseAction(removeQuotes)).setParseAction(verifyLen)\r
-simpleString = base64_ | raw | decimal | token | hexadecimal | qString\r
-\r
-# extended definitions\r
-decimal = Regex(r'-?0|[1-9]\d*').setParseAction(lambda t: int(t[0]))\r
-real = Regex(r"[+-]?\d+\.\d*([eE][+-]?\d+)?").setParseAction(lambda tokens: float(tokens[0]))\r
-token = Word(alphanums + "-./_:*+=!<>")\r
-\r
-simpleString = real | base64_ | raw | decimal | token | hexadecimal | qString\r
-\r
-display = LBRK + simpleString + RBRK\r
-string_ = Optional(display) + simpleString\r
-\r
-sexp = Forward()\r
-sexpList = Group(LPAR + ZeroOrMore(sexp) + RPAR)\r
-sexp << ( string_ | sexpList )\r
- \r
-######### Test data ###########\r
-test00 = """(snicker "abc" (#03# |YWJj|))"""\r
-test01 = """(certificate\r
- (issuer\r
- (name\r
- (public-key\r
- rsa-with-md5\r
- (e 15 |NFGq/E3wh9f4rJIQVXhS|)\r
- (n |d738/4ghP9rFZ0gAIYZ5q9y6iskDJwASi5rEQpEQq8ZyMZeIZzIAR2I5iGE=|))\r
- aid-committee))\r
- (subject\r
- (ref\r
- (public-key\r
- rsa-with-md5\r
- (e |NFGq/E3wh9f4rJIQVXhS|)\r
- (n |d738/4ghP9rFZ0gAIYZ5q9y6iskDJwASi5rEQpEQq8ZyMZeIZzIAR2I5iGE=|))\r
- tom\r
- mother))\r
- (not-before "1997-01-01_09:00:00")\r
- (not-after "1998-01-01_09:00:00")\r
- (tag\r
- (spend (account "12345678") (* numeric range "1" "1000"))))\r
-"""\r
-test02 = """(lambda (x) (* x x))"""\r
-test03 = """(def length\r
- (lambda (x)\r
- (cond\r
- ((not x) 0)\r
- ( t (+ 1 (length (cdr x))))\r
- )\r
- )\r
-)\r
-"""\r
-test04 = """(2:XX "abc" (#03# |YWJj|))"""\r
-test05 = """(if (is (window_name) "XMMS") (set_workspace 2))"""\r
-test06 = """(if\r
- (and\r
- (is (application_name) "Firefox")\r
- (or\r
- (contains (window_name) "Enter name of file to save to")\r
- (contains (window_name) "Save As")\r
- (contains (window_name) "Save Image")\r
- ()\r
- )\r
- )\r
- (geometry "+140+122")\r
-)\r
-"""\r
-test07 = """(defun factorial (x)\r
- (if (zerop x) 1\r
- (* x (factorial (- x 1)))))\r
- """\r
-test51 = """(2:XX "abc" (#30# |YWJj|))"""\r
-test51error = """(3:XX "abc" (#30# |YWJj|))"""\r
-\r
-test52 = """ \r
- (and \r
- (or (> uid 1000) \r
- (!= gid 20) \r
- ) \r
- (> quota 5.0e+03) \r
- ) \r
- """ \r
-\r
-# Run tests\r
-t = None\r
-alltests = [ locals()[t] for t in sorted(locals()) if t.startswith("test") ]\r
-\r
-for t in alltests:\r
- print('-'*50)\r
- print(t)\r
- try:\r
- sexpr = sexp.parseString(t, parseAll=True)\r
- pprint.pprint(sexpr.asList())\r
- except ParseFatalException as pfe:\r
- print("Error:", pfe.msg)\r
- print(pfe.markInputline('^'))\r
- print()\r
+++ /dev/null
-# shapes.py\r
-#\r
-# A sample program showing how parse actions can convert parsed \r
-# strings into a data type or object.\r
-#\r
-# Copyright 2012, Paul T. McGuire\r
-#\r
-\r
-# define class hierarchy of Shape classes, with polymorphic area method\r
-class Shape(object):\r
- def __init__(self, tokens):\r
- self.__dict__.update(tokens.asDict())\r
-\r
- def area(self):\r
- raise NotImplementedException()\r
- \r
- def __str__(self):\r
- return "<%s>: %s" % (self.__class__.__name__, self.__dict__)\r
-\r
-class Square(Shape):\r
- def area(self):\r
- return self.side**2\r
-\r
-class Rectangle(Shape):\r
- def area(self):\r
- return self.width * self.height\r
-\r
-class Circle(Shape):\r
- def area(self):\r
- return 3.14159 * self.radius**2\r
-\r
-\r
-from pyparsing import *\r
-\r
-number = Regex(r'-?\d+(\.\d*)?').setParseAction(lambda t:float(t[0]))\r
-\r
-# Shape expressions:\r
-# square : S <centerx> <centery> <side>\r
-# rectangle: R <centerx> <centery> <width> <height>\r
-# circle : C <centerx> <centery> <diameter>\r
-\r
-squareDefn = "S" + number('centerx') + number('centery') + number('side')\r
-rectDefn = "R" + number('centerx') + number('centery') + number('width') + number('height')\r
-circleDefn = "C" + number('centerx') + number('centery') + number('diameter')\r
-\r
-squareDefn.setParseAction(Square)\r
-rectDefn.setParseAction(Rectangle)\r
-\r
-def computeRadius(tokens):\r
- tokens['radius'] = tokens.diameter/2.0\r
-circleDefn.setParseAction(computeRadius, Circle)\r
-\r
-shapeExpr = squareDefn | rectDefn | circleDefn\r
-\r
-tests = """\\r
-C 0 0 100\r
-R 10 10 20 50\r
-S -1 5 10""".splitlines()\r
-\r
-for t in tests:\r
- shape = shapeExpr.parseString(t)[0]\r
- print(shape)\r
- print("Area:", shape.area())\r
- print()\r
+++ /dev/null
-#\r
-# simpleArith.py\r
-#\r
-# Example of defining an arithmetic expression parser using\r
-# the infixNotation helper method in pyparsing.\r
-#\r
-# Copyright 2006, by Paul McGuire\r
-#\r
-\r
-from pyparsing import *\r
-\r
-integer = Word(nums).setParseAction(lambda t:int(t[0]))\r
-variable = Word(alphas,exact=1)\r
-operand = integer | variable\r
-\r
-expop = Literal('^')\r
-signop = oneOf('+ -')\r
-multop = oneOf('* /')\r
-plusop = oneOf('+ -')\r
-factop = Literal('!')\r
-\r
-# To use the infixNotation helper:\r
-# 1. Define the "atom" operand term of the grammar.\r
-# For this simple grammar, the smallest operand is either\r
-# and integer or a variable. This will be the first argument\r
-# to the infixNotation method.\r
-# 2. Define a list of tuples for each level of operator\r
-# precendence. Each tuple is of the form\r
-# (opExpr, numTerms, rightLeftAssoc, parseAction), where\r
-# - opExpr is the pyparsing expression for the operator;\r
-# may also be a string, which will be converted to a Literal\r
-# - numTerms is the number of terms for this operator (must\r
-# be 1 or 2)\r
-# - rightLeftAssoc is the indicator whether the operator is\r
-# right or left associative, using the pyparsing-defined\r
-# constants opAssoc.RIGHT and opAssoc.LEFT.\r
-# - parseAction is the parse action to be associated with \r
-# expressions matching this operator expression (the\r
-# parse action tuple member may be omitted)\r
-# 3. Call infixNotation passing the operand expression and\r
-# the operator precedence list, and save the returned value\r
-# as the generated pyparsing expression. You can then use\r
-# this expression to parse input strings, or incorporate it\r
-# into a larger, more complex grammar.\r
-# \r
-expr = infixNotation( operand,\r
- [("!", 1, opAssoc.LEFT),\r
- ("^", 2, opAssoc.RIGHT),\r
- (signop, 1, opAssoc.RIGHT),\r
- (multop, 2, opAssoc.LEFT),\r
- (plusop, 2, opAssoc.LEFT),]\r
- )\r
-\r
-test = ["9 + 2 + 3",\r
- "9 + 2 * 3",\r
- "(9 + 2) * 3",\r
- "(9 + -2) * 3",\r
- "(9 + -2) * 3^2^2",\r
- "(9! + -2) * 3^2^2",\r
- "M*X + B",\r
- "M*(X + B)",\r
- "1+2*-3^4*5+-+-6",]\r
-for t in test:\r
- print(t)\r
- print(expr.parseString(t))\r
- print('') \r
-\r
+++ /dev/null
-#\r
-# simpleBool.py\r
-#\r
-# Example of defining a boolean logic parser using\r
-# the operatorGrammar helper method in pyparsing.\r
-#\r
-# In this example, parse actions associated with each\r
-# operator expression will "compile" the expression\r
-# into BoolXXX class instances, which can then\r
-# later be evaluated for their boolean value.\r
-#\r
-# Copyright 2006, by Paul McGuire\r
-# Updated 2013-Sep-14 - improved Python 2/3 cross-compatibility\r
-#\r
-from pyparsing import infixNotation, opAssoc, Keyword, Word, alphas\r
-\r
-# define classes to be built at parse time, as each matching\r
-# expression type is parsed\r
-class BoolOperand(object):\r
- def __init__(self,t):\r
- self.label = t[0]\r
- self.value = eval(t[0])\r
- def __bool__(self):\r
- return self.value\r
- def __str__(self):\r
- return self.label\r
- __repr__ = __str__\r
- __nonzero__ = __bool__\r
-\r
-class BoolBinOp(object):\r
- def __init__(self,t):\r
- self.args = t[0][0::2]\r
- def __str__(self):\r
- sep = " %s " % self.reprsymbol\r
- return "(" + sep.join(map(str,self.args)) + ")"\r
- def __bool__(self):\r
- return self.evalop(bool(a) for a in self.args)\r
- __nonzero__ = __bool__\r
- __repr__ = __str__\r
-\r
-class BoolAnd(BoolBinOp):\r
- reprsymbol = '&'\r
- evalop = all\r
-\r
-class BoolOr(BoolBinOp):\r
- reprsymbol = '|'\r
- evalop = any\r
-\r
-class BoolNot(object):\r
- def __init__(self,t):\r
- self.arg = t[0][1]\r
- def __bool__(self):\r
- v = bool(self.arg)\r
- return not v\r
- def __str__(self):\r
- return "~" + str(self.arg)\r
- __repr__ = __str__\r
- __nonzero__ = __bool__\r
-\r
-TRUE = Keyword("True")\r
-FALSE = Keyword("False")\r
-boolOperand = TRUE | FALSE | Word(alphas,max=1)\r
-boolOperand.setParseAction(BoolOperand)\r
-\r
-# define expression, based on expression operand and\r
-# list of operations in precedence order\r
-boolExpr = infixNotation( boolOperand,\r
- [\r
- ("not", 1, opAssoc.RIGHT, BoolNot),\r
- ("and", 2, opAssoc.LEFT, BoolAnd),\r
- ("or", 2, opAssoc.LEFT, BoolOr),\r
- ])\r
-\r
-\r
-if __name__ == "__main__":\r
- p = True\r
- q = False\r
- r = True\r
- tests = [("p", True),\r
- ("q", False),\r
- ("p and q", False),\r
- ("p and not q", True),\r
- ("not not p", True),\r
- ("not(p and q)", True),\r
- ("q or not p and r", False),\r
- ("q or not p or not r", False),\r
- ("q or not (p and r)", False),\r
- ("p or q or r", True),\r
- ("p or q or r and False", True),\r
- ("(p or q or r) and False", False),\r
- ]\r
-\r
- print("p =", p)\r
- print("q =", q)\r
- print("r =", r)\r
- print()\r
- for t,expected in tests:\r
- res = boolExpr.parseString(t)[0]\r
- success = "PASS" if bool(res) == expected else "FAIL"\r
- print (t,'\n', res, '=', bool(res),'\n', success, '\n')\r
-\r
-\r
+++ /dev/null
-# simpleSQL.py\r
-#\r
-# simple demo of using the parsing library to do simple-minded SQL parsing\r
-# could be extended to include where clauses etc.\r
-#\r
-# Copyright (c) 2003,2016, Paul McGuire\r
-#\r
-from pyparsing import Literal, CaselessLiteral, Word, delimitedList, Optional, \\r
- Combine, Group, alphas, nums, alphanums, ParseException, Forward, oneOf, quotedString, \\r
- ZeroOrMore, restOfLine, CaselessKeyword, pyparsing_common\r
-\r
-# define SQL tokens\r
-selectStmt = Forward()\r
-SELECT, FROM, WHERE = map(CaselessKeyword, "select from where".split())\r
-\r
-ident = Word( alphas, alphanums + "_$" ).setName("identifier")\r
-columnName = delimitedList(ident, ".", combine=True).setName("column name")\r
-columnName.addParseAction(pyparsing_common.upcaseTokens)\r
-columnNameList = Group( delimitedList(columnName))\r
-tableName = delimitedList(ident, ".", combine=True).setName("table name")\r
-tableName.addParseAction(pyparsing_common.upcaseTokens)\r
-tableNameList = Group(delimitedList(tableName))\r
-\r
-whereExpression = Forward()\r
-and_, or_, in_ = map(CaselessKeyword, "and or in".split())\r
-\r
-binop = oneOf("= != < > >= <= eq ne lt le gt ge", caseless=True)\r
-realNum = pyparsing_common.real()\r
-intNum = pyparsing_common.signed_integer()\r
-\r
-columnRval = realNum | intNum | quotedString | columnName # need to add support for alg expressions\r
-whereCondition = Group(\r
- ( columnName + binop + columnRval ) |\r
- ( columnName + in_ + "(" + delimitedList( columnRval ) + ")" ) |\r
- ( columnName + in_ + "(" + selectStmt + ")" ) |\r
- ( "(" + whereExpression + ")" )\r
- )\r
-whereExpression << whereCondition + ZeroOrMore( ( and_ | or_ ) + whereExpression ) \r
-\r
-# define the grammar\r
-selectStmt <<= (SELECT + ('*' | columnNameList)("columns") + \r
- FROM + tableNameList( "tables" ) + \r
- Optional(Group(WHERE + whereExpression), "")("where"))\r
-\r
-simpleSQL = selectStmt\r
-\r
-# define Oracle comment format, and ignore them\r
-oracleSqlComment = "--" + restOfLine\r
-simpleSQL.ignore( oracleSqlComment )\r
-\r
-if __name__ == "__main__":\r
- simpleSQL.runTests("""\\r
-\r
- # multiple tables\r
- SELECT * from XYZZY, ABC\r
-\r
- # dotted table name\r
- select * from SYS.XYZZY\r
-\r
- Select A from Sys.dual\r
-\r
- Select A,B,C from Sys.dual\r
-\r
- Select A, B, C from Sys.dual, Table2 \r
-\r
- # FAIL - invalid SELECT keyword\r
- Xelect A, B, C from Sys.dual\r
-\r
- # FAIL - invalid FROM keyword\r
- Select A, B, C frox Sys.dual\r
-\r
- # FAIL - incomplete statement\r
- Select\r
-\r
- # FAIL - incomplete statement\r
- Select * from\r
-\r
- # FAIL - invalid column\r
- Select &&& frox Sys.dual\r
-\r
- # where clause\r
- Select A from Sys.dual where a in ('RED','GREEN','BLUE')\r
-\r
- # compound where clause\r
- Select A from Sys.dual where a in ('RED','GREEN','BLUE') and b in (10,20,30)\r
-\r
- # where clause with comparison operator\r
- Select A,b from table1,table2 where table1.id eq table2.id""")\r
+++ /dev/null
-from pyparsing import *\r
-\r
-wikiInput = """\r
-Here is a simple Wiki input:\r
- *This is in italics.*\r
- **This is in bold!**\r
- ***This is in bold italics!***\r
- Here's a URL to {{Pyparsing's Wiki Page->http://pyparsing.wikispaces.com}}\r
-"""\r
-\r
-def convertToHTML(opening,closing):\r
- def conversionParseAction(s,l,t):\r
- return opening + t[0] + closing\r
- return conversionParseAction\r
- \r
-italicized = QuotedString("*").setParseAction(convertToHTML("<I>","</I>"))\r
-bolded = QuotedString("**").setParseAction(convertToHTML("<B>","</B>"))\r
-boldItalicized = QuotedString("***").setParseAction(convertToHTML("<B><I>","</I></B>"))\r
-def convertToHTML_A(s,l,t):\r
- try:\r
- text,url=t[0].split("->")\r
- except ValueError:\r
- raise ParseFatalException(s,l,"invalid URL link reference: " + t[0])\r
- return '<A href="%s">%s</A>' % (url,text)\r
- \r
-urlRef = QuotedString("{{",endQuoteChar="}}").setParseAction(convertToHTML_A)\r
-\r
-wikiMarkup = urlRef | boldItalicized | bolded | italicized\r
-\r
-print(wikiInput)\r
-print()\r
-print(wikiMarkup.transformString(wikiInput))\r
+++ /dev/null
-#!/usr/bin/env python\r
-\r
-"""\r
-NAME:\r
- sparser.py \r
-\r
-SYNOPSIS:\r
- sparser.py [options] filename\r
-\r
-DESCRIPTION:\r
- The sparser.py script is a Specified PARSER. It is unique (as far as I can\r
- tell) because it doesn't care about the delimiter(s). The user specifies\r
- what is expected, and the order, for each line of text. All of the heavy\r
- lifting is handled by pyparsing (http://pyparsing.sf.net).\r
-\r
-OPTIONS:\r
- -h,--help this message\r
- -v,--version version\r
- -d,--debug turn on debug messages\r
-\r
-EXAMPLES:\r
- 1. As standalone\r
- sparser.py myfile\r
- 2. As library\r
- import sparser\r
- ...\r
-\r
-#Copyright (C) 2006 Tim Cera timcera@earthlink.net\r
-#\r
-#\r
-# This program is free software; you can redistribute it and/or modify it\r
-# under the terms of the GNU General Public License as published by the Free\r
-# Software Foundation; either version 2 of the License, or (at your option)\r
-# any later version.\r
-#\r
-# This program is distributed in the hope that it will be useful, but\r
-# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
-# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\r
-# for more details.\r
-#\r
-# You should have received a copy of the GNU General Public License along\r
-# with this program; if not, write to the Free Software Foundation, Inc.,\r
-# 675 Mass Ave, Cambridge, MA 02139, USA.\r
-"""\r
-\r
-#===imports======================\r
-import sys\r
-import os\r
-import getopt\r
-import re\r
-import gzip\r
-\r
-from pyparsing import *\r
-\r
-\r
-#===globals======================\r
-modname = "sparser"\r
-__version__ = "0.1"\r
-\r
-\r
-#--option args--\r
-debug_p = 0\r
-#opt_b=None #string arg, default is undefined\r
-\r
-\r
-#---positional args, default is empty---\r
-pargs = [] \r
-\r
-\r
-#---other---\r
-\r
-\r
-#===utilities====================\r
-def msg(txt):\r
- """Send message to stdout."""\r
- sys.stdout.write(txt)\r
- sys.stdout.flush()\r
-\r
-def debug(ftn, txt):\r
- """Used for debugging."""\r
- if debug_p:\r
- sys.stdout.write("%s.%s:%s\n" % (modname, ftn, txt))\r
- sys.stdout.flush()\r
-\r
-def fatal(ftn, txt):\r
- """If can't continue."""\r
- msg = "%s.%s:FATAL:%s\n" % (modname, ftn, txt)\r
- raise SystemExit(msg)\r
- \r
-def usage():\r
- """Prints the docstring."""\r
- print(__doc__)\r
-\r
-\r
-\r
-#====================================\r
-class ToInteger(TokenConverter):\r
- """Converter to make token into an integer."""\r
- def postParse( self, instring, loc, tokenlist ):\r
- return int(tokenlist[0])\r
-\r
-class ToFloat(TokenConverter):\r
- """Converter to make token into a float."""\r
- def postParse( self, instring, loc, tokenlist ):\r
- return float(tokenlist[0])\r
-\r
-class ParseFileLineByLine:\r
- """\r
- Bring data from text files into a program, optionally parsing each line\r
- according to specifications in a parse definition file.\r
-\r
- ParseFileLineByLine instances can be used like normal file objects (i.e. by\r
- calling readline(), readlines(), and write()), but can also be used as\r
- sequences of lines in for-loops.\r
-\r
- ParseFileLineByLine objects also handle compression transparently. i.e. it\r
- is possible to read lines from a compressed text file as if it were not\r
- compressed. Compression is deduced from the file name suffixes '.Z'\r
- (compress/uncompress), '.gz' (gzip/gunzip), and '.bz2' (bzip2).\r
-\r
- The parse definition file name is developed based on the input file name.\r
- If the input file name is 'basename.ext', then the definition file is\r
- 'basename_def.ext'. If a definition file specific to the input file is not\r
- found, then the program searches for the file 'sparse.def' which would be\r
- the definition file for all files in that directory without a file specific\r
- definition file.\r
-\r
- Finally, ParseFileLineByLine objects accept file names that start with '~'\r
- or '~user' to indicate a home directory, as well as URLs (for reading\r
- only).\r
-\r
- Constructor: \r
- ParseFileLineByLine(|filename|, |mode|='"r"'), where |filename| is the name\r
- of the file (or a URL) and |mode| is one of '"r"' (read), '"w"' (write) or\r
- '"a"' (append, not supported for .Z files). \r
- """\r
-\r
- def __init__(self, filename, mode = 'r'):\r
- """Opens input file, and if available the definition file. If the\r
- definition file is available __init__ will then create some pyparsing\r
- helper variables. """\r
- if mode not in ['r', 'w', 'a']:\r
- raise IOError(0, 'Illegal mode: ' + repr(mode))\r
-\r
- if string.find(filename, ':/') > 1: # URL\r
- if mode == 'w':\r
- raise IOError("can't write to a URL")\r
- import urllib.request, urllib.parse, urllib.error\r
- self.file = urllib.request.urlopen(filename)\r
- else:\r
- filename = os.path.expanduser(filename)\r
- if mode == 'r' or mode == 'a':\r
- if not os.path.exists(filename):\r
- raise IOError(2, 'No such file or directory: ' + filename)\r
- filen, file_extension = os.path.splitext(filename)\r
- command_dict = {\r
- ('.Z', 'r'): \r
- "self.file = os.popen('uncompress -c ' + filename, mode)",\r
- ('.gz', 'r'): \r
- "self.file = gzip.GzipFile(filename, 'rb')",\r
- ('.bz2', 'r'): \r
- "self.file = os.popen('bzip2 -dc ' + filename, mode)",\r
- ('.Z', 'w'): \r
- "self.file = os.popen('compress > ' + filename, mode)",\r
- ('.gz', 'w'): \r
- "self.file = gzip.GzipFile(filename, 'wb')",\r
- ('.bz2', 'w'): \r
- "self.file = os.popen('bzip2 > ' + filename, mode)",\r
- ('.Z', 'a'): \r
- "raise IOError, (0, 'Can\'t append to .Z files')",\r
- ('.gz', 'a'): \r
- "self.file = gzip.GzipFile(filename, 'ab')",\r
- ('.bz2', 'a'): \r
- "raise IOError, (0, 'Can\'t append to .bz2 files')",\r
- }\r
-\r
- exec(command_dict.get((file_extension, mode), \r
- 'self.file = open(filename, mode)'))\r
-\r
- self.grammar = None\r
-\r
- # Try to find a parse ('*_def.ext') definition file. First try to find\r
- # a file specific parse definition file, then look for 'sparse.def'\r
- # that would be the definition file for all files within the directory.\r
-\r
- # The definition file is pure Python. The one variable that needs to\r
- # be specified is 'parse'. The 'parse' variable is a list of tuples\r
- # defining the name, type, and because it is a list, the order of\r
- # variables on each line in the data file. The variable name is a\r
- # string, the type variable is defined as integer, real, and qString.\r
-\r
- # parse = [\r
- # ('year', integer),\r
- # ('month', integer),\r
- # ('day', integer),\r
- # ('value', real),\r
- # ]\r
-\r
- definition_file_one = filen + "_def" + file_extension\r
- definition_file_two = os.path.dirname(filen) + os.sep + "sparse.def"\r
- if os.path.exists(definition_file_one):\r
- self.parsedef = definition_file_one\r
- elif os.path.exists(definition_file_two):\r
- self.parsedef = definition_file_two\r
- else:\r
- self.parsedef = None\r
- return None\r
-\r
- # Create some handy pyparsing constructs. I kept 'decimal_sep' so that\r
- # could easily change to parse if the decimal separator is a ",".\r
- decimal_sep = "."\r
- sign = oneOf("+ -")\r
- # part of printables without decimal_sep, +, -\r
- special_chars = string.replace('!"#$%&\'()*,./:;<=>?@[\\]^_`{|}~', \r
- decimal_sep, "") \r
- integer = ToInteger(\r
- Combine(Optional(sign) + \r
- Word(nums))).setName("integer")\r
- positive_integer = ToInteger(\r
- Combine(Optional("+") + \r
- Word(nums))).setName("integer")\r
- negative_integer = ToInteger(\r
- Combine("-" + \r
- Word(nums))).setName("integer")\r
- real = ToFloat(\r
- Combine(Optional(sign) + \r
- Word(nums) + \r
- decimal_sep + \r
- Optional(Word(nums)) + \r
- Optional(oneOf("E e") + \r
- Word(nums)))).setName("real")\r
- positive_real = ToFloat(\r
- Combine(Optional("+") + \r
- Word(nums) + \r
- decimal_sep + \r
- Optional(Word(nums)) + \r
- Optional(oneOf("E e") + \r
- Word(nums)))).setName("real")\r
- negative_real = ToFloat(\r
- Combine("-" + \r
- Word(nums) + \r
- decimal_sep + \r
- Optional(Word(nums)) + \r
- Optional(oneOf("E e") + \r
- Word(nums)))).setName("real")\r
- qString = ( sglQuotedString | dblQuotedString ).setName("qString")\r
- \r
- # add other characters we should skip over between interesting fields\r
- integer_junk = Optional(\r
- Suppress(\r
- Word(alphas + \r
- special_chars + \r
- decimal_sep))).setName("integer_junk")\r
- real_junk = Optional(\r
- Suppress(\r
- Word(alphas + \r
- special_chars))).setName("real_junk")\r
- qString_junk = SkipTo(qString).setName("qString_junk")\r
-\r
- # Now that 'integer', 'real', and 'qString' have been assigned I can\r
- # execute the definition file. \r
- exec(compile(open(self.parsedef).read(), self.parsedef, 'exec'))\r
-\r
- # Build the grammar, combination of the 'integer', 'real, 'qString',\r
- # and '*_junk' variables assigned above in the order specified in the\r
- # definition file.\r
- grammar = []\r
- for nam, expr in parse:\r
- grammar.append( eval(expr.name + "_junk"))\r
- grammar.append( expr.setResultsName(nam) )\r
- self.grammar = And( grammar[1:] + [restOfLine] )\r
-\r
- def __del__(self):\r
- """Delete (close) the file wrapper."""\r
- self.close()\r
-\r
- def __getitem__(self, item):\r
- """Used in 'for line in fp:' idiom."""\r
- line = self.readline()\r
- if not line:\r
- raise IndexError\r
- return line\r
-\r
- def readline(self):\r
- """Reads (and optionally parses) a single line."""\r
- line = self.file.readline()\r
- if self.grammar and line:\r
- try:\r
- return self.grammar.parseString(line).asDict()\r
- except ParseException:\r
- return self.readline()\r
- else:\r
- return line\r
-\r
- def readlines(self):\r
- """Returns a list of all lines (optionally parsed) in the file."""\r
- if self.grammar:\r
- tot = []\r
- # Used this way instead of a 'for' loop against\r
- # self.file.readlines() so that there wasn't two copies of the file\r
- # in memory.\r
- while 1:\r
- line = self.file.readline()\r
- if not line:\r
- break\r
- tot.append(line)\r
- return tot\r
- return self.file.readlines()\r
-\r
- def write(self, data):\r
- """Write to a file."""\r
- self.file.write(data)\r
-\r
- def writelines(self, list):\r
- """Write a list to a file. Each item in the list is a line in the\r
- file.\r
- """\r
- for line in list:\r
- self.file.write(line)\r
-\r
- def close(self):\r
- """Close the file."""\r
- self.file.close()\r
-\r
- def flush(self):\r
- """Flush in memory contents to file."""\r
- self.file.flush()\r
-\r
-\r
-#=============================\r
-def main(pargs):\r
- """This should only be used for testing. The primary mode of operation is\r
- as an imported library.\r
- """\r
- input_file = sys.argv[1]\r
- fp = ParseFileLineByLine(input_file)\r
- for i in fp:\r
- print(i)\r
-\r
- \r
-#-------------------------\r
-if __name__ == '__main__':\r
- ftn = "main"\r
- opts, pargs = getopt.getopt(sys.argv[1:], 'hvd',\r
- ['help', 'version', 'debug', 'bb='])\r
- for opt in opts:\r
- if opt[0] == '-h' or opt[0] == '--help':\r
- print(modname+": version="+__version__)\r
- usage()\r
- sys.exit(0)\r
- elif opt[0] == '-v' or opt[0] == '--version':\r
- print(modname+": version="+__version__)\r
- sys.exit(0)\r
- elif opt[0] == '-d' or opt[0] == '--debug':\r
- debug_p = 1\r
- elif opt[0] == '--bb':\r
- opt_b = opt[1]\r
-\r
- #---make the object and run it---\r
- main(pargs)\r
-\r
-#===Revision Log===\r
-#Created by mkpythonproj:\r
-#2006-02-06 Tim Cera \r
-#\r
+++ /dev/null
-#!/usr/bin/python\r
-\r
-# sql2dot.py\r
-#\r
-# Creates table graphics by parsing SQL table DML commands and \r
-# generating DOT language output.\r
-#\r
-# Adapted from a post at http://energyblog.blogspot.com/2006/04/blog-post_20.html.\r
-#\r
-sampleSQL = """\r
-create table student\r
-(\r
-student_id integer primary key,\r
-firstname varchar(20),\r
-lastname varchar(40),\r
-address1 varchar(80),\r
-address2 varchar(80),\r
-city varchar(30),\r
-state varchar(2),\r
-zipcode varchar(10),\r
-dob date\r
-);\r
-\r
-create table classes\r
-(\r
-class_id integer primary key,\r
-id varchar(8),\r
-maxsize integer,\r
-instructor varchar(40)\r
-);\r
-\r
-create table student_registrations\r
-(\r
-reg_id integer primary key,\r
-student_id integer,\r
-class_id integer\r
-);\r
-\r
-alter table only student_registrations\r
- add constraint students_link\r
- foreign key \r
- (student_id) references students(student_id);\r
-\r
-alter table only student_registrations\r
- add constraint classes_link \r
- foreign key \r
- (class_id) references classes(class_id);\r
-""".upper()\r
- \r
-from pyparsing import Literal, CaselessLiteral, Word, delimitedList \\r
- ,Optional, Combine, Group, alphas, nums, alphanums, Forward \\r
- , oneOf, sglQuotedString, OneOrMore, ZeroOrMore, CharsNotIn \\r
- , replaceWith\r
-\r
-skobki = "(" + ZeroOrMore(CharsNotIn(")")) + ")"\r
-field_def = OneOrMore(Word(alphas,alphanums+"_\"':-") | skobki)\r
-\r
-def field_act(s,loc,tok): \r
- return ("<"+tok[0]+"> " + " ".join(tok)).replace("\"","\\\"")\r
-\r
-field_def.setParseAction(field_act)\r
-\r
-field_list_def = delimitedList( field_def )\r
-def field_list_act(toks):\r
- return " | ".join(toks)\r
-\r
-field_list_def.setParseAction(field_list_act)\r
-\r
-create_table_def = Literal("CREATE") + "TABLE" + Word(alphas,alphanums+"_").setResultsName("tablename") + \\r
- "("+field_list_def.setResultsName("columns")+")"+ ";"\r
-\r
-def create_table_act(toks):\r
- return """"%(tablename)s" [\n\t label="<%(tablename)s> %(tablename)s | %(columns)s"\n\t shape="record"\n];""" % toks\r
-create_table_def.setParseAction(create_table_act)\r
-\r
-add_fkey_def=Literal("ALTER")+"TABLE"+"ONLY" + Word(alphanums+"_").setResultsName("fromtable") + "ADD" \\r
- + "CONSTRAINT" + Word(alphanums+"_") + "FOREIGN"+"KEY"+"("+Word(alphanums+"_").setResultsName("fromcolumn")+")" \\r
- +"REFERENCES"+Word(alphanums+"_").setResultsName("totable")+"("+Word(alphanums+"_").setResultsName("tocolumn")+")"+";" \r
-\r
-def add_fkey_act(toks):\r
- return """ "%(fromtable)s":%(fromcolumn)s -> "%(totable)s":%(tocolumn)s """ % toks\r
-add_fkey_def.setParseAction(add_fkey_act)\r
-\r
-other_statement_def = ( OneOrMore(CharsNotIn(";") ) + ";")\r
-other_statement_def.setParseAction( replaceWith("") )\r
-comment_def = "--" + ZeroOrMore(CharsNotIn("\n"))\r
-comment_def.setParseAction( replaceWith("") )\r
-\r
-statement_def = comment_def | create_table_def | add_fkey_def | other_statement_def\r
-defs = OneOrMore(statement_def)\r
-\r
-print("""digraph g { graph [ rankdir = "LR" ]; """)\r
-for i in defs.parseString(sampleSQL): \r
- if i!="": \r
- print(i)\r
-print("}")
\ No newline at end of file
+++ /dev/null
-# stackish.py\r
-#\r
-# Stackish is a data representation syntax, similar to JSON or YAML. For more info on \r
-# stackish, see http://www.savingtheinternetwithhate.com/stackish.html\r
-#\r
-# Copyright 2008, Paul McGuire\r
-#\r
-\r
-"""\r
-NUMBER A simple integer type that's just any series of digits. \r
-FLOAT A simple floating point type. \r
-STRING A string is double quotes with anything inside that's not a " or \r
- newline character. You can include \n and \" to include these \r
- characters. \r
-MARK Marks a point in the stack that demarcates the boundary for a nested \r
- group. \r
-WORD Marks the root node of a group, with the other end being the nearest \r
- MARK. \r
-GROUP Acts as the root node of an anonymous group. \r
-ATTRIBUTE Assigns an attribute name to the previously processed node. \r
- This means that just about anything can be an attribute, unlike in XML. \r
-BLOB A BLOB is unique to Stackish and allows you to record any content \r
- (even binary content) inside the structure. This is done by pre-\r
- sizing the data with the NUMBER similar to Dan Bernstein's netstrings \r
- setup. \r
-SPACE White space is basically ignored. This is interesting because since \r
- Stackish is serialized consistently this means you can use \n as the \r
- separation character and perform reasonable diffs on two structures. \r
-"""\r
-\r
-from pyparsing import Suppress,Word,nums,alphas,alphanums,Combine,oneOf,\\r
- Optional,QuotedString,Forward,Group,ZeroOrMore,printables,srange\r
-\r
-MARK,UNMARK,AT,COLON,QUOTE = map(Suppress,"[]@:'")\r
-\r
-NUMBER = Word(nums)\r
-NUMBER.setParseAction(lambda t:int(t[0]))\r
-FLOAT = Combine(oneOf("+ -") + Word(nums) + "." + Optional(Word(nums)))\r
-FLOAT.setParseAction(lambda t:float(t[0]))\r
-STRING = QuotedString('"', multiline=True)\r
-WORD = Word(alphas,alphanums+"_:")\r
-ATTRIBUTE = Combine(AT + WORD)\r
-\r
-strBody = Forward()\r
-def setBodyLength(tokens):\r
- strBody << Word(srange(r'[\0x00-\0xffff]'), exact=int(tokens[0]))\r
- return ""\r
-BLOB = Combine(QUOTE + Word(nums).setParseAction(setBodyLength) + \r
- COLON + strBody + QUOTE)\r
-\r
-item = Forward()\r
-def assignUsing(s):\r
- def assignPA(tokens):\r
- if s in tokens:\r
- tokens[tokens[s]] = tokens[0]\r
- del tokens[s]\r
- return assignPA\r
-GROUP = (MARK + \r
- Group( ZeroOrMore( \r
- (item + \r
- Optional(ATTRIBUTE)("attr")\r
- ).setParseAction(assignUsing("attr"))\r
- )\r
- ) + \r
- ( WORD("name") | UNMARK )\r
- ).setParseAction(assignUsing("name"))\r
-item << (NUMBER | FLOAT | STRING | BLOB | GROUP )\r
-\r
-tests = """\\r
-[ '10:1234567890' @name 25 @age +0.45 @percentage person:zed\r
-[ [ "hello" 1 child root\r
-[ "child" [ 200 '4:like' "I" "hello" things root\r
-[ [ "data" [ 2 1 ] @numbers child root\r
-[ [ 1 2 3 ] @test 4 5 6 root\r
-""".splitlines()\r
-\r
-for test in tests:\r
- if test:\r
- print(test)\r
- print(item.parseString(test).dump())\r
- print()\r
+++ /dev/null
-# stateMachine.py\r
-# \r
-# module to define .pystate import handler\r
-#\r
-#import imputil\r
-import sys\r
-import os\r
-import types\r
-import urllib.parse\r
-\r
-DEBUG = False\r
-\r
-from pyparsing import Word, Group, ZeroOrMore, alphas, \\r
- alphanums, ParserElement, ParseException, ParseSyntaxException, \\r
- Empty, LineEnd, OneOrMore, col, Keyword, pythonStyleComment, \\r
- StringEnd, traceParseAction\r
-\r
-\r
-ident = Word(alphas+"_", alphanums+"_$")\r
-\r
-pythonKeywords = """and as assert break class continue def \r
- del elif else except exec finally for from global if import \r
- in is lambda None not or pass print raise return try while with \r
- yield True False"""\r
-pythonKeywords = set(pythonKeywords.split())\r
-def no_keywords_allowed(s,l,t):\r
- wd = t[0]\r
- if wd in pythonKeywords:\r
- errmsg = "cannot not use keyword '%s' " \\r
- "as an identifier" % wd\r
- raise ParseException(s,l,errmsg)\r
-ident.setParseAction(no_keywords_allowed)\r
-\r
-stateTransition = ident("fromState") + "->" + ident("toState")\r
-stateMachine = Keyword("statemachine") + \\r
- ident("name") + ":" + \\r
- OneOrMore(Group(stateTransition))("transitions")\r
-\r
-namedStateTransition = (ident("fromState") + \\r
- "-(" + ident("transition") + ")->" + \\r
- ident("toState"))\r
-namedStateMachine = Keyword("statemachine") + \\r
- ident("name") + ":" + \\r
- OneOrMore(Group(namedStateTransition))("transitions")\r
-\r
-def expand_state_definition(source, loc, tokens):\r
- indent = " " * (col(loc,source)-1)\r
- statedef = []\r
- \r
- # build list of states\r
- states = set()\r
- fromTo = {}\r
- for tn in tokens.transitions:\r
- states.add(tn.fromState)\r
- states.add(tn.toState)\r
- fromTo[tn.fromState] = tn.toState\r
- \r
- # define base class for state classes\r
- baseStateClass = tokens.name + "State"\r
- statedef.extend([\r
- "class %s(object):" % baseStateClass,\r
- " def __str__(self):",\r
- " return self.__class__.__name__",\r
- " def next_state(self):",\r
- " return self._next_state_class()" ])\r
- \r
- # define all state classes\r
- statedef.extend(\r
- "class %s(%s): pass" % (s,baseStateClass) \r
- for s in states )\r
- statedef.extend(\r
- "%s._next_state_class = %s" % (s,fromTo[s]) \r
- for s in states if s in fromTo )\r
- \r
- return indent + ("\n"+indent).join(statedef)+"\n"\r
- \r
-stateMachine.setParseAction(expand_state_definition)\r
-\r
-def expand_named_state_definition(source,loc,tokens):\r
- indent = " " * (col(loc,source)-1)\r
- statedef = []\r
- # build list of states and transitions\r
- states = set()\r
- transitions = set()\r
- \r
- baseStateClass = tokens.name + "State"\r
- \r
- fromTo = {}\r
- for tn in tokens.transitions:\r
- states.add(tn.fromState)\r
- states.add(tn.toState)\r
- transitions.add(tn.transition)\r
- if tn.fromState in fromTo:\r
- fromTo[tn.fromState][tn.transition] = tn.toState\r
- else:\r
- fromTo[tn.fromState] = {tn.transition:tn.toState}\r
-\r
- # add entries for terminal states\r
- for s in states:\r
- if s not in fromTo:\r
- fromTo[s] = {}\r
- \r
- # define state transition class\r
- statedef.extend([\r
- "class %sTransition:" % baseStateClass,\r
- " def __str__(self):",\r
- " return self.transitionName",\r
- ])\r
- statedef.extend(\r
- "%s = %sTransition()" % (tn,baseStateClass) \r
- for tn in transitions)\r
- statedef.extend("%s.transitionName = '%s'" % (tn,tn) \r
- for tn in transitions)\r
-\r
- # define base class for state classes\r
- excmsg = "'" + tokens.name + \\r
- '.%s does not support transition "%s"' \\r
- "'% (self, tn)"\r
- statedef.extend([\r
- "class %s(object):" % baseStateClass,\r
- " def __str__(self):",\r
- " return self.__class__.__name__",\r
- " def next_state(self,tn):",\r
- " try:",\r
- " return self.tnmap[tn]()",\r
- " except KeyError:",\r
- " raise Exception(%s)" % excmsg,\r
- " def __getattr__(self,name):",\r
- " raise Exception(%s)" % excmsg,\r
- ])\r
- \r
- # define all state classes\r
- for s in states:\r
- statedef.append("class %s(%s): pass" % \r
- (s,baseStateClass))\r
-\r
- # define state transition maps and transition methods\r
- for s in states:\r
- trns = list(fromTo[s].items())\r
- statedef.append("%s.tnmap = {%s}" % \r
- (s, ",".join("%s:%s" % tn for tn in trns)) )\r
- statedef.extend([\r
- "%s.%s = staticmethod(lambda : %s())" % \r
- (s,tn_,to_)\r
- for tn_,to_ in trns\r
- ])\r
-\r
- return indent + ("\n"+indent).join(statedef) + "\n"\r
-\r
-namedStateMachine.setParseAction(\r
- expand_named_state_definition)\r
-\r
-#======================================================================\r
-# NEW STUFF - Matt Anderson, 2009-11-26\r
-#======================================================================\r
-class SuffixImporter(object):\r
-\r
- """An importer designed using the mechanism defined in :pep:`302`. I read\r
- the PEP, and also used Doug Hellmann's PyMOTW article `Modules and\r
- Imports`_, as a pattern.\r
-\r
- .. _`Modules and Imports`: http://www.doughellmann.com/PyMOTW/sys/imports.html \r
-\r
- Define a subclass that specifies a :attr:`suffix` attribute, and\r
- implements a :meth:`process_filedata` method. Then call the classmethod\r
- :meth:`register` on your class to actually install it in the appropriate\r
- places in :mod:`sys`. """\r
-\r
- scheme = 'suffix'\r
- suffix = None\r
- path_entry = None\r
-\r
- @classmethod\r
- def trigger_url(cls):\r
- if cls.suffix is None:\r
- raise ValueError('%s.suffix is not set' % cls.__name__)\r
- return 'suffix:%s' % cls.suffix\r
-\r
- @classmethod\r
- def register(cls):\r
- sys.path_hooks.append(cls)\r
- sys.path.append(cls.trigger_url())\r
-\r
- def __init__(self, path_entry):\r
- pr = urllib.parse.urlparse(str(path_entry))\r
- if pr.scheme != self.scheme or pr.path != self.suffix:\r
- raise ImportError()\r
- self.path_entry = path_entry\r
- self._found = {}\r
-\r
- def checkpath_iter(self, fullname):\r
- for dirpath in sys.path:\r
- # if the value in sys.path_importer_cache is None, then this\r
- # path *should* be imported by the builtin mechanism, and the\r
- # entry is thus a path to a directory on the filesystem;\r
- # if it's not None, then some other importer is in charge, and\r
- # it probably isn't even a filesystem path\r
- if sys.path_importer_cache.get(dirpath,False) is None:\r
- checkpath = os.path.join(\r
- dirpath,'%s.%s' % (fullname,self.suffix))\r
- yield checkpath\r
- \r
- def find_module(self, fullname, path=None):\r
- for checkpath in self.checkpath_iter(fullname):\r
- if os.path.isfile(checkpath):\r
- self._found[fullname] = checkpath\r
- return self\r
- return None\r
-\r
- def load_module(self, fullname):\r
- assert fullname in self._found\r
- if fullname in sys.modules:\r
- module = sys.modules[fullname]\r
- else:\r
- sys.modules[fullname] = module = types.ModuleType(fullname)\r
- data = None\r
- f = open(self._found[fullname])\r
- try:\r
- data = f.read()\r
- finally:\r
- f.close()\r
-\r
- module.__dict__.clear()\r
- module.__file__ = self._found[fullname]\r
- module.__name__ = fullname\r
- module.__loader__ = self\r
- self.process_filedata(module, data)\r
- return module\r
-\r
- def process_filedata(self, module, data):\r
- pass\r
-\r
-class PystateImporter(SuffixImporter):\r
- suffix = 'pystate'\r
-\r
- def process_filedata(self, module, data):\r
- # MATT-NOTE: re-worked :func:`get_state_machine`\r
-\r
- # convert any statemachine expressions\r
- stateMachineExpr = (stateMachine | \r
- namedStateMachine).ignore(\r
- pythonStyleComment)\r
- generated_code = stateMachineExpr.transformString(data)\r
-\r
- if DEBUG: print(generated_code)\r
-\r
- # compile code object from generated code \r
- # (strip trailing spaces and tabs, compile doesn't like \r
- # dangling whitespace)\r
- COMPILE_MODE = 'exec'\r
-\r
- codeobj = compile(generated_code.rstrip(" \t"), \r
- module.__file__, \r
- COMPILE_MODE)\r
-\r
- exec(codeobj, module.__dict__)\r
-\r
-PystateImporter.register()\r
+++ /dev/null
-""" Test for bibparse grammar """\r
-\r
-from os.path import join as pjoin, dirname\r
-\r
-from pyparsing import ParseException\r
-from btpyparse import Macro\r
-import btpyparse as bp\r
-\r
-from nose.tools import assert_true, assert_false, assert_equal, assert_raises\r
-\r
-\r
-def test_names():\r
- # check various types of names\r
- # All names can contains alphas, but not some special chars\r
- bad_chars = '"#%\'(),={}'\r
- for name_type, dig1f in ((bp.macro_def, False),\r
- (bp.field_name, False),\r
- (bp.entry_type, False),\r
- (bp.cite_key, True)):\r
- if dig1f: # can start with digit\r
- assert_equal(name_type.parseString('2t')[0], '2t')\r
- else:\r
- assert_raises(ParseException, name_type.parseString, '2t')\r
- # All of the names cannot contain some characters\r
- for char in bad_chars:\r
- assert_raises(ParseException, name_type.parseString, char)\r
- # standard strings all OK\r
- assert_equal(name_type.parseString('simple_test')[0], 'simple_test')\r
- # Test macro ref\r
- mr = bp.macro_ref\r
- # can't start with digit\r
- assert_raises(ParseException, mr.parseString, '2t')\r
- for char in bad_chars:\r
- assert_raises(ParseException, mr.parseString, char)\r
- assert_equal(mr.parseString('simple_test')[0].name, 'simple_test')\r
-\r
-\r
-def test_numbers():\r
- assert_equal(bp.number.parseString('1066')[0], '1066')\r
- assert_equal(bp.number.parseString('0')[0], '0')\r
- assert_raises(ParseException, bp.number.parseString, '-4')\r
- assert_raises(ParseException, bp.number.parseString, '+4')\r
- assert_raises(ParseException, bp.number.parseString, '.4')\r
- # something point something leaves a trailing .4 unmatched\r
- assert_equal(bp.number.parseString('0.4')[0], '0')\r
-\r
-\r
-def test_parse_string():\r
- # test string building blocks\r
- assert_equal(bp.chars_no_quotecurly.parseString('x')[0], 'x')\r
- assert_equal(bp.chars_no_quotecurly.parseString("a string")[0], 'a string')\r
- assert_equal(bp.chars_no_quotecurly.parseString('a "string')[0], 'a ')\r
- assert_equal(bp.chars_no_curly.parseString('x')[0], 'x')\r
- assert_equal(bp.chars_no_curly.parseString("a string")[0], 'a string')\r
- assert_equal(bp.chars_no_curly.parseString('a {string')[0], 'a ')\r
- assert_equal(bp.chars_no_curly.parseString('a }string')[0], 'a ')\r
- # test more general strings together\r
- for obj in (bp.curly_string, bp.string, bp.field_value):\r
- assert_equal(obj.parseString('{}').asList(), [])\r
- assert_equal(obj.parseString('{a "string}')[0], 'a "string')\r
- assert_equal(obj.parseString('{a {nested} string}').asList(),\r
- ['a ', ['nested'], ' string'])\r
- assert_equal(obj.parseString('{a {double {nested}} string}').asList(),\r
- ['a ', ['double ', ['nested']], ' string'])\r
- for obj in (bp.quoted_string, bp.string, bp.field_value):\r
- assert_equal(obj.parseString('""').asList(), [])\r
- assert_equal(obj.parseString('"a string"')[0], 'a string')\r
- assert_equal(obj.parseString('"a {nested} string"').asList(),\r
- ['a ', ['nested'], ' string'])\r
- assert_equal(obj.parseString('"a {double {nested}} string"').asList(),\r
- ['a ', ['double ', ['nested']], ' string'])\r
- # check macro def in string\r
- assert_equal(bp.string.parseString('someascii')[0], Macro('someascii'))\r
- assert_raises(ParseException, bp.string.parseString, '%#= validstring')\r
- # check number in string\r
- assert_equal(bp.string.parseString('1994')[0], '1994')\r
-\r
-\r
-def test_parse_field():\r
- # test field value - hashes included\r
- fv = bp.field_value\r
- # Macro\r
- assert_equal(fv.parseString('aname')[0], Macro('aname'))\r
- assert_equal(fv.parseString('ANAME')[0], Macro('aname'))\r
- # String and macro\r
- assert_equal(fv.parseString('aname # "some string"').asList(),\r
- [Macro('aname'), 'some string'])\r
- # Nested string\r
- assert_equal(fv.parseString('aname # {some {string}}').asList(),\r
- [Macro('aname'), 'some ', ['string']])\r
- # String and number\r
- assert_equal(fv.parseString('"a string" # 1994').asList(),\r
- ['a string', '1994'])\r
- # String and number and macro\r
- assert_equal(fv.parseString('"a string" # 1994 # a_macro').asList(),\r
- ['a string', '1994', Macro('a_macro')])\r
-\r
-\r
-def test_comments():\r
- res = bp.comment.parseString('@Comment{about something}')\r
- assert_equal(res.asList(), ['comment', '{about something}'])\r
- assert_equal(\r
- bp.comment.parseString('@COMMENT{about something').asList(),\r
- ['comment', '{about something'])\r
- assert_equal(\r
- bp.comment.parseString('@comment(about something').asList(),\r
- ['comment', '(about something'])\r
- assert_equal(\r
- bp.comment.parseString('@COMment about something').asList(),\r
- ['comment', ' about something'])\r
- assert_raises(ParseException, bp.comment.parseString,\r
- '@commentabout something')\r
- assert_raises(ParseException, bp.comment.parseString,\r
- '@comment+about something')\r
- assert_raises(ParseException, bp.comment.parseString,\r
- '@comment"about something')\r
-\r
-\r
-def test_preamble():\r
- res = bp.preamble.parseString('@preamble{"about something"}')\r
- assert_equal(res.asList(), ['preamble', 'about something'])\r
- assert_equal(bp.preamble.parseString(\r
- '@PREamble{{about something}}').asList(),\r
- ['preamble', 'about something'])\r
- assert_equal(bp.preamble.parseString("""@PREamble{\r
- {about something}\r
- }""").asList(),\r
- ['preamble', 'about something'])\r
-\r
-\r
-def test_macro():\r
- res = bp.macro.parseString('@string{ANAME = "about something"}')\r
- assert_equal(res.asList(), ['string', 'aname', 'about something'])\r
- assert_equal(\r
- bp.macro.parseString('@string{aname = {about something}}').asList(),\r
- ['string', 'aname', 'about something'])\r
-\r
-\r
-def test_entry():\r
- txt = """@some_entry{akey, aname = "about something",\r
- another={something else}}"""\r
- res = bp.entry.parseString(txt)\r
- assert_equal(res.asList(),\r
- ['some_entry', 'akey',\r
- ['aname', 'about something'], ['another', 'something else']])\r
- # Case conversion\r
- txt = """@SOME_ENTRY{akey, ANAME = "about something",\r
- another={something else}}"""\r
- res = bp.entry.parseString(txt)\r
- assert_equal(res.asList(),\r
- ['some_entry', 'akey',\r
- ['aname', 'about something'], ['another', 'something else']])\r
-\r
-\r
-def test_bibfile():\r
- txt = """@some_entry{akey, aname = "about something",\r
- another={something else}}"""\r
- res = bp.bibfile.parseString(txt)\r
- assert_equal(res.asList(),\r
- [['some_entry', 'akey',\r
- ['aname', 'about something'],\r
- ['another', 'something else']]])\r
-\r
-\r
-def test_bib1():\r
- # First pass whole bib-like tests\r
- txt = """\r
-Some introductory text\r
-(implicit comment)\r
-\r
- @ARTICLE{Brett2002marsbar,\r
- author = {Matthew Brett and Jean-Luc Anton and Romain Valabregue and Jean-Baptise\r
- Poline},\r
- title = {{Region of interest analysis using an SPM toolbox}},\r
- journal = {Neuroimage},\r
- year = {2002},\r
- volume = {16},\r
- pages = {1140--1141},\r
- number = {2}\r
-}\r
-\r
-@some_entry{akey, aname = "about something",\r
-another={something else}}\r
-"""\r
- res = bp.bibfile.parseString(txt)\r
- assert_equal(len(res), 3)\r
- res2 = bp.parse_str(txt)\r
- assert_equal(res.asList(), res2.asList())\r
- res3 = [r.asList()[0] for r, start, end in bp.definitions.scanString(txt)]\r
- assert_equal(res.asList(), res3)\r
-\r
-\r
-if __name__ == '__main__':\r
- import nose\r
- nose.main()\r
+++ /dev/null
-# URL extractor\r
-# Copyright 2004, Paul McGuire\r
-from pyparsing import makeHTMLTags, SkipTo, pyparsing_common\r
-import urllib.request\r
-from contextlib import closing\r
-import pprint\r
-\r
-linkOpenTag, linkCloseTag = makeHTMLTags('a')\r
-\r
-linkBody = SkipTo(linkCloseTag)\r
-linkBody.setParseAction(pyparsing_common.stripHTMLTags)\r
-linkBody.addParseAction(lambda toks: ' '.join(toks[0].strip().split()))\r
-\r
-link = linkOpenTag + linkBody("body") + linkCloseTag.suppress()\r
-\r
-# Go get some HTML with some links in it.\r
-with closing(urllib.request.urlopen("http://www.yahoo.com")) as serverListPage:\r
- htmlText = serverListPage.read().decode("UTF-8")\r
-\r
-# scanString is a generator that loops through the input htmlText, and for each\r
-# match yields the tokens and start and end locations (for this application, we are\r
-# not interested in the start and end values).\r
-for toks,strt,end in link.scanString(htmlText):\r
- print(toks.asList())\r
-\r
-# Create dictionary from list comprehension, assembled from each pair of tokens returned \r
-# from a matched URL.\r
-pprint.pprint( \r
- dict((toks.body, toks.href) for toks,strt,end in link.scanString(htmlText))\r
- )\r
-\r
-\r
-\r
+++ /dev/null
-# URL extractor\r
-# Copyright 2004, Paul McGuire\r
-from pyparsing import Literal,Suppress,CharsNotIn,CaselessLiteral,\\r
- Word,dblQuotedString,alphanums,SkipTo,makeHTMLTags\r
-import urllib.request, urllib.parse, urllib.error\r
-import pprint\r
-\r
-# Define the pyparsing grammar for a URL, that is:\r
-# URLlink ::= <a href= URL>linkText</a>\r
-# URL ::= doubleQuotedString | alphanumericWordPath\r
-# Note that whitespace may appear just about anywhere in the link. Note also\r
-# that it is not necessary to explicitly show this in the pyparsing grammar; by default,\r
-# pyparsing skips over whitespace between tokens.\r
-linkOpenTag,linkCloseTag = makeHTMLTags("a")\r
-link = linkOpenTag + SkipTo(linkCloseTag)("body") + linkCloseTag.suppress()\r
-\r
-# Go get some HTML with some links in it.\r
-serverListPage = urllib.request.urlopen( "http://www.google.com" )\r
-htmlText = serverListPage.read()\r
-serverListPage.close()\r
-\r
-# scanString is a generator that loops through the input htmlText, and for each\r
-# match yields the tokens and start and end locations (for this application, we are\r
-# not interested in the start and end values).\r
-for toks,strt,end in link.scanString(htmlText):\r
- print(toks.startA.href,"->",toks.body)\r
-\r
-# Create dictionary from list comprehension, assembled from each pair of tokens returned \r
-# from a matched URL.\r
-pprint.pprint( \r
- dict( [ (toks.body,toks.startA.href) for toks,strt,end in link.scanString(htmlText) ] )\r
- )\r
-\r
-\r
-\r
+++ /dev/null
-#\r
-# verilogParse.py\r
-#\r
-# an example of using the pyparsing module to be able to process Verilog files\r
-# uses BNF defined at http://www.verilog.com/VerilogBNF.html\r
-#\r
-# Copyright (c) 2004-2011 Paul T. McGuire. All rights reserved.\r
-#\r
-# Permission is hereby granted, free of charge, to any person obtaining\r
-# a copy of this software and associated documentation files (the\r
-# "Software"), to deal in the Software without restriction, including\r
-# without limitation the rights to use, copy, modify, merge, publish,\r
-# distribute, sublicense, and/or sell copies of the Software, and to\r
-# permit persons to whom the Software is furnished to do so, subject to\r
-# the following conditions:\r
-#\r
-# The above copyright notice and this permission notice shall be\r
-# included in all copies or substantial portions of the Software.\r
-#\r
-# If you find this software to be useful, please make a donation to one\r
-# of the following charities:\r
-# - the Red Cross (http://www.redcross.org)\r
-# - Hospice Austin (http://www.hospiceaustin.org)\r
-#\r
-# DISCLAIMER:\r
-# THIS SOFTWARE IS PROVIDED BY PAUL T. McGUIRE ``AS IS'' AND ANY EXPRESS OR\r
-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\r
-# EVENT SHALL PAUL T. McGUIRE OR CO-CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\r
-# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\r
-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OFUSE,\r
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\r
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
-# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r
-# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
-#\r
-# For questions or inquiries regarding this license, or commercial use of\r
-# this software, contact the author via e-mail: ptmcg@users.sourceforge.net\r
-#\r
-# Todo:\r
-# - add pre-process pass to implement compilerDirectives (ifdef, include, etc.)\r
-#\r
-# Revision History:\r
-#\r
-# 1.0 - Initial release\r
-# 1.0.1 - Fixed grammar errors:\r
-# . real declaration was incorrect\r
-# . tolerant of '=>' for '*>' operator\r
-# . tolerant of '?' as hex character\r
-# . proper handling of mintypmax_expr within path delays\r
-# 1.0.2 - Performance tuning (requires pyparsing 1.3)\r
-# 1.0.3 - Performance updates, using Regex (requires pyparsing 1.4)\r
-# 1.0.4 - Performance updates, enable packrat parsing (requires pyparsing 1.4.2)\r
-# 1.0.5 - Converted keyword Literals to Keywords, added more use of Group to\r
-# group parsed results tokens\r
-# 1.0.6 - Added support for module header with no ports list (thanks, Thomas Dejanovic!)\r
-# 1.0.7 - Fixed erroneous '<<' Forward definition in timCheckCond, omitting ()'s\r
-# 1.0.8 - Re-released under MIT license\r
-# 1.0.9 - Enhanced udpInstance to handle identifiers with leading '\' and subscripting\r
-# 1.0.10 - Fixed change added in 1.0.9 to work for all identifiers, not just those used\r
-# for udpInstance.\r
-# 1.0.11 - Fixed bug in inst_args, content alternatives were reversed\r
-#\r
-import pdb\r
-import time\r
-import pprint\r
-import sys\r
-\r
-__version__ = "1.0.11"\r
-\r
-from pyparsing import Literal, CaselessLiteral, Keyword, Word, OneOrMore, ZeroOrMore, \\r
- Forward, NotAny, delimitedList, Group, Optional, Combine, alphas, nums, restOfLine, cStyleComment, \\r
- alphanums, printables, dblQuotedString, empty, ParseException, ParseResults, MatchFirst, oneOf, GoToColumn, \\r
- ParseResults,StringEnd, FollowedBy, ParserElement, And, Regex, cppStyleComment#,__version__\r
-import pyparsing\r
-usePackrat = False\r
-usePsyco = False\r
-\r
-packratOn = False\r
-psycoOn = False\r
-\r
-if usePackrat:\r
- try:\r
- ParserElement.enablePackrat()\r
- except:\r
- pass\r
- else:\r
- packratOn = True\r
-\r
-# comment out this section to disable psyco function compilation\r
-if usePsyco:\r
- try:\r
- import psyco\r
- psyco.full()\r
- except:\r
- print("failed to import psyco Python optimizer")\r
- else:\r
- psycoOn = True\r
-\r
-\r
-def dumpTokens(s,l,t):\r
- import pprint\r
- pprint.pprint( t.asList() )\r
-\r
-verilogbnf = None\r
-def Verilog_BNF():\r
- global verilogbnf\r
-\r
- if verilogbnf is None:\r
-\r
- # compiler directives\r
- compilerDirective = Combine( "`" + \\r
- oneOf("define undef ifdef else endif default_nettype "\r
- "include resetall timescale unconnected_drive "\r
- "nounconnected_drive celldefine endcelldefine") + \\r
- restOfLine ).setName("compilerDirective")\r
-\r
- # primitives\r
- SEMI,COLON,LPAR,RPAR,LBRACE,RBRACE,LBRACK,RBRACK,DOT,COMMA,EQ = map(Literal,";:(){}[].,=")\r
-\r
- identLead = alphas+"$_"\r
- identBody = alphanums+"$_"\r
- identifier1 = Regex( r"\.?["+identLead+"]["+identBody+r"]*(\.["+identLead+"]["+identBody+"]*)*"\r
- ).setName("baseIdent")\r
- identifier2 = Regex(r"\\\S+").setParseAction(lambda t:t[0][1:]).setName("escapedIdent")#.setDebug()\r
- identifier = identifier1 | identifier2\r
- assert(identifier2 == r'\abc')\r
- \r
- hexnums = nums + "abcdefABCDEF" + "_?"\r
- base = Regex("'[bBoOdDhH]").setName("base")\r
- basedNumber = Combine( Optional( Word(nums + "_") ) + base + Word(hexnums+"xXzZ"),\r
- joinString=" ", adjacent=False ).setName("basedNumber")\r
- #~ number = ( basedNumber | Combine( Word( "+-"+spacedNums, spacedNums ) +\r
- #~ Optional( DOT + Optional( Word( spacedNums ) ) ) +\r
- #~ Optional( e + Word( "+-"+spacedNums, spacedNums ) ) ).setName("numeric") )\r
- number = ( basedNumber | \\r
- Regex(r"[+-]?[0-9_]+(\.[0-9_]*)?([Ee][+-]?[0-9_]+)?") \\r
- ).setName("numeric")\r
- #~ decnums = nums + "_"\r
- #~ octnums = "01234567" + "_"\r
- expr = Forward().setName("expr")\r
- concat = Group( LBRACE + delimitedList( expr ) + RBRACE )\r
- multiConcat = Group("{" + expr + concat + "}").setName("multiConcat")\r
- funcCall = Group(identifier + LPAR + Optional( delimitedList( expr ) ) + RPAR).setName("funcCall")\r
-\r
- subscrRef = Group(LBRACK + delimitedList( expr, COLON ) + RBRACK)\r
- subscrIdentifier = Group( identifier + Optional( subscrRef ) )\r
- #~ scalarConst = "0" | (( FollowedBy('1') + oneOf("1'b0 1'b1 1'bx 1'bX 1'B0 1'B1 1'Bx 1'BX 1") ))\r
- scalarConst = Regex("0|1('[Bb][01xX])?")\r
- mintypmaxExpr = Group( expr + COLON + expr + COLON + expr ).setName("mintypmax")\r
- primary = (\r
- number |\r
- (LPAR + mintypmaxExpr + RPAR ) |\r
- ( LPAR + Group(expr) + RPAR ).setName("nestedExpr") |\r
- multiConcat |\r
- concat |\r
- dblQuotedString |\r
- funcCall |\r
- subscrIdentifier\r
- )\r
-\r
- unop = oneOf( "+ - ! ~ & ~& | ^| ^ ~^" ).setName("unop")\r
- binop = oneOf( "+ - * / % == != === !== && "\r
- "|| < <= > >= & | ^ ^~ >> << ** <<< >>>" ).setName("binop")\r
-\r
- expr << (\r
- ( unop + expr ) | # must be first!\r
- ( primary + "?" + expr + COLON + expr ) |\r
- ( primary + Optional( binop + expr ) )\r
- )\r
-\r
- lvalue = subscrIdentifier | concat\r
-\r
- # keywords\r
- if_ = Keyword("if")\r
- else_ = Keyword("else")\r
- edge = Keyword("edge")\r
- posedge = Keyword("posedge")\r
- negedge = Keyword("negedge")\r
- specify = Keyword("specify")\r
- endspecify = Keyword("endspecify")\r
- fork = Keyword("fork")\r
- join = Keyword("join")\r
- begin = Keyword("begin")\r
- end = Keyword("end")\r
- default = Keyword("default")\r
- forever = Keyword("forever")\r
- repeat = Keyword("repeat")\r
- while_ = Keyword("while")\r
- for_ = Keyword("for")\r
- case = oneOf( "case casez casex" )\r
- endcase = Keyword("endcase")\r
- wait = Keyword("wait")\r
- disable = Keyword("disable")\r
- deassign = Keyword("deassign")\r
- force = Keyword("force")\r
- release = Keyword("release")\r
- assign = Keyword("assign")\r
-\r
- eventExpr = Forward()\r
- eventTerm = ( posedge + expr ) | ( negedge + expr ) | expr | ( LPAR + eventExpr + RPAR )\r
- eventExpr << (\r
- Group( delimitedList( eventTerm, Keyword("or") ) )\r
- )\r
- eventControl = Group( "@" + ( ( LPAR + eventExpr + RPAR ) | identifier | "*" ) ).setName("eventCtrl")\r
-\r
- delayArg = ( number |\r
- Word(alphanums+"$_") | #identifier |\r
- ( LPAR + Group( delimitedList( mintypmaxExpr | expr ) ) + RPAR )\r
- ).setName("delayArg")#.setDebug()\r
- delay = Group( "#" + delayArg ).setName("delay")#.setDebug()\r
- delayOrEventControl = delay | eventControl\r
-\r
- assgnmt = Group( lvalue + EQ + Optional( delayOrEventControl ) + expr ).setName( "assgnmt" )\r
- nbAssgnmt = Group(( lvalue + "<=" + Optional( delay ) + expr ) |\r
- ( lvalue + "<=" + Optional( eventControl ) + expr )).setName( "nbassgnmt" )\r
-\r
- range = LBRACK + expr + COLON + expr + RBRACK\r
-\r
- paramAssgnmt = Group( identifier + EQ + expr ).setName("paramAssgnmt")\r
- parameterDecl = Group( "parameter" + Optional( range ) + delimitedList( paramAssgnmt ) + SEMI).setName("paramDecl")\r
-\r
- inputDecl = Group( "input" + Optional( range ) + delimitedList( identifier ) + SEMI )\r
- outputDecl = Group( "output" + Optional( range ) + delimitedList( identifier ) + SEMI )\r
- inoutDecl = Group( "inout" + Optional( range ) + delimitedList( identifier ) + SEMI )\r
-\r
- regIdentifier = Group( identifier + Optional( LBRACK + expr + COLON + expr + RBRACK ) )\r
- regDecl = Group( "reg" + Optional("signed") + Optional( range ) + delimitedList( regIdentifier ) + SEMI ).setName("regDecl")\r
- timeDecl = Group( "time" + delimitedList( regIdentifier ) + SEMI )\r
- integerDecl = Group( "integer" + delimitedList( regIdentifier ) + SEMI )\r
-\r
- strength0 = oneOf("supply0 strong0 pull0 weak0 highz0")\r
- strength1 = oneOf("supply1 strong1 pull1 weak1 highz1")\r
- driveStrength = Group( LPAR + ( ( strength0 + COMMA + strength1 ) |\r
- ( strength1 + COMMA + strength0 ) ) + RPAR ).setName("driveStrength")\r
- nettype = oneOf("wire tri tri1 supply0 wand triand tri0 supply1 wor trior trireg")\r
- expandRange = Optional( oneOf("scalared vectored") ) + range\r
- realDecl = Group( "real" + delimitedList( identifier ) + SEMI )\r
-\r
- eventDecl = Group( "event" + delimitedList( identifier ) + SEMI )\r
-\r
- blockDecl = (\r
- parameterDecl |\r
- regDecl |\r
- integerDecl |\r
- realDecl |\r
- timeDecl |\r
- eventDecl\r
- )\r
-\r
- stmt = Forward().setName("stmt")#.setDebug()\r
- stmtOrNull = stmt | SEMI\r
- caseItem = ( delimitedList( expr ) + COLON + stmtOrNull ) | \\r
- ( default + Optional(":") + stmtOrNull )\r
- stmt << Group(\r
- ( begin + Group( ZeroOrMore( stmt ) ) + end ).setName("begin-end") |\r
- ( if_ + Group(LPAR + expr + RPAR) + stmtOrNull + Optional( else_ + stmtOrNull ) ).setName("if") |\r
- ( delayOrEventControl + stmtOrNull ) |\r
- ( case + LPAR + expr + RPAR + OneOrMore( caseItem ) + endcase ) |\r
- ( forever + stmt ) |\r
- ( repeat + LPAR + expr + RPAR + stmt ) |\r
- ( while_ + LPAR + expr + RPAR + stmt ) |\r
- ( for_ + LPAR + assgnmt + SEMI + Group( expr ) + SEMI + assgnmt + RPAR + stmt ) |\r
- ( fork + ZeroOrMore( stmt ) + join ) |\r
- ( fork + COLON + identifier + ZeroOrMore( blockDecl ) + ZeroOrMore( stmt ) + end ) |\r
- ( wait + LPAR + expr + RPAR + stmtOrNull ) |\r
- ( "->" + identifier + SEMI ) |\r
- ( disable + identifier + SEMI ) |\r
- ( assign + assgnmt + SEMI ) |\r
- ( deassign + lvalue + SEMI ) |\r
- ( force + assgnmt + SEMI ) |\r
- ( release + lvalue + SEMI ) |\r
- ( begin + COLON + identifier + ZeroOrMore( blockDecl ) + ZeroOrMore( stmt ) + end ).setName("begin:label-end") |\r
- # these *have* to go at the end of the list!!!\r
- ( assgnmt + SEMI ) |\r
- ( nbAssgnmt + SEMI ) |\r
- ( Combine( Optional("$") + identifier ) + Optional( LPAR + delimitedList(expr|empty) + RPAR ) + SEMI )\r
- ).setName("stmtBody")\r
- """\r
- x::=<blocking_assignment> ;\r
- x||= <non_blocking_assignment> ;\r
- x||= if ( <expression> ) <statement_or_null>\r
- x||= if ( <expression> ) <statement_or_null> else <statement_or_null>\r
- x||= case ( <expression> ) <case_item>+ endcase\r
- x||= casez ( <expression> ) <case_item>+ endcase\r
- x||= casex ( <expression> ) <case_item>+ endcase\r
- x||= forever <statement>\r
- x||= repeat ( <expression> ) <statement>\r
- x||= while ( <expression> ) <statement>\r
- x||= for ( <assignment> ; <expression> ; <assignment> ) <statement>\r
- x||= <delay_or_event_control> <statement_or_null>\r
- x||= wait ( <expression> ) <statement_or_null>\r
- x||= -> <name_of_event> ;\r
- x||= <seq_block>\r
- x||= <par_block>\r
- x||= <task_enable>\r
- x||= <system_task_enable>\r
- x||= disable <name_of_task> ;\r
- x||= disable <name_of_block> ;\r
- x||= assign <assignment> ;\r
- x||= deassign <lvalue> ;\r
- x||= force <assignment> ;\r
- x||= release <lvalue> ;\r
- """\r
- alwaysStmt = Group( "always" + Optional(eventControl) + stmt ).setName("alwaysStmt")\r
- initialStmt = Group( "initial" + stmt ).setName("initialStmt")\r
-\r
- chargeStrength = Group( LPAR + oneOf( "small medium large" ) + RPAR ).setName("chargeStrength")\r
-\r
- continuousAssign = Group(\r
- assign + Optional( driveStrength ) + Optional( delay ) + delimitedList( assgnmt ) + SEMI\r
- ).setName("continuousAssign")\r
-\r
-\r
- tfDecl = (\r
- parameterDecl |\r
- inputDecl |\r
- outputDecl |\r
- inoutDecl |\r
- regDecl |\r
- timeDecl |\r
- integerDecl |\r
- realDecl\r
- )\r
-\r
- functionDecl = Group(\r
- "function" + Optional( range | "integer" | "real" ) + identifier + SEMI +\r
- Group( OneOrMore( tfDecl ) ) +\r
- Group( ZeroOrMore( stmt ) ) +\r
- "endfunction"\r
- )\r
-\r
- inputOutput = oneOf("input output")\r
- netDecl1Arg = ( nettype +\r
- Optional( expandRange ) +\r
- Optional( delay ) +\r
- Group( delimitedList( ~inputOutput + identifier ) ) )\r
- netDecl2Arg = ( "trireg" +\r
- Optional( chargeStrength ) +\r
- Optional( expandRange ) +\r
- Optional( delay ) +\r
- Group( delimitedList( ~inputOutput + identifier ) ) )\r
- netDecl3Arg = ( nettype +\r
- Optional( driveStrength ) +\r
- Optional( expandRange ) +\r
- Optional( delay ) +\r
- Group( delimitedList( assgnmt ) ) )\r
- netDecl1 = Group(netDecl1Arg + SEMI).setName("netDecl1")\r
- netDecl2 = Group(netDecl2Arg + SEMI).setName("netDecl2")\r
- netDecl3 = Group(netDecl3Arg + SEMI).setName("netDecl3")\r
-\r
- gateType = oneOf("and nand or nor xor xnor buf bufif0 bufif1 "\r
- "not notif0 notif1 pulldown pullup nmos rnmos "\r
- "pmos rpmos cmos rcmos tran rtran tranif0 "\r
- "rtranif0 tranif1 rtranif1" )\r
- gateInstance = Optional( Group( identifier + Optional( range ) ) ) + \\r
- LPAR + Group( delimitedList( expr ) ) + RPAR\r
- gateDecl = Group( gateType +\r
- Optional( driveStrength ) +\r
- Optional( delay ) +\r
- delimitedList( gateInstance) +\r
- SEMI )\r
-\r
- udpInstance = Group( Group( identifier + Optional(range | subscrRef) ) +\r
- LPAR + Group( delimitedList( expr ) ) + RPAR )\r
- udpInstantiation = Group( identifier -\r
- Optional( driveStrength ) +\r
- Optional( delay ) +\r
- delimitedList( udpInstance ) +\r
- SEMI ).setName("udpInstantiation")\r
-\r
- parameterValueAssignment = Group( Literal("#") + LPAR + Group( delimitedList( expr ) ) + RPAR )\r
- namedPortConnection = Group( DOT + identifier + LPAR + expr + RPAR ).setName("namedPortConnection")#.setDebug()\r
- assert(r'.\abc (abc )' == namedPortConnection)\r
- modulePortConnection = expr | empty\r
- #~ moduleInstance = Group( Group ( identifier + Optional(range) ) +\r
- #~ ( delimitedList( modulePortConnection ) |\r
- #~ delimitedList( namedPortConnection ) ) )\r
- inst_args = Group( LPAR + (delimitedList( namedPortConnection ) |\r
- delimitedList( modulePortConnection )) + RPAR).setName("inst_args")\r
- moduleInstance = Group( Group ( identifier + Optional(range) ) + inst_args ).setName("moduleInstance")#.setDebug()\r
-\r
- moduleInstantiation = Group( identifier +\r
- Optional( parameterValueAssignment ) +\r
- delimitedList( moduleInstance ).setName("moduleInstanceList") +\r
- SEMI ).setName("moduleInstantiation")\r
-\r
- parameterOverride = Group( "defparam" + delimitedList( paramAssgnmt ) + SEMI )\r
- task = Group( "task" + identifier + SEMI +\r
- ZeroOrMore( tfDecl ) +\r
- stmtOrNull +\r
- "endtask" )\r
-\r
- specparamDecl = Group( "specparam" + delimitedList( paramAssgnmt ) + SEMI )\r
-\r
- pathDescr1 = Group( LPAR + subscrIdentifier + "=>" + subscrIdentifier + RPAR )\r
- pathDescr2 = Group( LPAR + Group( delimitedList( subscrIdentifier ) ) + "*>" +\r
- Group( delimitedList( subscrIdentifier ) ) + RPAR )\r
- pathDescr3 = Group( LPAR + Group( delimitedList( subscrIdentifier ) ) + "=>" +\r
- Group( delimitedList( subscrIdentifier ) ) + RPAR )\r
- pathDelayValue = Group( ( LPAR + Group( delimitedList( mintypmaxExpr | expr ) ) + RPAR ) |\r
- mintypmaxExpr |\r
- expr )\r
- pathDecl = Group( ( pathDescr1 | pathDescr2 | pathDescr3 ) + EQ + pathDelayValue + SEMI ).setName("pathDecl")\r
-\r
- portConditionExpr = Forward()\r
- portConditionTerm = Optional(unop) + subscrIdentifier\r
- portConditionExpr << portConditionTerm + Optional( binop + portConditionExpr )\r
- polarityOp = oneOf("+ -")\r
- levelSensitivePathDecl1 = Group(\r
- if_ + Group(LPAR + portConditionExpr + RPAR) +\r
- subscrIdentifier + Optional( polarityOp ) + "=>" + subscrIdentifier + EQ +\r
- pathDelayValue +\r
- SEMI )\r
- levelSensitivePathDecl2 = Group(\r
- if_ + Group(LPAR + portConditionExpr + RPAR) +\r
- LPAR + Group( delimitedList( subscrIdentifier ) ) + Optional( polarityOp ) + "*>" +\r
- Group( delimitedList( subscrIdentifier ) ) + RPAR + EQ +\r
- pathDelayValue +\r
- SEMI )\r
- levelSensitivePathDecl = levelSensitivePathDecl1 | levelSensitivePathDecl2\r
-\r
- edgeIdentifier = posedge | negedge\r
- edgeSensitivePathDecl1 = Group(\r
- Optional( if_ + Group(LPAR + expr + RPAR) ) +\r
- LPAR + Optional( edgeIdentifier ) +\r
- subscrIdentifier + "=>" +\r
- LPAR + subscrIdentifier + Optional( polarityOp ) + COLON + expr + RPAR + RPAR +\r
- EQ +\r
- pathDelayValue +\r
- SEMI )\r
- edgeSensitivePathDecl2 = Group(\r
- Optional( if_ + Group(LPAR + expr + RPAR) ) +\r
- LPAR + Optional( edgeIdentifier ) +\r
- subscrIdentifier + "*>" +\r
- LPAR + delimitedList( subscrIdentifier ) + Optional( polarityOp ) + COLON + expr + RPAR + RPAR +\r
- EQ +\r
- pathDelayValue +\r
- SEMI )\r
- edgeSensitivePathDecl = edgeSensitivePathDecl1 | edgeSensitivePathDecl2\r
-\r
- edgeDescr = oneOf("01 10 0x x1 1x x0").setName("edgeDescr")\r
-\r
- timCheckEventControl = Group( posedge | negedge | (edge + LBRACK + delimitedList( edgeDescr ) + RBRACK ))\r
- timCheckCond = Forward()\r
- timCondBinop = oneOf("== === != !==")\r
- timCheckCondTerm = ( expr + timCondBinop + scalarConst ) | ( Optional("~") + expr )\r
- timCheckCond << ( ( LPAR + timCheckCond + RPAR ) | timCheckCondTerm )\r
- timCheckEvent = Group( Optional( timCheckEventControl ) +\r
- subscrIdentifier +\r
- Optional( "&&&" + timCheckCond ) )\r
- timCheckLimit = expr\r
- controlledTimingCheckEvent = Group( timCheckEventControl + subscrIdentifier +\r
- Optional( "&&&" + timCheckCond ) )\r
- notifyRegister = identifier\r
-\r
- systemTimingCheck1 = Group( "$setup" +\r
- LPAR + timCheckEvent + COMMA + timCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck2 = Group( "$hold" +\r
- LPAR + timCheckEvent + COMMA + timCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck3 = Group( "$period" +\r
- LPAR + controlledTimingCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck4 = Group( "$width" +\r
- LPAR + controlledTimingCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + expr + COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck5 = Group( "$skew" +\r
- LPAR + timCheckEvent + COMMA + timCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck6 = Group( "$recovery" +\r
- LPAR + controlledTimingCheckEvent + COMMA + timCheckEvent + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck7 = Group( "$setuphold" +\r
- LPAR + timCheckEvent + COMMA + timCheckEvent + COMMA + timCheckLimit + COMMA + timCheckLimit +\r
- Optional( COMMA + notifyRegister ) + RPAR +\r
- SEMI )\r
- systemTimingCheck = (FollowedBy('$') + ( systemTimingCheck1 | systemTimingCheck2 | systemTimingCheck3 |\r
- systemTimingCheck4 | systemTimingCheck5 | systemTimingCheck6 | systemTimingCheck7 )).setName("systemTimingCheck")\r
- sdpd = if_ + Group(LPAR + expr + RPAR) + \\r
- ( pathDescr1 | pathDescr2 ) + EQ + pathDelayValue + SEMI\r
-\r
- specifyItem = ~Keyword("endspecify") +(\r
- specparamDecl |\r
- pathDecl |\r
- levelSensitivePathDecl |\r
- edgeSensitivePathDecl |\r
- systemTimingCheck |\r
- sdpd\r
- )\r
- """\r
- x::= <specparam_declaration>\r
- x||= <path_declaration>\r
- x||= <level_sensitive_path_declaration>\r
- x||= <edge_sensitive_path_declaration>\r
- x||= <system_timing_check>\r
- x||= <sdpd>\r
- """\r
- specifyBlock = Group( "specify" + ZeroOrMore( specifyItem ) + "endspecify" ).setName("specifyBlock")\r
-\r
- moduleItem = ~Keyword("endmodule") + (\r
- parameterDecl |\r
- inputDecl |\r
- outputDecl |\r
- inoutDecl |\r
- regDecl |\r
- netDecl3 |\r
- netDecl1 |\r
- netDecl2 |\r
- timeDecl |\r
- integerDecl |\r
- realDecl |\r
- eventDecl |\r
- gateDecl |\r
- parameterOverride |\r
- continuousAssign |\r
- specifyBlock |\r
- initialStmt |\r
- alwaysStmt |\r
- task |\r
- functionDecl |\r
- # these have to be at the end - they start with identifiers\r
- moduleInstantiation |\r
- udpInstantiation\r
- )\r
- """ All possible moduleItems, from Verilog grammar spec\r
- x::= <parameter_declaration>\r
- x||= <input_declaration>\r
- x||= <output_declaration>\r
- x||= <inout_declaration>\r
- ?||= <net_declaration> (spec does not seem consistent for this item)\r
- x||= <reg_declaration>\r
- x||= <time_declaration>\r
- x||= <integer_declaration>\r
- x||= <real_declaration>\r
- x||= <event_declaration>\r
- x||= <gate_declaration>\r
- x||= <UDP_instantiation>\r
- x||= <module_instantiation>\r
- x||= <parameter_override>\r
- x||= <continuous_assign>\r
- x||= <specify_block>\r
- x||= <initial_statement>\r
- x||= <always_statement>\r
- x||= <task>\r
- x||= <function>\r
- """\r
- portRef = subscrIdentifier\r
- portExpr = portRef | Group( LBRACE + delimitedList( portRef ) + RBRACE )\r
- port = portExpr | Group( ( DOT + identifier + LPAR + portExpr + RPAR ) )\r
-\r
- moduleHdr = Group ( oneOf("module macromodule") + identifier +\r
- Optional( LPAR + Group( Optional( delimitedList( \r
- Group(oneOf("input output") + \r
- (netDecl1Arg | netDecl2Arg | netDecl3Arg) ) |\r
- port ) ) ) + \r
- RPAR ) + SEMI ).setName("moduleHdr")\r
-\r
- module = Group( moduleHdr +\r
- Group( ZeroOrMore( moduleItem ) ) +\r
- "endmodule" ).setName("module")#.setDebug()\r
-\r
- udpDecl = outputDecl | inputDecl | regDecl\r
- #~ udpInitVal = oneOf("1'b0 1'b1 1'bx 1'bX 1'B0 1'B1 1'Bx 1'BX 1 0 x X")\r
- udpInitVal = (Regex("1'[bB][01xX]") | Regex("[01xX]")).setName("udpInitVal")\r
- udpInitialStmt = Group( "initial" +\r
- identifier + EQ + udpInitVal + SEMI ).setName("udpInitialStmt")\r
-\r
- levelSymbol = oneOf("0 1 x X ? b B")\r
- levelInputList = Group( OneOrMore( levelSymbol ).setName("levelInpList") )\r
- outputSymbol = oneOf("0 1 x X")\r
- combEntry = Group( levelInputList + COLON + outputSymbol + SEMI )\r
- edgeSymbol = oneOf("r R f F p P n N *")\r
- edge = Group( LPAR + levelSymbol + levelSymbol + RPAR ) | \\r
- Group( edgeSymbol )\r
- edgeInputList = Group( ZeroOrMore( levelSymbol ) + edge + ZeroOrMore( levelSymbol ) )\r
- inputList = levelInputList | edgeInputList\r
- seqEntry = Group( inputList + COLON + levelSymbol + COLON + ( outputSymbol | "-" ) + SEMI ).setName("seqEntry")\r
- udpTableDefn = Group( "table" +\r
- OneOrMore( combEntry | seqEntry ) +\r
- "endtable" ).setName("table")\r
-\r
- """\r
- <UDP>\r
- ::= primitive <name_of_UDP> ( <name_of_variable> <,<name_of_variable>>* ) ;\r
- <UDP_declaration>+\r
- <UDP_initial_statement>?\r
- <table_definition>\r
- endprimitive\r
- """\r
- udp = Group( "primitive" + identifier +\r
- LPAR + Group( delimitedList( identifier ) ) + RPAR + SEMI +\r
- OneOrMore( udpDecl ) +\r
- Optional( udpInitialStmt ) +\r
- udpTableDefn +\r
- "endprimitive" )\r
-\r
- verilogbnf = OneOrMore( module | udp ) + StringEnd()\r
-\r
- verilogbnf.ignore( cppStyleComment )\r
- verilogbnf.ignore( compilerDirective )\r
-\r
- return verilogbnf\r
-\r
-\r
-def test( strng ):\r
- tokens = []\r
- try:\r
- tokens = Verilog_BNF().parseString( strng )\r
- except ParseException as err:\r
- print(err.line)\r
- print(" "*(err.column-1) + "^")\r
- print(err)\r
- return tokens\r
-\r
-\r
-#~ if __name__ == "__main__":\r
-if 0:\r
- import pprint\r
- toptest = """\r
- module TOP( in, out );\r
- input [7:0] in;\r
- output [5:0] out;\r
- COUNT_BITS8 count_bits( .IN( in ), .C( out ) );\r
- endmodule"""\r
- pprint.pprint( test(toptest).asList() )\r
-\r
-else:\r
- def main():\r
- print("Verilog parser test (V %s)" % __version__)\r
- print(" - using pyparsing version", pyparsing.__version__)\r
- print(" - using Python version", sys.version)\r
- if packratOn: print(" - using packrat parsing")\r
- if psycoOn: print(" - using psyco runtime optimization")\r
- print()\r
-\r
- import os\r
- import gc\r
-\r
- failCount = 0\r
- Verilog_BNF()\r
- numlines = 0\r
- startTime = time.clock()\r
- fileDir = "verilog"\r
- #~ fileDir = "verilog/new"\r
- #~ fileDir = "verilog/new2"\r
- #~ fileDir = "verilog/new3"\r
- allFiles = [f for f in os.listdir(fileDir) if f.endswith(".v")]\r
- #~ allFiles = [ "list_path_delays_test.v" ]\r
- #~ allFiles = [ "escapedIdent.v" ]\r
- #~ allFiles = filter( lambda f : f.startswith("a") and f.endswith(".v"), os.listdir(fileDir) )\r
- #~ allFiles = filter( lambda f : f.startswith("c") and f.endswith(".v"), os.listdir(fileDir) )\r
- #~ allFiles = [ "ff.v" ]\r
-\r
- pp = pprint.PrettyPrinter( indent=2 )\r
- totalTime = 0\r
- for vfile in allFiles:\r
- gc.collect()\r
- fnam = fileDir + "/"+vfile\r
- infile = open(fnam)\r
- filelines = infile.readlines()\r
- infile.close()\r
- print(fnam, len(filelines), end=' ')\r
- numlines += len(filelines)\r
- teststr = "".join(filelines)\r
- time1 = time.clock()\r
- tokens = test( teststr )\r
- time2 = time.clock()\r
- elapsed = time2-time1\r
- totalTime += elapsed\r
- if ( len( tokens ) ):\r
- print("OK", elapsed)\r
- #~ print "tokens="\r
- #~ pp.pprint( tokens.asList() )\r
- #~ print\r
-\r
- ofnam = fileDir + "/parseOutput/" + vfile + ".parsed.txt"\r
- outfile = open(ofnam,"w")\r
- outfile.write( teststr )\r
- outfile.write("\n")\r
- outfile.write("\n")\r
- outfile.write(pp.pformat(tokens.asList()))\r
- outfile.write("\n")\r
- outfile.close()\r
- else:\r
- print("failed", elapsed)\r
- failCount += 1\r
- for i,line in enumerate(filelines,1):\r
- print("%4d: %s" % (i,line.rstrip()))\r
- endTime = time.clock()\r
- print("Total parse time:", totalTime)\r
- print("Total source lines:", numlines)\r
- print("Average lines/sec:", ( "%.1f" % (float(numlines)/(totalTime+.05 ) ) ))\r
- if failCount:\r
- print("FAIL - %d files failed to parse" % failCount)\r
- else:\r
- print("SUCCESS - all files parsed")\r
-\r
- return 0\r
-\r
- #~ from line_profiler import LineProfiler\r
- #~ from pyparsing import ParseResults\r
- #~ lp = LineProfiler(ParseResults.__init__)\r
-\r
- main()\r
- \r
- #~ lp.print_stats()\r
- #~ import hotshot\r
- #~ p = hotshot.Profile("vparse.prof",1,1)\r
- #~ p.start()\r
- #~ main()\r
- #~ p.stop()\r
- #~ p.close()\r
+++ /dev/null
-#\r
-# withAttribute.py\r
-# Copyright, 2007 - Paul McGuire\r
-#\r
-# Simple example of using withAttribute parse action helper\r
-# to define \r
-#\r
-data = """\\r
- <td align=right width=80><font size=2 face="New Times Roman,Times,Serif"> 49.950 </font></td>\r
- <td align=left width=80><font size=2 face="New Times Roman,Times,Serif"> 50.950 </font></td>\r
- <td align=right width=80><font size=2 face="New Times Roman,Times,Serif"> 51.950 </font></td>\r
- """\r
-\r
-from pyparsing import *\r
-\r
-tdS,tdE = makeHTMLTags("TD")\r
-fontS,fontE = makeHTMLTags("FONT")\r
-realNum = Combine( Word(nums) + "." + Word(nums) ).setParseAction(lambda t:float(t[0]))\r
-NBSP = Literal(" ")\r
-patt = tdS + fontS + NBSP + realNum("value") + NBSP + fontE + tdE\r
-\r
-tdS.setParseAction( withAttribute(align="right",width="80") )\r
-for s in patt.searchString(data):\r
- print(s.value)\r
+++ /dev/null
-# wordsToNum.py\r
-# Copyright 2006, Paul McGuire\r
-#\r
-# Sample parser grammar to read a number given in words, and return the numeric value.\r
-#\r
-from pyparsing import *\r
-from operator import mul\r
-from functools import reduce\r
-\r
-def makeLit(s,val):\r
- ret = CaselessLiteral(s).setName(s)\r
- return ret.setParseAction( replaceWith(val) )\r
-\r
-unitDefinitions = [\r
- ("zero", 0),\r
- ("oh", 0),\r
- ("zip", 0),\r
- ("zilch", 0),\r
- ("nada", 0),\r
- ("bupkis", 0),\r
- ("one", 1),\r
- ("two", 2),\r
- ("three", 3),\r
- ("four", 4),\r
- ("five", 5),\r
- ("six", 6),\r
- ("seven", 7),\r
- ("eight", 8),\r
- ("nine", 9),\r
- ("ten", 10),\r
- ("eleven", 11),\r
- ("twelve", 12),\r
- ("thirteen", 13),\r
- ("fourteen", 14),\r
- ("fifteen", 15),\r
- ("sixteen", 16),\r
- ("seventeen", 17),\r
- ("eighteen", 18),\r
- ("nineteen", 19),\r
- ]\r
-units = Or(makeLit(s,v) for s,v in unitDefinitions)\r
-\r
-tensDefinitions = [\r
- ("ten", 10),\r
- ("twenty", 20),\r
- ("thirty", 30),\r
- ("forty", 40),\r
- ("fourty", 40), # for the spelling-challenged...\r
- ("fifty", 50),\r
- ("sixty", 60),\r
- ("seventy", 70),\r
- ("eighty", 80),\r
- ("ninety", 90),\r
- ]\r
-tens = Or(makeLit(s,v) for s,v in tensDefinitions)\r
-\r
-hundreds = makeLit("hundred", 100)\r
-\r
-majorDefinitions = [\r
- ("thousand", int(1e3)),\r
- ("million", int(1e6)),\r
- ("billion", int(1e9)),\r
- ("trillion", int(1e12)),\r
- ("quadrillion", int(1e15)),\r
- ("quintillion", int(1e18)),\r
- ]\r
-mag = Or(makeLit(s,v) for s,v in majorDefinitions)\r
-\r
-wordprod = lambda t: reduce(mul,t)\r
-wordsum = lambda t: sum(t)\r
-numPart = (((( units + Optional(hundreds) ).setParseAction(wordprod) + \r
- Optional(tens)).setParseAction(wordsum) \r
- ^ tens )\r
- + Optional(units) ).setParseAction(wordsum)\r
-numWords = OneOrMore( (numPart + Optional(mag)).setParseAction(wordprod) \r
- ).setParseAction(wordsum) + StringEnd()\r
-numWords.ignore(Literal("-"))\r
-numWords.ignore(CaselessLiteral("and"))\r
-\r
-def test(s,expected):\r
- try:\r
- fail_expected = (expected is None)\r
- success, results_tup = numWords.runTests(s, failureTests=fail_expected)\r
- assert success, "Failed test!"\r
- if not fail_expected:\r
- teststr, results = results_tup[0]\r
- observed = results[0]\r
- assert expected == observed, "incorrect parsed value, {} -> {}, should be {}".format(teststr, observed, expected)\r
- except Exception as exc:\r
- print("{}: {}".format(type(exc).__name__, exc))\r
-\r
-test("one hundred twenty hundred", None)\r
-test("one hundred and twennty", None)\r
-test("one hundred and twenty", 120)\r
-test("one hundred and three", 103)\r
-test("one hundred twenty-three", 123)\r
-test("one hundred and twenty three", 123)\r
-test("one hundred twenty three million", 123000000)\r
-test("one hundred and twenty three million", 123000000)\r
-test("one hundred twenty three million and three", 123000003)\r
-test("fifteen hundred and sixty five", 1565)\r
-test("seventy-seven thousand eight hundred and nineteen", 77819)\r
-test("seven hundred seventy-seven thousand seven hundred and seventy-seven", 777777)\r
-test("zero", 0)\r
-test("forty two", 42)\r
-test("fourty two", 42)
\ No newline at end of file
+++ /dev/null
-pyparsing pyparsing-module.html
-pyparsing.removeQuotes pyparsing-module.html#removeQuotes
-pyparsing.alphanums pyparsing-module.html#alphanums
-pyparsing._bslash pyparsing-module.html#_bslash
-pyparsing._escapedPunc pyparsing-module.html#_escapedPunc
-pyparsing._escapedOctChar pyparsing-module.html#_escapedOctChar
-pyparsing.PY_3 pyparsing-module.html#PY_3
-pyparsing._trim_arity pyparsing-module.html#_trim_arity
-pyparsing.infixNotation pyparsing-module.html#infixNotation
-pyparsing._defaultStartDebugAction pyparsing-module.html#_defaultStartDebugAction
-pyparsing._charRange pyparsing-module.html#_charRange
-pyparsing.withClass pyparsing-module.html#withClass
-pyparsing.delimitedList pyparsing-module.html#delimitedList
-pyparsing.lineEnd pyparsing-module.html#lineEnd
-pyparsing.dictOf pyparsing-module.html#dictOf
-pyparsing.makeHTMLTags pyparsing-module.html#makeHTMLTags
-pyparsing.commaSeparatedList pyparsing-module.html#commaSeparatedList
-pyparsing.stringStart pyparsing-module.html#stringStart
-pyparsing._makeTags pyparsing-module.html#_makeTags
-pyparsing._reBracketExpr pyparsing-module.html#_reBracketExpr
-pyparsing.oneOf pyparsing-module.html#oneOf
-pyparsing._flatten pyparsing-module.html#_flatten
-pyparsing.pythonStyleComment pyparsing-module.html#pythonStyleComment
-pyparsing.__versionTime__ pyparsing-module.html#__versionTime__
-pyparsing._ustr pyparsing-module.html#_ustr
-pyparsing.matchPreviousExpr pyparsing-module.html#matchPreviousExpr
-pyparsing.matchOnlyAtCol pyparsing-module.html#matchOnlyAtCol
-pyparsing.cStyleComment pyparsing-module.html#cStyleComment
-pyparsing.downcaseTokens pyparsing-module.html#downcaseTokens
-pyparsing._commasepitem pyparsing-module.html#_commasepitem
-pyparsing._defaultSuccessDebugAction pyparsing-module.html#_defaultSuccessDebugAction
-pyparsing.lineno pyparsing-module.html#lineno
-pyparsing.replaceWith pyparsing-module.html#replaceWith
-pyparsing.alphas8bit pyparsing-module.html#alphas8bit
-pyparsing._escapeRegexRangeChars pyparsing-module.html#_escapeRegexRangeChars
-pyparsing._singleChar pyparsing-module.html#_singleChar
-pyparsing.unicodeString pyparsing-module.html#unicodeString
-pyparsing.alphas pyparsing-module.html#alphas
-pyparsing.javaStyleComment pyparsing-module.html#javaStyleComment
-pyparsing.stringEnd pyparsing-module.html#stringEnd
-pyparsing.anyCloseTag pyparsing-module.html#anyCloseTag
-pyparsing.cppStyleComment pyparsing-module.html#cppStyleComment
-pyparsing.col pyparsing-module.html#col
-pyparsing.originalTextFor pyparsing-module.html#originalTextFor
-pyparsing._optionalNotMatched pyparsing-module.html#_optionalNotMatched
-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
-pyparsing.empty pyparsing-module.html#empty
-pyparsing._htmlEntityMap pyparsing-module.html#_htmlEntityMap
-pyparsing.ungroup pyparsing-module.html#ungroup
-pyparsing.anyOpenTag pyparsing-module.html#anyOpenTag
-pyparsing.line pyparsing-module.html#line
-pyparsing.system_version pyparsing-module.html#system_version
-pyparsing.operatorPrecedence pyparsing-module.html#operatorPrecedence
-pyparsing.__doc__ pyparsing-module.html#__doc__
-pyparsing.upcaseTokens pyparsing-module.html#upcaseTokens
-pyparsing.opAssoc pyparsing-module.html#opAssoc
-pyparsing.punc8bit pyparsing-module.html#punc8bit
-pyparsing.locatedExpr pyparsing-module.html#locatedExpr
-pyparsing.sglQuotedString pyparsing-module.html#sglQuotedString
-pyparsing.srange pyparsing-module.html#srange
-pyparsing.dblSlashComment pyparsing-module.html#dblSlashComment
-pyparsing._defaultExceptionDebugAction pyparsing-module.html#_defaultExceptionDebugAction
-pyparsing.nullDebugAction pyparsing-module.html#nullDebugAction
-pyparsing.unichr pyparsing-module.html#unichr
-pyparsing.dblQuotedString pyparsing-module.html#dblQuotedString
-pyparsing.commonHTMLEntity pyparsing-module.html#commonHTMLEntity
-pyparsing.__package__ pyparsing-module.html#__package__
-pyparsing.fname pyparsing-module.html#fname
-pyparsing.nestedExpr pyparsing-module.html#nestedExpr
-pyparsing.htmlComment pyparsing-module.html#htmlComment
-pyparsing.nums pyparsing-module.html#nums
-pyparsing.countedArray pyparsing-module.html#countedArray
-pyparsing.restOfLine pyparsing-module.html#restOfLine
-pyparsing._xml_escape pyparsing-module.html#_xml_escape
-pyparsing._MAX_INT pyparsing-module.html#_MAX_INT
-pyparsing._escapedHexChar pyparsing-module.html#_escapedHexChar
-pyparsing.hexnums pyparsing-module.html#hexnums
-pyparsing.indentedBlock pyparsing-module.html#indentedBlock
-pyparsing.replaceHTMLEntity pyparsing-module.html#replaceHTMLEntity
-pyparsing.printables pyparsing-module.html#printables
-pyparsing.And pyparsing.And-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.And.__str__ pyparsing.And-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParseExpression.append pyparsing.ParseExpression-class.html#append
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.And.__slotnames__ pyparsing.And-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.And.parseImpl pyparsing.And-class.html#parseImpl
-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.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParseExpression.leaveWhitespace pyparsing.ParseExpression-class.html#leaveWhitespace
-pyparsing.ParseExpression.__getitem__ pyparsing.ParseExpression-class.html#__getitem__
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParseExpression.setResultsName pyparsing.ParseExpression-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseExpression.streamline pyparsing.ParseExpression-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseExpression.validate pyparsing.ParseExpression-class.html#validate
-pyparsing.ParseExpression.copy pyparsing.ParseExpression-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-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.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.CaselessKeyword pyparsing.CaselessKeyword-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.CaselessKeyword.__init__ pyparsing.CaselessKeyword-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.Keyword.setDefaultKeywordChars pyparsing.Keyword-class.html#setDefaultKeywordChars
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.Keyword.DEFAULT_KEYWORD_CHARS pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.Keyword.copy pyparsing.Keyword-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.CaselessLiteral pyparsing.CaselessLiteral-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.CaselessLiteral.__init__ pyparsing.CaselessLiteral-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Literal.__slotnames__ pyparsing.Literal-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.CharsNotIn pyparsing.CharsNotIn-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.CharsNotIn.__str__ pyparsing.CharsNotIn-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.CharsNotIn.__init__ pyparsing.CharsNotIn-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.CloseMatch pyparsing.CloseMatch-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.CloseMatch.__init__ pyparsing.CloseMatch-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.CloseMatch.parseImpl pyparsing.CloseMatch-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Combine pyparsing.Combine-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Combine.__init__ pyparsing.Combine-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Combine.__slotnames__ pyparsing.Combine-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.Combine.postParse pyparsing.Combine-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.Combine.ignore pyparsing.Combine-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Dict pyparsing.Dict-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Dict.__init__ pyparsing.Dict-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Dict.__slotnames__ pyparsing.Dict-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.Dict.postParse pyparsing.Dict-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Each pyparsing.Each-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.Each.__str__ pyparsing.Each-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParseExpression.append pyparsing.ParseExpression-class.html#append
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.Each.parseImpl pyparsing.Each-class.html#parseImpl
-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.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParseExpression.leaveWhitespace pyparsing.ParseExpression-class.html#leaveWhitespace
-pyparsing.ParseExpression.__getitem__ pyparsing.ParseExpression-class.html#__getitem__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParseExpression.setResultsName pyparsing.ParseExpression-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseExpression.streamline pyparsing.ParseExpression-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseExpression.validate pyparsing.ParseExpression-class.html#validate
-pyparsing.ParseExpression.copy pyparsing.ParseExpression-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-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.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Empty pyparsing.Empty-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Empty.__init__ pyparsing.Empty-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.FollowedBy pyparsing.FollowedBy-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.FollowedBy.__init__ pyparsing.FollowedBy-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.FollowedBy.parseImpl pyparsing.FollowedBy-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Forward pyparsing.Forward-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.Forward.__str__ pyparsing.Forward-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Forward.__init__ pyparsing.Forward-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-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
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.Forward.leaveWhitespace pyparsing.Forward-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.Forward.streamline pyparsing.Forward-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.Forward.__lshift__ pyparsing.Forward-class.html#__lshift__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.Forward.validate pyparsing.Forward-class.html#validate
-pyparsing.Forward.copy pyparsing.Forward-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.Forward.__ilshift__ pyparsing.Forward-class.html#__ilshift__
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.GoToColumn pyparsing.GoToColumn-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.GoToColumn.__init__ pyparsing.GoToColumn-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.GoToColumn.preParse pyparsing.GoToColumn-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Group pyparsing.Group-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Group.__init__ pyparsing.Group-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Group.__slotnames__ pyparsing.Group-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.Group.postParse pyparsing.Group-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Keyword pyparsing.Keyword-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Keyword.__init__ pyparsing.Keyword-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.Keyword.setDefaultKeywordChars pyparsing.Keyword-class.html#setDefaultKeywordChars
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.Keyword.DEFAULT_KEYWORD_CHARS pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.Keyword.copy pyparsing.Keyword-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.LineEnd pyparsing.LineEnd-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.LineEnd.__init__ pyparsing.LineEnd-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.LineEnd.__slotnames__ pyparsing.LineEnd-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.LineStart pyparsing.LineStart-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.LineStart.__init__ pyparsing.LineStart-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Literal pyparsing.Literal-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Literal.__init__ pyparsing.Literal-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Literal.__slotnames__ pyparsing.Literal-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.MatchFirst pyparsing.MatchFirst-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.MatchFirst.__str__ pyparsing.MatchFirst-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParseExpression.append pyparsing.ParseExpression-class.html#append
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.MatchFirst.__slotnames__ pyparsing.MatchFirst-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.MatchFirst.parseImpl pyparsing.MatchFirst-class.html#parseImpl
-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.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParseExpression.leaveWhitespace pyparsing.ParseExpression-class.html#leaveWhitespace
-pyparsing.ParseExpression.__getitem__ pyparsing.ParseExpression-class.html#__getitem__
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParseExpression.setResultsName pyparsing.ParseExpression-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseExpression.streamline pyparsing.ParseExpression-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseExpression.validate pyparsing.ParseExpression-class.html#validate
-pyparsing.ParseExpression.copy pyparsing.ParseExpression-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-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.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.NoMatch pyparsing.NoMatch-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.NoMatch.__init__ pyparsing.NoMatch-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.NotAny pyparsing.NotAny-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.NotAny.__str__ pyparsing.NotAny-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.NotAny.__init__ pyparsing.NotAny-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.NotAny.__slotnames__ pyparsing.NotAny-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.NotAny.parseImpl pyparsing.NotAny-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.OneOrMore pyparsing.OneOrMore-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.OneOrMore.__str__ pyparsing.OneOrMore-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.OneOrMore.__slotnames__ pyparsing.OneOrMore-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.OnlyOnce pyparsing.OnlyOnce-class.html
-pyparsing.OnlyOnce.reset pyparsing.OnlyOnce-class.html#reset
-pyparsing.OnlyOnce.__call__ pyparsing.OnlyOnce-class.html#__call__
-pyparsing.OnlyOnce.__init__ pyparsing.OnlyOnce-class.html#__init__
-pyparsing.Optional pyparsing.Optional-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.Optional.__str__ pyparsing.Optional-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Optional.__init__ pyparsing.Optional-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Optional.__slotnames__ pyparsing.Optional-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.Optional.parseImpl pyparsing.Optional-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Or pyparsing.Or-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.Or.__str__ pyparsing.Or-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParseExpression.append pyparsing.ParseExpression-class.html#append
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.Or.parseImpl pyparsing.Or-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.Or.__init__ pyparsing.Or-class.html#__init__
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.Or.__ixor__ pyparsing.Or-class.html#__ixor__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParseExpression.leaveWhitespace pyparsing.ParseExpression-class.html#leaveWhitespace
-pyparsing.ParseExpression.__getitem__ pyparsing.ParseExpression-class.html#__getitem__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParseExpression.setResultsName pyparsing.ParseExpression-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseExpression.streamline pyparsing.ParseExpression-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseExpression.validate pyparsing.ParseExpression-class.html#validate
-pyparsing.ParseExpression.copy pyparsing.ParseExpression-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-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.Or.checkRecursion pyparsing.Or-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.ParseBaseException pyparsing.ParseBaseException-class.html
-pyparsing.ParseBaseException.__str__ pyparsing.ParseBaseException-class.html#__str__
-pyparsing.ParseBaseException.__init__ pyparsing.ParseBaseException-class.html#__init__
-pyparsing.ParseBaseException.__getattr__ pyparsing.ParseBaseException-class.html#__getattr__
-pyparsing.ParseBaseException.__dir__ pyparsing.ParseBaseException-class.html#__dir__
-pyparsing.ParseBaseException.markInputline pyparsing.ParseBaseException-class.html#markInputline
-pyparsing.ParseBaseException.__repr__ pyparsing.ParseBaseException-class.html#__repr__
-pyparsing.ParseBaseException._from_exception pyparsing.ParseBaseException-class.html#_from_exception
-pyparsing.ParseElementEnhance pyparsing.ParseElementEnhance-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParseElementEnhance.__init__ pyparsing.ParseElementEnhance-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.ParseException pyparsing.ParseException-class.html
-pyparsing.ParseBaseException.__str__ pyparsing.ParseBaseException-class.html#__str__
-pyparsing.ParseBaseException.__init__ pyparsing.ParseBaseException-class.html#__init__
-pyparsing.ParseBaseException.__getattr__ pyparsing.ParseBaseException-class.html#__getattr__
-pyparsing.ParseBaseException.__dir__ pyparsing.ParseBaseException-class.html#__dir__
-pyparsing.ParseBaseException.markInputline pyparsing.ParseBaseException-class.html#markInputline
-pyparsing.ParseBaseException.__repr__ pyparsing.ParseBaseException-class.html#__repr__
-pyparsing.ParseBaseException._from_exception pyparsing.ParseBaseException-class.html#_from_exception
-pyparsing.ParseExpression pyparsing.ParseExpression-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseExpression.__str__ pyparsing.ParseExpression-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParseExpression.__init__ pyparsing.ParseExpression-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.ParseExpression.append pyparsing.ParseExpression-class.html#append
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParseExpression.leaveWhitespace pyparsing.ParseExpression-class.html#leaveWhitespace
-pyparsing.ParseExpression.__getitem__ pyparsing.ParseExpression-class.html#__getitem__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParseExpression.setResultsName pyparsing.ParseExpression-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseExpression.streamline pyparsing.ParseExpression-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseExpression.validate pyparsing.ParseExpression-class.html#validate
-pyparsing.ParseExpression.copy pyparsing.ParseExpression-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-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.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.ParseFatalException pyparsing.ParseFatalException-class.html
-pyparsing.ParseBaseException.__str__ pyparsing.ParseBaseException-class.html#__str__
-pyparsing.ParseBaseException.__init__ pyparsing.ParseBaseException-class.html#__init__
-pyparsing.ParseBaseException.__getattr__ pyparsing.ParseBaseException-class.html#__getattr__
-pyparsing.ParseBaseException.__dir__ pyparsing.ParseBaseException-class.html#__dir__
-pyparsing.ParseBaseException.markInputline pyparsing.ParseBaseException-class.html#markInputline
-pyparsing.ParseBaseException.__repr__ pyparsing.ParseBaseException-class.html#__repr__
-pyparsing.ParseBaseException._from_exception pyparsing.ParseBaseException-class.html#_from_exception
-pyparsing.ParseResults pyparsing.ParseResults-class.html
-pyparsing.ParseResults.haskeys pyparsing.ParseResults-class.html#haskeys
-pyparsing.ParseResults.asXML pyparsing.ParseResults-class.html#asXML
-pyparsing.ParseResults.dump pyparsing.ParseResults-class.html#dump
-pyparsing.ParseResults.__str__ pyparsing.ParseResults-class.html#__str__
-pyparsing.ParseResults.pop pyparsing.ParseResults-class.html#pop
-pyparsing.ParseResults.__radd__ pyparsing.ParseResults-class.html#__radd__
-pyparsing.ParseResults.__getnewargs__ pyparsing.ParseResults-class.html#__getnewargs__
-pyparsing.ParseResults.__init__ pyparsing.ParseResults-class.html#__init__
-pyparsing.ParseResults.__lookup pyparsing.ParseResults-class.html#__lookup
-pyparsing.ParseResults.__new__ pyparsing.ParseResults-class.html#__new__
-pyparsing.ParseResults.__contains__ pyparsing.ParseResults-class.html#__contains__
-pyparsing.ParseResults.getName pyparsing.ParseResults-class.html#getName
-pyparsing.ParseResults.pprint pyparsing.ParseResults-class.html#pprint
-pyparsing.ParseResults._asStringList pyparsing.ParseResults-class.html#_asStringList
-pyparsing.ParseResults.__getattr__ pyparsing.ParseResults-class.html#__getattr__
-pyparsing.ParseResults.append pyparsing.ParseResults-class.html#append
-pyparsing.ParseResults.itervalues pyparsing.ParseResults-class.html#itervalues
-pyparsing.ParseResults.__getstate__ pyparsing.ParseResults-class.html#__getstate__
-pyparsing.ParseResults._iterkeys pyparsing.ParseResults-class.html#_iterkeys
-pyparsing.ParseResults.__len__ pyparsing.ParseResults-class.html#__len__
-pyparsing.ParseResults._iteritems pyparsing.ParseResults-class.html#_iteritems
-pyparsing.ParseResults.__getitem__ pyparsing.ParseResults-class.html#__getitem__
-pyparsing.ParseResults.get pyparsing.ParseResults-class.html#get
-pyparsing.ParseResults.keys pyparsing.ParseResults-class.html#keys
-pyparsing.ParseResults.__iter__ pyparsing.ParseResults-class.html#__iter__
-pyparsing.ParseResults.__add__ pyparsing.ParseResults-class.html#__add__
-pyparsing.ParseResults.iteritems pyparsing.ParseResults-class.html#iteritems
-pyparsing.ParseResults.__bool__ pyparsing.ParseResults-class.html#__bool__
-pyparsing.ParseResults.copy pyparsing.ParseResults-class.html#copy
-pyparsing.ParseResults.iterkeys pyparsing.ParseResults-class.html#iterkeys
-pyparsing.ParseResults.asList pyparsing.ParseResults-class.html#asList
-pyparsing.ParseResults.extend pyparsing.ParseResults-class.html#extend
-pyparsing.ParseResults.__delitem__ pyparsing.ParseResults-class.html#__delitem__
-pyparsing.ParseResults.__reversed__ pyparsing.ParseResults-class.html#__reversed__
-pyparsing.ParseResults.__nonzero__ pyparsing.ParseResults-class.html#__nonzero__
-pyparsing.ParseResults._itervalues pyparsing.ParseResults-class.html#_itervalues
-pyparsing.ParseResults.__setstate__ pyparsing.ParseResults-class.html#__setstate__
-pyparsing.ParseResults.insert pyparsing.ParseResults-class.html#insert
-pyparsing.ParseResults.__setitem__ pyparsing.ParseResults-class.html#__setitem__
-pyparsing.ParseResults.__iadd__ pyparsing.ParseResults-class.html#__iadd__
-pyparsing.ParseResults.values pyparsing.ParseResults-class.html#values
-pyparsing.ParseResults.__repr__ pyparsing.ParseResults-class.html#__repr__
-pyparsing.ParseResults.asDict pyparsing.ParseResults-class.html#asDict
-pyparsing.ParseResults.items pyparsing.ParseResults-class.html#items
-pyparsing.ParseResults.__dir__ pyparsing.ParseResults-class.html#__dir__
-pyparsing.ParseResults.clear pyparsing.ParseResults-class.html#clear
-pyparsing.ParseSyntaxException pyparsing.ParseSyntaxException-class.html
-pyparsing.ParseBaseException.__str__ pyparsing.ParseBaseException-class.html#__str__
-pyparsing.ParseBaseException.__init__ pyparsing.ParseBaseException-class.html#__init__
-pyparsing.ParseBaseException.__getattr__ pyparsing.ParseBaseException-class.html#__getattr__
-pyparsing.ParseBaseException.__dir__ pyparsing.ParseBaseException-class.html#__dir__
-pyparsing.ParseBaseException.markInputline pyparsing.ParseBaseException-class.html#markInputline
-pyparsing.ParseBaseException.__repr__ pyparsing.ParseBaseException-class.html#__repr__
-pyparsing.ParseBaseException._from_exception pyparsing.ParseBaseException-class.html#_from_exception
-pyparsing.ParserElement pyparsing.ParserElement-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ParserElement.__init__ pyparsing.ParserElement-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.ParserElement.parseImpl pyparsing.ParserElement-class.html#parseImpl
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-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.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-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.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-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
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-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.QuotedString pyparsing.QuotedString-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.QuotedString.__str__ pyparsing.QuotedString-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.QuotedString.__init__ pyparsing.QuotedString-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.QuotedString.parseImpl pyparsing.QuotedString-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.RecursiveGrammarException pyparsing.RecursiveGrammarException-class.html
-pyparsing.RecursiveGrammarException.__str__ pyparsing.RecursiveGrammarException-class.html#__str__
-pyparsing.RecursiveGrammarException.__init__ pyparsing.RecursiveGrammarException-class.html#__init__
-pyparsing.Regex pyparsing.Regex-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.Regex.__str__ pyparsing.Regex-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Regex.__init__ pyparsing.Regex-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Regex.__slotnames__ pyparsing.Regex-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.Regex.compiledREtype pyparsing.Regex.compiledREtype-class.html
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.Regex.parseImpl pyparsing.Regex-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Regex.compiledREtype pyparsing.Regex.compiledREtype-class.html
-pyparsing.Regex.compiledREtype.finditer pyparsing.Regex.compiledREtype-class.html#finditer
-pyparsing.Regex.compiledREtype.scanner pyparsing.Regex.compiledREtype-class.html#scanner
-pyparsing.Regex.compiledREtype.subn pyparsing.Regex.compiledREtype-class.html#subn
-pyparsing.Regex.compiledREtype.groupindex pyparsing.Regex.compiledREtype-class.html#groupindex
-pyparsing.Regex.compiledREtype.findall pyparsing.Regex.compiledREtype-class.html#findall
-pyparsing.Regex.compiledREtype.sub pyparsing.Regex.compiledREtype-class.html#sub
-pyparsing.Regex.compiledREtype.pattern pyparsing.Regex.compiledREtype-class.html#pattern
-pyparsing.Regex.compiledREtype.split pyparsing.Regex.compiledREtype-class.html#split
-pyparsing.Regex.compiledREtype.match pyparsing.Regex.compiledREtype-class.html#match
-pyparsing.Regex.compiledREtype.__deepcopy__ pyparsing.Regex.compiledREtype-class.html#__deepcopy__
-pyparsing.Regex.compiledREtype.groups pyparsing.Regex.compiledREtype-class.html#groups
-pyparsing.Regex.compiledREtype.search pyparsing.Regex.compiledREtype-class.html#search
-pyparsing.Regex.compiledREtype.flags pyparsing.Regex.compiledREtype-class.html#flags
-pyparsing.Regex.compiledREtype.__copy__ pyparsing.Regex.compiledREtype-class.html#__copy__
-pyparsing.SkipTo pyparsing.SkipTo-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.SkipTo.__init__ pyparsing.SkipTo-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.SkipTo.parseImpl pyparsing.SkipTo-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.StringEnd pyparsing.StringEnd-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.StringEnd.__init__ pyparsing.StringEnd-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.StringEnd.parseImpl pyparsing.StringEnd-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.StringStart pyparsing.StringStart-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.StringStart.__init__ pyparsing.StringStart-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.StringStart.parseImpl pyparsing.StringStart-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Suppress pyparsing.Suppress-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.TokenConverter.__init__ pyparsing.TokenConverter-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Suppress.__slotnames__ pyparsing.Suppress-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.Suppress.postParse pyparsing.Suppress-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.Suppress.suppress pyparsing.Suppress-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Token pyparsing.Token-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Token.__init__ pyparsing.Token-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.TokenConverter pyparsing.TokenConverter-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParseElementEnhance.__str__ pyparsing.ParseElementEnhance-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.TokenConverter.__init__ pyparsing.TokenConverter-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-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.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.White pyparsing.White-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.White.__init__ pyparsing.White-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.White.__slotnames__ pyparsing.White-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.White.parseImpl pyparsing.White-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.White.whiteStrs pyparsing.White-class.html#whiteStrs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.Word pyparsing.Word-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.Word.__str__ pyparsing.Word-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.Word.__init__ pyparsing.Word-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.Word.__slotnames__ pyparsing.Word-class.html#__slotnames__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.Word.parseImpl pyparsing.Word-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.WordEnd pyparsing.WordEnd-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.WordEnd.__init__ pyparsing.WordEnd-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.WordEnd.parseImpl pyparsing.WordEnd-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.WordStart pyparsing.WordStart-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.WordStart.__init__ pyparsing.WordStart-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.WordStart.parseImpl pyparsing.WordStart-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.__str__ pyparsing.ParserElement-class.html#__str__
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParserElement.leaveWhitespace pyparsing.ParserElement-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParserElement.ignore pyparsing.ParserElement-class.html#ignore
-pyparsing.ParserElement.validate pyparsing.ParserElement-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDebugActions pyparsing.ParserElement-class.html#setDebugActions
-pyparsing.ParserElement.__mul__ pyparsing.ParserElement-class.html#__mul__
-pyparsing.ParserElement.streamline pyparsing.ParserElement-class.html#streamline
-pyparsing.ParserElement.__repr__ pyparsing.ParserElement-class.html#__repr__
-pyparsing.ParserElement.checkRecursion pyparsing.ParserElement-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.ZeroOrMore pyparsing.ZeroOrMore-class.html
-pyparsing.ParserElement._parseCache pyparsing.ParserElement-class.html#_parseCache
-pyparsing.ParserElement.__ror__ pyparsing.ParserElement-class.html#__ror__
-pyparsing.ZeroOrMore.__str__ pyparsing.ZeroOrMore-class.html#__str__
-pyparsing.ParserElement.resetCache pyparsing.ParserElement-class.html#resetCache
-pyparsing.ParserElement.__radd__ pyparsing.ParserElement-class.html#__radd__
-pyparsing.ParserElement._parseNoCache pyparsing.ParserElement-class.html#_parseNoCache
-pyparsing.ParserElement.__rmul__ pyparsing.ParserElement-class.html#__rmul__
-pyparsing.ParserElement.__rsub__ pyparsing.ParserElement-class.html#__rsub__
-pyparsing.ParserElement.inlineLiteralsUsing pyparsing.ParserElement-class.html#inlineLiteralsUsing
-pyparsing.ParserElement.__and__ pyparsing.ParserElement-class.html#__and__
-pyparsing.ZeroOrMore.__init__ pyparsing.ZeroOrMore-class.html#__init__
-pyparsing.ParserElement.setFailAction pyparsing.ParserElement-class.html#setFailAction
-pyparsing.ParserElement.transformString pyparsing.ParserElement-class.html#transformString
-pyparsing.ParserElement.__rand__ pyparsing.ParserElement-class.html#__rand__
-pyparsing.ParserElement.parseString pyparsing.ParserElement-class.html#parseString
-pyparsing.ParserElement.packrat_cache pyparsing.ParserElement-class.html#packrat_cache
-pyparsing.ParserElement.__req__ pyparsing.ParserElement-class.html#__req__
-pyparsing.ParserElement.__xor__ pyparsing.ParserElement-class.html#__xor__
-pyparsing.ParserElement.setDefaultWhitespaceChars pyparsing.ParserElement-class.html#setDefaultWhitespaceChars
-pyparsing.ParserElement._packratEnabled pyparsing.ParserElement-class.html#_packratEnabled
-pyparsing.ZeroOrMore.parseImpl pyparsing.ZeroOrMore-class.html#parseImpl
-pyparsing.ParserElement.__invert__ pyparsing.ParserElement-class.html#__invert__
-pyparsing.ParserElement.packrat_cache_lock pyparsing.ParserElement-class.html#packrat_cache_lock
-pyparsing.ParserElement.postParse pyparsing.ParserElement-class.html#postParse
-pyparsing.ParserElement.__call__ pyparsing.ParserElement-class.html#__call__
-pyparsing.ParserElement.addParseAction pyparsing.ParserElement-class.html#addParseAction
-pyparsing.ParserElement.setWhitespaceChars pyparsing.ParserElement-class.html#setWhitespaceChars
-pyparsing.ParserElement.split pyparsing.ParserElement-class.html#split
-pyparsing.ParserElement.__ne__ pyparsing.ParserElement-class.html#__ne__
-pyparsing.ParseElementEnhance.leaveWhitespace pyparsing.ParseElementEnhance-class.html#leaveWhitespace
-pyparsing.ParserElement.setName pyparsing.ParserElement-class.html#setName
-pyparsing.ParserElement.matches pyparsing.ParserElement-class.html#matches
-pyparsing.ParserElement.suppress pyparsing.ParserElement-class.html#suppress
-pyparsing.ParserElement.enablePackrat pyparsing.ParserElement-class.html#enablePackrat
-pyparsing.ParserElement.packrat_cache_stats pyparsing.ParserElement-class.html#packrat_cache_stats
-pyparsing.ParserElement.setResultsName pyparsing.ParserElement-class.html#setResultsName
-pyparsing.ParserElement.parseFile pyparsing.ParserElement-class.html#parseFile
-pyparsing.ParserElement.addCondition pyparsing.ParserElement-class.html#addCondition
-pyparsing.ParseElementEnhance.streamline pyparsing.ParseElementEnhance-class.html#streamline
-pyparsing.ParserElement.__or__ pyparsing.ParserElement-class.html#__or__
-pyparsing.ParserElement.__add__ pyparsing.ParserElement-class.html#__add__
-pyparsing.ParserElement.__sub__ pyparsing.ParserElement-class.html#__sub__
-pyparsing.ParserElement.tryParse pyparsing.ParserElement-class.html#tryParse
-pyparsing.ParseElementEnhance.validate pyparsing.ParseElementEnhance-class.html#validate
-pyparsing.ParserElement.copy pyparsing.ParserElement-class.html#copy
-pyparsing.ParserElement.__eq__ pyparsing.ParserElement-class.html#__eq__
-pyparsing.ParserElement.__rxor__ pyparsing.ParserElement-class.html#__rxor__
-pyparsing.ParserElement.runTests pyparsing.ParserElement-class.html#runTests
-pyparsing.ParserElement.DEFAULT_WHITE_CHARS pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS
-pyparsing.ParserElement.parseWithTabs pyparsing.ParserElement-class.html#parseWithTabs
-pyparsing.ParserElement.searchString pyparsing.ParserElement-class.html#searchString
-pyparsing.ParserElement.scanString pyparsing.ParserElement-class.html#scanString
-pyparsing.ParserElement.setParseAction pyparsing.ParserElement-class.html#setParseAction
-pyparsing.ParserElement.preParse pyparsing.ParserElement-class.html#preParse
-pyparsing.ParserElement.setDebug pyparsing.ParserElement-class.html#setDebug
-pyparsing.ParserElement.__rne__ pyparsing.ParserElement-class.html#__rne__
-pyparsing.ParserElement.setBreak pyparsing.ParserElement-class.html#setBreak
-pyparsing.ParseElementEnhance.ignore pyparsing.ParseElementEnhance-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.ParseElementEnhance.checkRecursion pyparsing.ParseElementEnhance-class.html#checkRecursion
-pyparsing.ParserElement.__hash__ pyparsing.ParserElement-class.html#__hash__
-pyparsing.ParserElement.canParseNext pyparsing.ParserElement-class.html#canParseNext
-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.verbose_stacktrace pyparsing.ParserElement-class.html#verbose_stacktrace
-pyparsing.pyparsing_common pyparsing.pyparsing_common-class.html
-pyparsing.pyparsing_common.fnumber pyparsing.pyparsing_common-class.html#fnumber
-pyparsing.pyparsing_common.comma_separated_list pyparsing.pyparsing_common-class.html#comma_separated_list
-pyparsing.pyparsing_common.stripHTMLTags pyparsing.pyparsing_common-class.html#stripHTMLTags
-pyparsing.pyparsing_common._commasepitem pyparsing.pyparsing_common-class.html#_commasepitem
-pyparsing.pyparsing_common._mixed_ipv6_address pyparsing.pyparsing_common-class.html#_mixed_ipv6_address
-pyparsing.pyparsing_common.hex_integer pyparsing.pyparsing_common-class.html#hex_integer
-pyparsing.pyparsing_common.number pyparsing.pyparsing_common-class.html#number
-pyparsing.pyparsing_common.convertToInteger pyparsing.pyparsing_common-class.html#convertToInteger
-pyparsing.pyparsing_common.sci_real pyparsing.pyparsing_common-class.html#sci_real
-pyparsing.pyparsing_common.uuid pyparsing.pyparsing_common-class.html#uuid
-pyparsing.pyparsing_common.convertToFloat pyparsing.pyparsing_common-class.html#convertToFloat
-pyparsing.pyparsing_common.convertToDate pyparsing.pyparsing_common-class.html#convertToDate
-pyparsing.pyparsing_common.downcaseTokens pyparsing.pyparsing_common-class.html#downcaseTokens
-pyparsing.pyparsing_common.convertToDatetime pyparsing.pyparsing_common-class.html#convertToDatetime
-pyparsing.pyparsing_common.fraction pyparsing.pyparsing_common-class.html#fraction
-pyparsing.pyparsing_common._full_ipv6_address pyparsing.pyparsing_common-class.html#_full_ipv6_address
-pyparsing.pyparsing_common.signed_integer pyparsing.pyparsing_common-class.html#signed_integer
-pyparsing.pyparsing_common.real pyparsing.pyparsing_common-class.html#real
-pyparsing.pyparsing_common.mac_address pyparsing.pyparsing_common-class.html#mac_address
-pyparsing.pyparsing_common.iso8601_date pyparsing.pyparsing_common-class.html#iso8601_date
-pyparsing.pyparsing_common.ipv4_address pyparsing.pyparsing_common-class.html#ipv4_address
-pyparsing.pyparsing_common.integer pyparsing.pyparsing_common-class.html#integer
-pyparsing.pyparsing_common._ipv6_part pyparsing.pyparsing_common-class.html#_ipv6_part
-pyparsing.pyparsing_common.iso8601_datetime pyparsing.pyparsing_common-class.html#iso8601_datetime
-pyparsing.pyparsing_common.identifier pyparsing.pyparsing_common-class.html#identifier
-pyparsing.pyparsing_common.upcaseTokens pyparsing.pyparsing_common-class.html#upcaseTokens
-pyparsing.pyparsing_common._short_ipv6_address pyparsing.pyparsing_common-class.html#_short_ipv6_address
-pyparsing.pyparsing_common.ipv6_address pyparsing.pyparsing_common-class.html#ipv6_address
-pyparsing.pyparsing_common.mixed_integer pyparsing.pyparsing_common-class.html#mixed_integer
-pyparsing.pyparsing_common._html_stripper pyparsing.pyparsing_common-class.html#_html_stripper
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Class Hierarchy</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Trees </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%"> </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="class-tree.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<center><b>
- [ <a href="module-tree.html">Module Hierarchy</a>
- | <a href="class-tree.html">Class Hierarchy</a> ]
-</b></center><br />
-<h1 class="epydoc">Class Hierarchy</h1>
-<ul class="nomargin-top">
- <li> <strong class="uidlink">object</strong>:
- <em class="summary">The most base type</em>
- <ul>
- <li> <strong class="uidlink">exceptions.BaseException</strong>:
- <em class="summary">Common base class for all exceptions</em>
- <ul>
- <li> <strong class="uidlink">exceptions.Exception</strong>:
- <em class="summary">Common base class for all non-exit exceptions.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.ParseBaseException-class.html">pyparsing.ParseBaseException</a></strong>:
- <em class="summary">base exception class for all parsing runtime exceptions</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.ParseException-class.html">pyparsing.ParseException</a></strong>:
- <em class="summary">Exception thrown when parse expressions don't match class;
- supported attributes by name are:</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.ParseFatalException-class.html">pyparsing.ParseFatalException</a></strong>:
- <em class="summary">user-throwable exception thrown when inconsistent parse content is
- found; stops all parsing immediately</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.ParseSyntaxException-class.html">pyparsing.ParseSyntaxException</a></strong>:
- <em class="summary">just like <a href="pyparsing.ParseFatalException-class.html"
- class="link">ParseFatalException</a>, but thrown internally when an
- ErrorStop ('-' operator) indicates that parsing is to stop
- immediately because an unbacktrackable syntax error has been found</em>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.RecursiveGrammarException-class.html">pyparsing.RecursiveGrammarException</a></strong>:
- <em class="summary">exception thrown by <a
- href="pyparsing.ParserElement-class.html#validate"
- class="link">ParserElement.validate</a> if the grammar could be
- improperly recursive</em>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.OnlyOnce-class.html">pyparsing.OnlyOnce</a></strong>:
- <em class="summary">Wrapper for parse actions, to ensure they are only called once.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.ParseResults-class.html">pyparsing.ParseResults</a></strong>:
- <em class="summary">Structured parse results, to provide multiple means of access to
- the parsed data:</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.ParserElement-class.html">pyparsing.ParserElement</a></strong>:
- <em class="summary">Abstract base level parser element class.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.ParseElementEnhance-class.html">pyparsing.ParseElementEnhance</a></strong>:
- <em class="summary">Abstract subclass of <code>ParserElement</code>, for combining and
- post-processing parsed tokens.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.FollowedBy-class.html">pyparsing.FollowedBy</a></strong>:
- <em class="summary">Lookahead matching of the given parse expression.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Forward-class.html">pyparsing.Forward</a></strong>:
- <em class="summary">Forward declaration of an expression to be defined later - used for
- recursive grammars, such as algebraic infix notation.</em>
- <ul>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.NotAny-class.html">pyparsing.NotAny</a></strong>:
- <em class="summary">Lookahead to disallow matching with the given parse expression.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Optional-class.html">pyparsing.Optional</a></strong>:
- <em class="summary">Optional matching of the given expression.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.SkipTo-class.html">pyparsing.SkipTo</a></strong>:
- <em class="summary">Token for skipping over all undefined text until the matched
- expression is found.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.TokenConverter-class.html">pyparsing.TokenConverter</a></strong>:
- <em class="summary">Abstract subclass of <code>ParseExpression</code>, for converting
- parsed results.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.Combine-class.html">pyparsing.Combine</a></strong>:
- <em class="summary">Converter to concatenate all matching tokens to a single string.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Dict-class.html">pyparsing.Dict</a></strong>:
- <em class="summary">Converter to return a repetitive expression as a list, but also as
- a dictionary.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Group-class.html">pyparsing.Group</a></strong>:
- <em class="summary">Converter to return the matched tokens as a list - useful for
- returning tokens of <code><a href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a></code> and <code><a
- href="pyparsing.OneOrMore-class.html"
- class="link">OneOrMore</a></code> expressions.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Suppress-class.html">pyparsing.Suppress</a></strong>:
- <em class="summary">Converter for ignoring the results of a parsed expression.</em>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink">pyparsing._MultipleMatch</strong>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.OneOrMore-class.html">pyparsing.OneOrMore</a></strong>:
- <em class="summary">Repetition of one or more of the given expression.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.ZeroOrMore-class.html">pyparsing.ZeroOrMore</a></strong>:
- <em class="summary">Optional repetition of zero or more of the given expression.</em>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.ParseExpression-class.html">pyparsing.ParseExpression</a></strong>:
- <em class="summary">Abstract subclass of ParserElement, for combining and
- post-processing parsed tokens.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.And-class.html">pyparsing.And</a></strong>:
- <em class="summary">Requires all given <code>ParseExpression</code>s to be found in the
- given order.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Each-class.html">pyparsing.Each</a></strong>:
- <em class="summary">Requires all given <code>ParseExpression</code>s to be found, but
- in any order.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.MatchFirst-class.html">pyparsing.MatchFirst</a></strong>:
- <em class="summary">Requires that at least one <code>ParseExpression</code> is found.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Or-class.html">pyparsing.Or</a></strong>:
- <em class="summary">Requires that at least one <code>ParseExpression</code> is found.</em>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Token-class.html">pyparsing.Token</a></strong>:
- <em class="summary">Abstract <code>ParserElement</code> subclass, for defining atomic
- matching patterns.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.CharsNotIn-class.html">pyparsing.CharsNotIn</a></strong>:
- <em class="summary">Token for matching words composed of characters <i>not</i> in a
- given set (will include whitespace in matched characters if not
- listed in the provided exclusion set - see example).</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.CloseMatch-class.html">pyparsing.CloseMatch</a></strong>:
- <em class="summary">A variation on <a href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a> which matches
- "close" matches, that is, strings with at most 'n'
- mismatching characters.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Empty-class.html">pyparsing.Empty</a></strong>:
- <em class="summary">An empty token, will always match.</em>
- <ul>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Keyword-class.html">pyparsing.Keyword</a></strong>:
- <em class="summary">Token to exactly match a specified string as a keyword, that is, it
- must be immediately followed by a non-keyword character.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.CaselessKeyword-class.html">pyparsing.CaselessKeyword</a></strong>:
- <em class="summary">Caseless version of <a href="pyparsing.Keyword-class.html"
- class="link">Keyword</a>.</em>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Literal-class.html" onclick="show_private();">pyparsing.Literal</a></strong>:
- <em class="summary">Token to exactly match a specified string.</em>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.CaselessLiteral-class.html">pyparsing.CaselessLiteral</a></strong>:
- <em class="summary">Token to match a specified string, ignoring case of letters.</em>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.NoMatch-class.html">pyparsing.NoMatch</a></strong>:
- <em class="summary">A token that will never match.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.QuotedString-class.html">pyparsing.QuotedString</a></strong>:
- <em class="summary">Token for matching strings that are delimited by quoting
- characters.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Regex-class.html">pyparsing.Regex</a></strong>:
- <em class="summary">Token for matching strings that match a given regular expression.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.White-class.html">pyparsing.White</a></strong>:
- <em class="summary">Special matching class for matching whitespace.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Word-class.html">pyparsing.Word</a></strong>:
- <em class="summary">Token for matching words composed of allowed character sets.</em>
- </li>
- <li> <strong class="uidlink">pyparsing._PositionToken</strong>
- <ul>
- <li> <strong class="uidlink"><a href="pyparsing.GoToColumn-class.html">pyparsing.GoToColumn</a></strong>:
- <em class="summary">Token to advance to a specific column of input text; useful for
- tabular report scraping.</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.LineEnd-class.html">pyparsing.LineEnd</a></strong>:
- <em class="summary">Matches if current position is at the end of a line within the
- parse string</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.LineStart-class.html">pyparsing.LineStart</a></strong>:
- <em class="summary">Matches if current position is at the beginning of a line within
- the parse string</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.StringEnd-class.html">pyparsing.StringEnd</a></strong>:
- <em class="summary">Matches if current position is at the end of the parse string</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.StringStart-class.html">pyparsing.StringStart</a></strong>:
- <em class="summary">Matches if current position is at the beginning of the parse string</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.WordEnd-class.html">pyparsing.WordEnd</a></strong>:
- <em class="summary">Matches if the current position is at the end of a Word, and is not
- followed by any character in a given set of <code>wordChars</code>
- (default=<code>printables</code>).</em>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.WordStart-class.html">pyparsing.WordStart</a></strong>:
- <em class="summary">Matches if the current position is at the beginning of a Word, and
- is not preceded by any character in a given set of
- <code>wordChars</code> (default=<code>printables</code>).</em>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.Regex.compiledREtype-class.html">pyparsing.Regex.compiledREtype</a></strong>:
- <em class="summary">Compiled regular expression objects</em>
- </li>
- </ul>
- </li>
- <li> <strong class="uidlink"><a href="pyparsing.pyparsing_common-class.html">pyparsing.pyparsing_common</a></strong>:
- <em class="summary">Here are some common low-level expressions that may be useful in
- jump-starting parser development:</em>
- </li>
-</ul>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Trees </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-\r
-\r
-/* Epydoc CSS Stylesheet\r
- *\r
- * This stylesheet can be used to customize the appearance of epydoc's\r
- * HTML output.\r
- *\r
- */\r
-\r
-/* Default Colors & Styles\r
- * - Set the default foreground & background color with 'body'; and \r
- * link colors with 'a:link' and 'a:visited'.\r
- * - Use bold for decision list terms.\r
- * - The heading styles defined here are used for headings *within*\r
- * docstring descriptions. All headings used by epydoc itself use\r
- * either class='epydoc' or class='toc' (CSS styles for both\r
- * defined below).\r
- */\r
-body { background: #ffffff; color: #000000; }\r
-p { margin-top: 0.5em; margin-bottom: 0.5em; }\r
-a:link { color: #0000ff; }\r
-a:visited { color: #204080; }\r
-dt { font-weight: bold; }\r
-h1 { font-size: +140%; font-style: italic;\r
- font-weight: bold; }\r
-h2 { font-size: +125%; font-style: italic;\r
- font-weight: bold; }\r
-h3 { font-size: +110%; font-style: italic;\r
- font-weight: normal; }\r
-code { font-size: 100%; }\r
-/* N.B.: class, not pseudoclass */\r
-a.link { font-family: monospace; }\r
- \r
-/* Page Header & Footer\r
- * - The standard page header consists of a navigation bar (with\r
- * pointers to standard pages such as 'home' and 'trees'); a\r
- * breadcrumbs list, which can be used to navigate to containing\r
- * classes or modules; options links, to show/hide private\r
- * variables and to show/hide frames; and a page title (using\r
- * <h1>). The page title may be followed by a link to the\r
- * corresponding source code (using 'span.codelink').\r
- * - The footer consists of a navigation bar, a timestamp, and a\r
- * pointer to epydoc's homepage.\r
- */ \r
-h1.epydoc { margin: 0; font-size: +140%; font-weight: bold; }\r
-h2.epydoc { font-size: +130%; font-weight: bold; }\r
-h3.epydoc { font-size: +115%; font-weight: bold;\r
- margin-top: 0.2em; }\r
-td h3.epydoc { font-size: +115%; font-weight: bold;\r
- margin-bottom: 0; }\r
-table.navbar { background: #a0c0ff; color: #000000;\r
- border: 2px groove #c0d0d0; }\r
-table.navbar table { color: #000000; }\r
-th.navbar-select { background: #70b0ff;\r
- color: #000000; } \r
-table.navbar a { text-decoration: none; } \r
-table.navbar a:link { color: #0000ff; }\r
-table.navbar a:visited { color: #204080; }\r
-span.breadcrumbs { font-size: 85%; font-weight: bold; }\r
-span.options { font-size: 70%; }\r
-span.codelink { font-size: 85%; }\r
-td.footer { font-size: 85%; }\r
-\r
-/* Table Headers\r
- * - Each summary table and details section begins with a 'header'\r
- * row. This row contains a section title (marked by\r
- * 'span.table-header') as well as a show/hide private link\r
- * (marked by 'span.options', defined above).\r
- * - Summary tables that contain user-defined groups mark those\r
- * groups using 'group header' rows.\r
- */\r
-td.table-header { background: #70b0ff; color: #000000;\r
- border: 1px solid #608090; }\r
-td.table-header table { color: #000000; }\r
-td.table-header table a:link { color: #0000ff; }\r
-td.table-header table a:visited { color: #204080; }\r
-span.table-header { font-size: 120%; font-weight: bold; }\r
-th.group-header { background: #c0e0f8; color: #000000;\r
- text-align: left; font-style: italic; \r
- font-size: 115%; \r
- border: 1px solid #608090; }\r
-\r
-/* Summary Tables (functions, variables, etc)\r
- * - Each object is described by a single row of the table with\r
- * two cells. The left cell gives the object's type, and is\r
- * marked with 'code.summary-type'. The right cell gives the\r
- * object's name and a summary description.\r
- * - CSS styles for the table's header and group headers are\r
- * defined above, under 'Table Headers'\r
- */\r
-table.summary { border-collapse: collapse;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #608090;\r
- margin-bottom: 0.5em; }\r
-td.summary { border: 1px solid #608090; }\r
-code.summary-type { font-size: 85%; }\r
-table.summary a:link { color: #0000ff; }\r
-table.summary a:visited { color: #204080; }\r
-\r
-\r
-/* Details Tables (functions, variables, etc)\r
- * - Each object is described in its own div.\r
- * - A single-row summary table w/ table-header is used as\r
- * a header for each details section (CSS style for table-header\r
- * is defined above, under 'Table Headers').\r
- */\r
-table.details { border-collapse: collapse;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #608090;\r
- margin: .2em 0 0 0; }\r
-table.details table { color: #000000; }\r
-table.details a:link { color: #0000ff; }\r
-table.details a:visited { color: #204080; }\r
-\r
-/* Fields */\r
-dl.fields { margin-left: 2em; margin-top: 1em;\r
- margin-bottom: 1em; }\r
-dl.fields dd ul { margin-left: 0em; padding-left: 0em; }\r
-dl.fields dd ul li ul { margin-left: 2em; padding-left: 0em; }\r
-div.fields { margin-left: 2em; }\r
-div.fields p { margin-bottom: 0.5em; }\r
-\r
-/* Index tables (identifier index, term index, etc)\r
- * - link-index is used for indices containing lists of links\r
- * (namely, the identifier index & term index).\r
- * - index-where is used in link indices for the text indicating\r
- * the container/source for each link.\r
- * - metadata-index is used for indices containing metadata\r
- * extracted from fields (namely, the bug index & todo index).\r
- */\r
-table.link-index { border-collapse: collapse;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #608090; }\r
-td.link-index { border-width: 0px; }\r
-table.link-index a:link { color: #0000ff; }\r
-table.link-index a:visited { color: #204080; }\r
-span.index-where { font-size: 70%; }\r
-table.metadata-index { border-collapse: collapse;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #608090; \r
- margin: .2em 0 0 0; }\r
-td.metadata-index { border-width: 1px; border-style: solid; }\r
-table.metadata-index a:link { color: #0000ff; }\r
-table.metadata-index a:visited { color: #204080; }\r
-\r
-/* Function signatures\r
- * - sig* is used for the signature in the details section.\r
- * - .summary-sig* is used for the signature in the summary \r
- * table, and when listing property accessor functions.\r
- * */\r
-.sig-name { color: #006080; }\r
-.sig-arg { color: #008060; }\r
-.sig-default { color: #602000; }\r
-.summary-sig { font-family: monospace; }\r
-.summary-sig-name { color: #006080; font-weight: bold; }\r
-table.summary a.summary-sig-name:link\r
- { color: #006080; font-weight: bold; }\r
-table.summary a.summary-sig-name:visited\r
- { color: #006080; font-weight: bold; }\r
-.summary-sig-arg { color: #006040; }\r
-.summary-sig-default { color: #501800; }\r
-\r
-/* Subclass list\r
- */\r
-ul.subclass-list { display: inline; }\r
-ul.subclass-list li { display: inline; }\r
-\r
-/* To render variables, classes etc. like functions */\r
-table.summary .summary-name { color: #006080; font-weight: bold;\r
- font-family: monospace; }\r
-table.summary\r
- a.summary-name:link { color: #006080; font-weight: bold;\r
- font-family: monospace; }\r
-table.summary\r
- a.summary-name:visited { color: #006080; font-weight: bold;\r
- font-family: monospace; }\r
-\r
-/* Variable values\r
- * - In the 'variable details' sections, each varaible's value is\r
- * listed in a 'pre.variable' box. The width of this box is\r
- * restricted to 80 chars; if the value's repr is longer than\r
- * this it will be wrapped, using a backslash marked with\r
- * class 'variable-linewrap'. If the value's repr is longer\r
- * than 3 lines, the rest will be ellided; and an ellipsis\r
- * marker ('...' marked with 'variable-ellipsis') will be used.\r
- * - If the value is a string, its quote marks will be marked\r
- * with 'variable-quote'.\r
- * - If the variable is a regexp, it is syntax-highlighted using\r
- * the re* CSS classes.\r
- */\r
-pre.variable { padding: .5em; margin: 0;\r
- background: #dce4ec; color: #000000;\r
- border: 1px solid #708890; }\r
-.variable-linewrap { color: #604000; font-weight: bold; }\r
-.variable-ellipsis { color: #604000; font-weight: bold; }\r
-.variable-quote { color: #604000; font-weight: bold; }\r
-.variable-group { color: #008000; font-weight: bold; }\r
-.variable-op { color: #604000; font-weight: bold; }\r
-.variable-string { color: #006030; }\r
-.variable-unknown { color: #a00000; font-weight: bold; }\r
-.re { color: #000000; }\r
-.re-char { color: #006030; }\r
-.re-op { color: #600000; }\r
-.re-group { color: #003060; }\r
-.re-ref { color: #404040; }\r
-\r
-/* Base tree\r
- * - Used by class pages to display the base class hierarchy.\r
- */\r
-pre.base-tree { font-size: 80%; margin: 0; }\r
-\r
-/* Frames-based table of contents headers\r
- * - Consists of two frames: one for selecting modules; and\r
- * the other listing the contents of the selected module.\r
- * - h1.toc is used for each frame's heading\r
- * - h2.toc is used for subheadings within each frame.\r
- */\r
-h1.toc { text-align: center; font-size: 105%;\r
- margin: 0; font-weight: bold;\r
- padding: 0; }\r
-h2.toc { font-size: 100%; font-weight: bold; \r
- margin: 0.5em 0 0 -0.3em; }\r
-\r
-/* Syntax Highlighting for Source Code\r
- * - doctest examples are displayed in a 'pre.py-doctest' block.\r
- * If the example is in a details table entry, then it will use\r
- * the colors specified by the 'table pre.py-doctest' line.\r
- * - Source code listings are displayed in a 'pre.py-src' block.\r
- * Each line is marked with 'span.py-line' (used to draw a line\r
- * down the left margin, separating the code from the line\r
- * numbers). Line numbers are displayed with 'span.py-lineno'.\r
- * The expand/collapse block toggle button is displayed with\r
- * 'a.py-toggle' (Note: the CSS style for 'a.py-toggle' should not\r
- * modify the font size of the text.)\r
- * - If a source code page is opened with an anchor, then the\r
- * corresponding code block will be highlighted. The code\r
- * block's header is highlighted with 'py-highlight-hdr'; and\r
- * the code block's body is highlighted with 'py-highlight'.\r
- * - The remaining py-* classes are used to perform syntax\r
- * highlighting (py-string for string literals, py-name for names,\r
- * etc.)\r
- */\r
-pre.py-doctest { padding: .5em; margin: 1em;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #708890; }\r
-table pre.py-doctest { background: #dce4ec;\r
- color: #000000; }\r
-pre.py-src { border: 2px solid #000000; \r
- background: #f0f0f0; color: #000000; }\r
-.py-line { border-left: 2px solid #000000; \r
- margin-left: .2em; padding-left: .4em; }\r
-.py-lineno { font-style: italic; font-size: 90%;\r
- padding-left: .5em; }\r
-a.py-toggle { text-decoration: none; }\r
-div.py-highlight-hdr { border-top: 2px solid #000000;\r
- border-bottom: 2px solid #000000;\r
- background: #d8e8e8; }\r
-div.py-highlight { border-bottom: 2px solid #000000;\r
- background: #d0e0e0; }\r
-.py-prompt { color: #005050; font-weight: bold;}\r
-.py-more { color: #005050; font-weight: bold;}\r
-.py-string { color: #006030; }\r
-.py-comment { color: #003060; }\r
-.py-keyword { color: #600000; }\r
-.py-output { color: #404040; }\r
-.py-name { color: #000050; }\r
-.py-name:link { color: #000050 !important; }\r
-.py-name:visited { color: #000050 !important; }\r
-.py-number { color: #005000; }\r
-.py-defname { color: #000060; font-weight: bold; }\r
-.py-def-name { color: #000060; font-weight: bold; }\r
-.py-base-class { color: #000060; }\r
-.py-param { color: #000060; }\r
-.py-docstring { color: #006030; }\r
-.py-decorator { color: #804020; }\r
-/* Use this if you don't want links to names underlined: */\r
-/*a.py-name { text-decoration: none; }*/\r
-\r
-/* Graphs & Diagrams\r
- * - These CSS styles are used for graphs & diagrams generated using\r
- * Graphviz dot. 'img.graph-without-title' is used for bare\r
- * diagrams (to remove the border created by making the image\r
- * clickable).\r
- */\r
-img.graph-without-title { border: none; }\r
-img.graph-with-title { border: 1px solid #000000; }\r
-span.graph-title { font-weight: bold; }\r
-span.graph-caption { }\r
-\r
-/* General-purpose classes\r
- * - 'p.indent-wrapped-lines' defines a paragraph whose first line\r
- * is not indented, but whose subsequent lines are.\r
- * - The 'nomargin-top' class is used to remove the top margin (e.g.\r
- * from lists). The 'nomargin' class is used to remove both the\r
- * top and bottom margin (but not the left or right margin --\r
- * for lists, that would cause the bullets to disappear.)\r
- */\r
-p.indent-wrapped-lines { padding: 0 0 0 7em; text-indent: -7em; \r
- margin: 0; }\r
-.nomargin-top { margin-top: 0; }\r
-.nomargin { margin-top: 0; margin-bottom: 0; }\r
-\r
-/* HTML Log */\r
-div.log-block { padding: 0; margin: .5em 0 .5em 0;\r
- background: #e8f0f8; color: #000000;\r
- border: 1px solid #000000; }\r
-div.log-error { padding: .1em .3em .1em .3em; margin: 4px;\r
- background: #ffb0b0; color: #000000;\r
- border: 1px solid #000000; }\r
-div.log-warning { padding: .1em .3em .1em .3em; margin: 4px;\r
- background: #ffffb0; color: #000000;\r
- border: 1px solid #000000; }\r
-div.log-info { padding: .1em .3em .1em .3em; margin: 4px;\r
- background: #b0ffb0; color: #000000;\r
- border: 1px solid #000000; }\r
-h2.log-hdr { background: #70b0ff; color: #000000;\r
- margin: 0; padding: 0em 0.5em 0em 0.5em;\r
- border-bottom: 1px solid #000000; font-size: 110%; }\r
-p.log { font-weight: bold; margin: .5em 0 .5em 0; }\r
-tr.opt-changed { color: #000000; font-weight: bold; }\r
-tr.opt-default { color: #606060; }\r
-pre.log { margin: 0; padding: 0; padding-left: 1em; }\r
+++ /dev/null
-function toggle_private() {\r
- // Search for any private/public links on this page. Store\r
- // their old text in "cmd," so we will know what action to\r
- // take; and change their text to the opposite action.\r
- var cmd = "?";\r
- var elts = document.getElementsByTagName("a");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "privatelink") {\r
- cmd = elts[i].innerHTML;\r
- elts[i].innerHTML = ((cmd && cmd.substr(0,4)=="show")?\r
- "hide private":"show private");\r
- }\r
- }\r
- // Update all DIVs containing private objects.\r
- var elts = document.getElementsByTagName("div");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "private") {\r
- elts[i].style.display = ((cmd && cmd.substr(0,4)=="hide")?"none":"block");\r
- }\r
- else if (elts[i].className == "public") {\r
- elts[i].style.display = ((cmd && cmd.substr(0,4)=="hide")?"block":"none");\r
- }\r
- }\r
- // Update all table rows containing private objects. Note, we\r
- // use "" instead of "block" becaue IE & firefox disagree on what\r
- // this should be (block vs table-row), and "" just gives the\r
- // default for both browsers.\r
- var elts = document.getElementsByTagName("tr");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "private") {\r
- elts[i].style.display = ((cmd && cmd.substr(0,4)=="hide")?"none":"");\r
- }\r
- }\r
- // Update all list items containing private objects.\r
- var elts = document.getElementsByTagName("li");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "private") {\r
- elts[i].style.display = ((cmd && cmd.substr(0,4)=="hide")?\r
- "none":"");\r
- }\r
- }\r
- // Update all list items containing private objects.\r
- var elts = document.getElementsByTagName("ul");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "private") {\r
- elts[i].style.display = ((cmd && cmd.substr(0,4)=="hide")?"none":"block");\r
- }\r
- }\r
- // Set a cookie to remember the current option.\r
- document.cookie = "EpydocPrivate="+cmd;\r
- }\r
-function show_private() {\r
- var elts = document.getElementsByTagName("a");\r
- for(var i=0; i<elts.length; i++) {\r
- if (elts[i].className == "privatelink") {\r
- cmd = elts[i].innerHTML;\r
- if (cmd && cmd.substr(0,4)=="show")\r
- toggle_private();\r
- }\r
- }\r
- }\r
-function getCookie(name) {\r
- var dc = document.cookie;\r
- var prefix = name + "=";\r
- var begin = dc.indexOf("; " + prefix);\r
- if (begin == -1) {\r
- begin = dc.indexOf(prefix);\r
- if (begin != 0) return null;\r
- } else\r
- { begin += 2; }\r
- var end = document.cookie.indexOf(";", begin);\r
- if (end == -1)\r
- { end = dc.length; }\r
- return unescape(dc.substring(begin + prefix.length, end));\r
- }\r
-function setFrame(url1, url2) {\r
- parent.frames[1].location.href = url1;\r
- parent.frames[2].location.href = url2;\r
- }\r
-function checkCookie() {\r
- var cmd=getCookie("EpydocPrivate");\r
- if (cmd && cmd.substr(0,4)!="show" && location.href.indexOf("#_") < 0)\r
- toggle_private();\r
- }\r
-function toggleCallGraph(id) {\r
- var elt = document.getElementById(id);\r
- if (elt.style.display == "none")\r
- elt.style.display = "block";\r
- else\r
- elt.style.display = "none";\r
- }\r
-function expand(id) {\r
- var elt = document.getElementById(id+"-expanded");\r
- if (elt) elt.style.display = "block";\r
- var elt = document.getElementById(id+"-expanded-linenums");\r
- if (elt) elt.style.display = "block";\r
- var elt = document.getElementById(id+"-collapsed");\r
- if (elt) { elt.innerHTML = ""; elt.style.display = "none"; }\r
- var elt = document.getElementById(id+"-collapsed-linenums");\r
- if (elt) { elt.innerHTML = ""; elt.style.display = "none"; }\r
- var elt = document.getElementById(id+"-toggle");\r
- if (elt) { elt.innerHTML = "-"; }\r
-}\r
-\r
-function collapse(id) {\r
- var elt = document.getElementById(id+"-expanded");\r
- if (elt) elt.style.display = "none";\r
- var elt = document.getElementById(id+"-expanded-linenums");\r
- if (elt) elt.style.display = "none";\r
- var elt = document.getElementById(id+"-collapsed-linenums");\r
- if (elt) { elt.innerHTML = "<br />"; elt.style.display="block"; }\r
- var elt = document.getElementById(id+"-toggle");\r
- if (elt) { elt.innerHTML = "+"; }\r
- var elt = document.getElementById(id+"-collapsed");\r
- if (elt) {\r
- elt.style.display = "block";\r
- \r
- var indent = elt.getAttribute("indent");\r
- var pad = elt.getAttribute("pad");\r
- var s = "<tt class='py-lineno'>";\r
- for (var i=0; i<pad.length; i++) { s += " " }\r
- s += "</tt>";\r
- s += " <tt class='py-line'>";\r
- for (var i=0; i<indent.length; i++) { s += " " }\r
- s += "<a href='#' onclick='expand(\"" + id;\r
- s += "\");return false'>...</a></tt><br />";\r
- elt.innerHTML = s;\r
- }\r
-}\r
-\r
-function toggle(id) {\r
- elt = document.getElementById(id+"-toggle");\r
- if (elt.innerHTML == "-")\r
- collapse(id); \r
- else\r
- expand(id);\r
- return false;\r
-}\r
-\r
-function highlight(id) {\r
- var elt = document.getElementById(id+"-def");\r
- if (elt) elt.className = "py-highlight-hdr";\r
- var elt = document.getElementById(id+"-expanded");\r
- if (elt) elt.className = "py-highlight";\r
- var elt = document.getElementById(id+"-collapsed");\r
- if (elt) elt.className = "py-highlight";\r
-}\r
-\r
-function num_lines(s) {\r
- var n = 1;\r
- var pos = s.indexOf("\n");\r
- while ( pos > 0) {\r
- n += 1;\r
- pos = s.indexOf("\n", pos+1);\r
- }\r
- return n;\r
-}\r
-\r
-// Collapse all blocks that mave more than `min_lines` lines.\r
-function collapse_all(min_lines) {\r
- var elts = document.getElementsByTagName("div");\r
- for (var i=0; i<elts.length; i++) {\r
- var elt = elts[i];\r
- var split = elt.id.indexOf("-");\r
- if (split > 0)\r
- if (elt.id.substring(split, elt.id.length) == "-expanded")\r
- if (num_lines(elt.innerHTML) > min_lines)\r
- collapse(elt.id.substring(0, split));\r
- }\r
-}\r
-\r
-function expandto(href) {\r
- var start = href.indexOf("#")+1;\r
- if (start != 0 && start != href.length) {\r
- if (href.substring(start, href.length) != "-") {\r
- collapse_all(4);\r
- pos = href.indexOf(".", start);\r
- while (pos != -1) {\r
- var id = href.substring(start, pos);\r
- expand(id);\r
- pos = href.indexOf(".", pos+1);\r
- }\r
- var id = href.substring(start, href.length);\r
- expand(id);\r
- highlight(id);\r
- }\r
- }\r
-}\r
-\r
-function kill_doclink(id) {\r
- var parent = document.getElementById(id);\r
- parent.removeChild(parent.childNodes.item(0));\r
-}\r
-function auto_kill_doclink(ev) {\r
- if (!ev) var ev = window.event;\r
- if (!this.contains(ev.toElement)) {\r
- var parent = document.getElementById(this.parentID);\r
- parent.removeChild(parent.childNodes.item(0));\r
- }\r
-}\r
-\r
-function doclink(id, name, targets_id) {\r
- var elt = document.getElementById(id);\r
-\r
- // If we already opened the box, then destroy it.\r
- // (This case should never occur, but leave it in just in case.)\r
- if (elt.childNodes.length > 1) {\r
- elt.removeChild(elt.childNodes.item(0));\r
- }\r
- else {\r
- // The outer box: relative + inline positioning.\r
- var box1 = document.createElement("div");\r
- box1.style.position = "relative";\r
- box1.style.display = "inline";\r
- box1.style.top = 0;\r
- box1.style.left = 0;\r
- \r
- // A shadow for fun\r
- var shadow = document.createElement("div");\r
- shadow.style.position = "absolute";\r
- shadow.style.left = "-1.3em";\r
- shadow.style.top = "-1.3em";\r
- shadow.style.background = "#404040";\r
- \r
- // The inner box: absolute positioning.\r
- var box2 = document.createElement("div");\r
- box2.style.position = "relative";\r
- box2.style.border = "1px solid #a0a0a0";\r
- box2.style.left = "-.2em";\r
- box2.style.top = "-.2em";\r
- box2.style.background = "white";\r
- box2.style.padding = ".3em .4em .3em .4em";\r
- box2.style.fontStyle = "normal";\r
- box2.onmouseout=auto_kill_doclink;\r
- box2.parentID = id;\r
-\r
- // Get the targets\r
- var targets_elt = document.getElementById(targets_id);\r
- var targets = targets_elt.getAttribute("targets");\r
- var links = "";\r
- target_list = targets.split(",");\r
- for (var i=0; i<target_list.length; i++) {\r
- var target = target_list[i].split("=");\r
- links += "<li><a href='" + target[1] + \r
- "' style='text-decoration:none'>" +\r
- target[0] + "</a></li>";\r
- }\r
- \r
- // Put it all together.\r
- elt.insertBefore(box1, elt.childNodes.item(0));\r
- //box1.appendChild(box2);\r
- box1.appendChild(shadow);\r
- shadow.appendChild(box2);\r
- box2.innerHTML =\r
- "Which <b>"+name+"</b> do you want to see documentation for?" +\r
- "<ul style='margin-bottom: 0;'>" +\r
- links + \r
- "<li><a href='#' style='text-decoration:none' " +\r
- "onclick='kill_doclink(\""+id+"\");return false;'>"+\r
- "<i>None of the above</i></a></li></ul>";\r
- }\r
- return false;\r
-}\r
-\r
-function get_anchor() {\r
- var href = location.href;\r
- var start = href.indexOf("#")+1;\r
- if ((start != 0) && (start != href.length))\r
- return href.substring(start, href.length);\r
- }\r
-function redirect_url(dottedName) {\r
- // Scan through each element of the "pages" list, and check\r
- // if "name" matches with any of them.\r
- for (var i=0; i<pages.length; i++) {\r
-\r
- // Each page has the form "<pagename>-m" or "<pagename>-c";\r
- // extract the <pagename> portion & compare it to dottedName.\r
- var pagename = pages[i].substring(0, pages[i].length-2);\r
- if (pagename == dottedName.substring(0,pagename.length)) {\r
-\r
- // We've found a page that matches `dottedName`;\r
- // construct its URL, using leftover `dottedName`\r
- // content to form an anchor.\r
- var pagetype = pages[i].charAt(pages[i].length-1);\r
- var url = pagename + ((pagetype=="m")?"-module.html":\r
- "-class.html");\r
- if (dottedName.length > pagename.length)\r
- url += "#" + dottedName.substring(pagename.length+1,\r
- dottedName.length);\r
- return url;\r
- }\r
- }\r
- }\r
+++ /dev/null
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
- "DTD/xhtml1-frameset.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title> pyparsing </title>
-</head>
-<frameset cols="20%,80%">
- <frameset rows="30%,70%">
- <frame src="toc.html" name="moduleListFrame"
- id="moduleListFrame" />
- <frame src="toc-everything.html" name="moduleFrame"
- id="moduleFrame" />
- </frameset>
- <frame src="pyparsing-module.html" name="mainFrame" id="mainFrame" />
-</frameset>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Help</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Help </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%"> </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="help.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-
-<h1 class="epydoc"> API Documentation </h1>
-
-<p> This document contains the API (Application Programming Interface)
-documentation for pyparsing. Documentation for the Python
-objects defined by the project is divided into separate pages for each
-package, module, and class. The API documentation also includes two
-pages containing information about the project as a whole: a trees
-page, and an index page. </p>
-
-<h2> Object Documentation </h2>
-
- <p>Each <strong>Package Documentation</strong> page contains: </p>
- <ul>
- <li> A description of the package. </li>
- <li> A list of the modules and sub-packages contained by the
- package. </li>
- <li> A summary of the classes defined by the package. </li>
- <li> A summary of the functions defined by the package. </li>
- <li> A summary of the variables defined by the package. </li>
- <li> A detailed description of each function defined by the
- package. </li>
- <li> A detailed description of each variable defined by the
- package. </li>
- </ul>
-
- <p>Each <strong>Module Documentation</strong> page contains:</p>
- <ul>
- <li> A description of the module. </li>
- <li> A summary of the classes defined by the module. </li>
- <li> A summary of the functions defined by the module. </li>
- <li> A summary of the variables defined by the module. </li>
- <li> A detailed description of each function defined by the
- module. </li>
- <li> A detailed description of each variable defined by the
- module. </li>
- </ul>
-
- <p>Each <strong>Class Documentation</strong> page contains: </p>
- <ul>
- <li> A class inheritance diagram. </li>
- <li> A list of known subclasses. </li>
- <li> A description of the class. </li>
- <li> A summary of the methods defined by the class. </li>
- <li> A summary of the instance variables defined by the class. </li>
- <li> A summary of the class (static) variables defined by the
- class. </li>
- <li> A detailed description of each method defined by the
- class. </li>
- <li> A detailed description of each instance variable defined by the
- class. </li>
- <li> A detailed description of each class (static) variable defined
- by the class. </li>
- </ul>
-
-<h2> Project Documentation </h2>
-
- <p> The <strong>Trees</strong> page contains the module and class hierarchies: </p>
- <ul>
- <li> The <em>module hierarchy</em> lists every package and module, with
- modules grouped into packages. At the top level, and within each
- package, modules and sub-packages are listed alphabetically. </li>
- <li> The <em>class hierarchy</em> lists every class, grouped by base
- class. If a class has more than one base class, then it will be
- listed under each base class. At the top level, and under each base
- class, classes are listed alphabetically. </li>
- </ul>
-
- <p> The <strong>Index</strong> page contains indices of terms and
- identifiers: </p>
- <ul>
- <li> The <em>term index</em> lists every term indexed by any object's
- documentation. For each term, the index provides links to each
- place where the term is indexed. </li>
- <li> The <em>identifier index</em> lists the (short) name of every package,
- module, class, method, function, variable, and parameter. For each
- identifier, the index provides a short description, and a link to
- its documentation. </li>
- </ul>
-
-<h2> The Table of Contents </h2>
-
-<p> The table of contents occupies the two frames on the left side of
-the window. The upper-left frame displays the <em>project
-contents</em>, and the lower-left frame displays the <em>module
-contents</em>: </p>
-
-<table class="help summary" border="1" cellspacing="0" cellpadding="3">
- <tr style="height: 30%">
- <td align="center" style="font-size: small">
- Project<br />Contents<hr />...</td>
- <td align="center" style="font-size: small" rowspan="2" width="70%">
- API<br />Documentation<br />Frame<br /><br /><br />
- </td>
- </tr>
- <tr>
- <td align="center" style="font-size: small">
- Module<br />Contents<hr /> <br />...<br />
- </td>
- </tr>
-</table><br />
-
-<p> The <strong>project contents frame</strong> contains a list of all packages
-and modules that are defined by the project. Clicking on an entry
-will display its contents in the module contents frame. Clicking on a
-special entry, labeled "Everything," will display the contents of
-the entire project. </p>
-
-<p> The <strong>module contents frame</strong> contains a list of every
-submodule, class, type, exception, function, and variable defined by a
-module or package. Clicking on an entry will display its
-documentation in the API documentation frame. Clicking on the name of
-the module, at the top of the frame, will display the documentation
-for the module itself. </p>
-
-<p> The "<strong>frames</strong>" and "<strong>no frames</strong>" buttons below the top
-navigation bar can be used to control whether the table of contents is
-displayed or not. </p>
-
-<h2> The Navigation Bar </h2>
-
-<p> A navigation bar is located at the top and bottom of every page.
-It indicates what type of page you are currently viewing, and allows
-you to go to related pages. The following table describes the labels
-on the navigation bar. Note that not some labels (such as
-[Parent]) are not displayed on all pages. </p>
-
-<table class="summary" border="1" cellspacing="0" cellpadding="3" width="100%">
-<tr class="summary">
- <th>Label</th>
- <th>Highlighted when...</th>
- <th>Links to...</th>
-</tr>
- <tr><td valign="top"><strong>[Parent]</strong></td>
- <td valign="top"><em>(never highlighted)</em></td>
- <td valign="top"> the parent of the current package </td></tr>
- <tr><td valign="top"><strong>[Package]</strong></td>
- <td valign="top">viewing a package</td>
- <td valign="top">the package containing the current object
- </td></tr>
- <tr><td valign="top"><strong>[Module]</strong></td>
- <td valign="top">viewing a module</td>
- <td valign="top">the module containing the current object
- </td></tr>
- <tr><td valign="top"><strong>[Class]</strong></td>
- <td valign="top">viewing a class </td>
- <td valign="top">the class containing the current object</td></tr>
- <tr><td valign="top"><strong>[Trees]</strong></td>
- <td valign="top">viewing the trees page</td>
- <td valign="top"> the trees page </td></tr>
- <tr><td valign="top"><strong>[Index]</strong></td>
- <td valign="top">viewing the index page</td>
- <td valign="top"> the index page </td></tr>
- <tr><td valign="top"><strong>[Help]</strong></td>
- <td valign="top">viewing the help page</td>
- <td valign="top"> the help page </td></tr>
-</table>
-
-<p> The "<strong>show private</strong>" and "<strong>hide private</strong>" buttons below
-the top navigation bar can be used to control whether documentation
-for private objects is displayed. Private objects are usually defined
-as objects whose (short) names begin with a single underscore, but do
-not end with an underscore. For example, "<code>_x</code>",
-"<code>__pprint</code>", and "<code>epydoc.epytext._tokenize</code>"
-are private objects; but "<code>re.sub</code>",
-"<code>__init__</code>", and "<code>type_</code>" are not. However,
-if a module defines the "<code>__all__</code>" variable, then its
-contents are used to decide which objects are private. </p>
-
-<p> A timestamp below the bottom navigation bar indicates when each
-page was last updated. </p>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Help </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Identifier Index</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Indices </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%"> </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="identifier-index.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<table border="0" width="100%">
-<tr valign="bottom"><td>
-<h1 class="epydoc">Identifier Index</h1>
-</td><td>
-[
- <a href="#A">A</a>
- B
- <a href="#C">C</a>
- <a href="#D">D</a>
- <a href="#E">E</a>
- <a href="#F">F</a>
- <a href="#G">G</a>
- <a href="#H">H</a>
- <a href="#I">I</a>
- <a href="#J">J</a>
- <a href="#K">K</a>
- <a href="#L">L</a>
- <a href="#M">M</a>
- <a href="#N">N</a>
- <a href="#O">O</a>
- <a href="#P">P</a>
- <a href="#Q">Q</a>
- <a href="#R">R</a>
- <a href="#S">S</a>
- <a href="#T">T</a>
- <a href="#U">U</a>
- <a href="#V">V</a>
- <a href="#W">W</a>
- X
- Y
- <a href="#Z">Z</a>
- <a href="#_">_</a>
-]
-</td></table>
-<table border="0" width="100%">
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="A">A</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#addCondition">addCondition()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html">And</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#asDict">asDict()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#anyCloseTag">anyCloseTag</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#asList">asList()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#alphanums">alphanums</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#anyOpenTag">anyOpenTag</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#asXML">asXML()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#alphas">alphas</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#append">append()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#alphas8bit">alphas8bit</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#append">append()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="C">C</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#clear">clear()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#convertToFloat">convertToFloat()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessKeyword-class.html">CaselessKeyword</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.CloseMatch-class.html">CloseMatch</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#convertToInteger">convertToInteger()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessLiteral-class.html">CaselessLiteral</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#col">col()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#copy">copy()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CharsNotIn-class.html">CharsNotIn</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Combine-class.html">Combine</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html#copy">copy()</a><br />
-<span class="index-where">(in <a href="pyparsing.Keyword-class.html">Keyword</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#comma_separated_list">comma_separated_list</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#copy">copy()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Each-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.Each-class.html">Each</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#commaSeparatedList">commaSeparatedList</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#copy">copy()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#commonHTMLEntity">commonHTMLEntity</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#copy">copy()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.Or-class.html">Or</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex-class.html">Regex</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#countedArray">countedArray()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#convertToDate">convertToDate()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#cppStyleComment">cppStyleComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#convertToDatetime">convertToDatetime()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#cStyleComment">cStyleComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="D">D</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#dblQuotedString">dblQuotedString</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#delimitedList">delimitedList()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#downcaseTokens">downcaseTokens()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#dblSlashComment">dblSlashComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Dict-class.html">Dict</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#dump">dump()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS">DEFAULT_KEYWORD_CHARS</a><br />
-<span class="index-where">(in <a href="pyparsing.Keyword-class.html">Keyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#dictOf">dictOf()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#downcaseTokens">downcaseTokens()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="E">E</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Each-class.html">Each</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#empty">empty</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#extend">extend()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Empty-class.html">Empty</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="F">F</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#findall">findall()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#fname">fname</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html">Forward</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#finditer">finditer()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#fnumber">fnumber</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#fraction">fraction</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#flags">flags</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.FollowedBy-class.html">FollowedBy</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="G">G</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#get">get()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.GoToColumn-class.html">GoToColumn</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#groupindex">groupindex</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#getName">getName()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Group-class.html">Group</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#groups">groups</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="H">H</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#haskeys">haskeys()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#hexnums">hexnums</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#hex_integer">hex_integer</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#htmlComment">htmlComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="I">I</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#identifier">identifier</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#indentedBlock">indentedBlock()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#ipv4_address">ipv4_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Combine-class.html#ignore">ignore()</a><br />
-<span class="index-where">(in <a href="pyparsing.Combine-class.html">Combine</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#infixNotation">infixNotation()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#ipv6_address">ipv6_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#iso8601_date">iso8601_date</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#ignore">ignore()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#insert">insert()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#iso8601_datetime">iso8601_datetime</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#ignore">ignore()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#integer">integer</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#items">items()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="J">J</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#javaStyleComment">javaStyleComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="K">K</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#keys">keys()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html">Keyword</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="L">L</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#leaveWhitespace">leaveWhitespace()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#line">line()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.LineStart-class.html">LineStart</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.LineEnd-class.html">LineEnd</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#lineStart">lineStart</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#lineEnd">lineEnd</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Literal-class.html">Literal</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#lineno">lineno()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#locatedExpr">locatedExpr()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="M">M</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#mac_address">mac_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#match">match()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#matchPreviousExpr">matchPreviousExpr()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#makeHTMLTags">makeHTMLTags()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#matches">matches()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#matchPreviousLiteral">matchPreviousLiteral()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#makeXMLTags">makeXMLTags()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html">MatchFirst</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#mixed_integer">mixed_integer</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#markInputline">markInputline()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#matchOnlyAtCol">matchOnlyAtCol()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="N">N</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#nestedExpr">nestedExpr()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.NotAny-class.html">NotAny</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#number">number</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.NoMatch-class.html">NoMatch</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#nullDebugAction">nullDebugAction()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#nums">nums</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="O">O</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#oneOf">oneOf()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#opAssoc">opAssoc</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#originalTextFor">originalTextFor()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.OneOrMore-class.html">OneOrMore</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Optional-class.html">Optional</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.OnlyOnce-class.html">OnlyOnce</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html">Or</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="P">P</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Literal-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#parseString">parseString()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseSyntaxException-class.html">ParseSyntaxException</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.NoMatch-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.NoMatch-class.html">NoMatch</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.NotAny-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.NotAny-class.html">NotAny</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#pattern">pattern</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Optional-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Optional-class.html">Optional</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#pop">pop()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseException-class.html">ParseException</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Or-class.html">Or</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Combine-class.html#postParse">postParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.Combine-class.html">Combine</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html">ParseExpression</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Dict-class.html#postParse">postParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.Dict-class.html">Dict</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseFatalException-class.html">ParseFatalException</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Group-class.html#postParse">postParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.Group-class.html">Group</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#parseFile">parseFile()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.QuotedString-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.QuotedString-class.html">QuotedString</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#postParse">postParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex-class.html">Regex</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Suppress-class.html#postParse">postParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.Suppress-class.html">Suppress</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessKeyword-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.CaselessKeyword-class.html">CaselessKeyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.SkipTo-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.SkipTo-class.html">SkipTo</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#pprint">pprint()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessLiteral-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.CaselessLiteral-class.html">CaselessLiteral</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringEnd-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.StringEnd-class.html">StringEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.GoToColumn-class.html#preParse">preParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.GoToColumn-class.html">GoToColumn</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CharsNotIn-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.CharsNotIn-class.html">CharsNotIn</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringStart-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.StringStart-class.html">StringStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#preParse">preParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CloseMatch-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.CloseMatch-class.html">CloseMatch</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.White-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.White-class.html">White</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#printables">printables</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Each-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Each-class.html">Each</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Word-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Word-class.html">Word</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#punc8bit">punc8bit</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.FollowedBy-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.FollowedBy-class.html">FollowedBy</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordEnd-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.WordEnd-class.html">WordEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#PY_3">PY_3</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.GoToColumn-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.GoToColumn-class.html">GoToColumn</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordStart-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.WordStart-class.html">WordStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html">pyparsing</a></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.Keyword-class.html">Keyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ZeroOrMore-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.ZeroOrMore-class.html">ZeroOrMore</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.LineEnd-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.LineEnd-class.html">LineEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html">ParserElement</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#pythonStyleComment">pythonStyleComment</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.LineStart-class.html#parseImpl">parseImpl()</a><br />
-<span class="index-where">(in <a href="pyparsing.LineStart-class.html">LineStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html">ParseResults</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="Q">Q</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.QuotedString-class.html">QuotedString</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#quotedString">quotedString</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="R">R</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#real">real</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#replaceHTMLEntity">replaceHTMLEntity()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#restOfLine">restOfLine</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.RecursiveGrammarException-class.html">RecursiveGrammarException</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#replaceWith">replaceWith()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#runTests">runTests()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex-class.html">Regex</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.OnlyOnce-class.html#reset">reset()</a><br />
-<span class="index-where">(in <a href="pyparsing.OnlyOnce-class.html">OnlyOnce</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#removeQuotes">removeQuotes()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#resetCache">resetCache()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="S">S</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#scanner">scanner()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#streamline">streamline()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#scanString">scanString()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringEnd-class.html">StringEnd</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#sci_real">sci_real</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#stringEnd">stringEnd</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#search">search()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#sglQuotedString">sglQuotedString</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringStart-class.html">StringStart</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#searchString">searchString()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#signed_integer">signed_integer</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#stringStart">stringStart</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setBreak">setBreak()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#singleArgBuiltins">singleArgBuiltins</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#stripHTMLTags">stripHTMLTags()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setDebug">setDebug()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.SkipTo-class.html">SkipTo</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#sub">sub()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#split">split()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#subn">subn()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html#setDefaultKeywordChars">setDefaultKeywordChars()</a><br />
-<span class="index-where">(in <a href="pyparsing.Keyword-class.html">Keyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#split">split()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Suppress-class.html">Suppress</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#srange">srange()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#suppress">suppress()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#streamline">streamline()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Suppress-class.html#suppress">suppress()</a><br />
-<span class="index-where">(in <a href="pyparsing.Suppress-class.html">Suppress</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setName">setName()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#system_version">system_version</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#streamline">streamline()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="T">T</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Token-class.html">Token</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#tokenMap">tokenMap()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#transformString">transformString()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.TokenConverter-class.html">TokenConverter</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#traceParseAction">traceParseAction()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#tryParse">tryParse()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="U">U</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#ungroup">ungroup()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#upcaseTokens">upcaseTokens()</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#uuid">uuid</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#unicodeString">unicodeString</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#upcaseTokens">upcaseTokens()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="V">V</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#validate">validate()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#validate">validate()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#values">values()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#validate">validate()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#validate">validate()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="W">W</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.White-class.html">White</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#withClass">withClass()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordStart-class.html">WordStart</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.White-class.html#whiteStrs">whiteStrs</a><br />
-<span class="index-where">(in <a href="pyparsing.White-class.html">White</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Word-class.html">Word</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#withAttribute">withAttribute()</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordEnd-class.html">WordEnd</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="Z">Z</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ZeroOrMore-class.html">ZeroOrMore</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
-</table>
-</td></tr>
-<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="_">_</a></h2></td>
-<td valign="top">
-<table class="link-index" width="100%" border="1">
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__add__">__add__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Optional-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Optional-class.html">Optional</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__add__">__add__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex-class.html">Regex</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__and__">__and__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.QuotedString-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.QuotedString-class.html">QuotedString</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Suppress-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Suppress-class.html">Suppress</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__bool__">__bool__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.RecursiveGrammarException-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.RecursiveGrammarException-class.html">RecursiveGrammarException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.White-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.White-class.html">White</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.OnlyOnce-class.html#__call__">__call__()</a><br />
-<span class="index-where">(in <a href="pyparsing.OnlyOnce-class.html">OnlyOnce</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex-class.html">Regex</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Word-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Word-class.html">Word</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__call__">__call__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.SkipTo-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.SkipTo-class.html">SkipTo</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__contains__">__contains__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringEnd-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.StringEnd-class.html">StringEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.CharsNotIn-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.CharsNotIn-class.html">CharsNotIn</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#__copy__">__copy__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.StringStart-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.StringStart-class.html">StringStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Each-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Each-class.html">Each</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Regex.compiledREtype-class.html#__deepcopy__">__deepcopy__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex.compiledREtype-class.html">compiledREtype</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Token-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Token-class.html">Token</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__delitem__">__delitem__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.TokenConverter-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.TokenConverter-class.html">TokenConverter</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#__dir__">__dir__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.White-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.White-class.html">White</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.NotAny-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.NotAny-class.html">NotAny</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__dir__">__dir__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Word-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Word-class.html">Word</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.OneOrMore-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.OneOrMore-class.html">OneOrMore</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#__doc__">__doc__</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordEnd-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.WordEnd-class.html">WordEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Optional-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Optional-class.html">Optional</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__eq__">__eq__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.WordStart-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.WordStart-class.html">WordStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Or-class.html">Or</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#__getattr__">__getattr__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ZeroOrMore-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ZeroOrMore-class.html">ZeroOrMore</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__getattr__">__getattr__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__invert__">__invert__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#__ior__">__ior__()</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__getitem__">__getitem__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__iter__">__iter__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__getnewargs__">__getnewargs__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html#__ixor__">__ixor__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Or-class.html">Or</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__getstate__">__getstate__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__len__">__len__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.QuotedString-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.QuotedString-class.html">QuotedString</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__hash__">__hash__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#__lshift__">__lshift__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.RecursiveGrammarException-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.RecursiveGrammarException-class.html">RecursiveGrammarException</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#__iadd__">__iadd__()</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__mul__">__mul__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Regex-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Regex-class.html">Regex</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__iadd__">__iadd__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__ne__">__ne__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Word-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Word-class.html">Word</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#__ilshift__">__ilshift__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__new__">__new__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ZeroOrMore-class.html#__str__">__str__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ZeroOrMore-class.html">ZeroOrMore</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__or__">__or__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__sub__">__sub__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessKeyword-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.CaselessKeyword-class.html">CaselessKeyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#__package__">__package__</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#__versionTime__">__versionTime__</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CaselessLiteral-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.CaselessLiteral-class.html">CaselessLiteral</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__radd__">__radd__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__xor__">__xor__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CharsNotIn-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.CharsNotIn-class.html">CharsNotIn</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__radd__">__radd__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_bslash">_bslash</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.CloseMatch-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.CloseMatch-class.html">CloseMatch</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__rand__">__rand__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_charRange">_charRange</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Combine-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Combine-class.html">Combine</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#__repr__">__repr__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_commasepitem">_commasepitem</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Dict-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Dict-class.html">Dict</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__repr__">__repr__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_commasepitem">_commasepitem</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Each-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Each-class.html">Each</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__repr__">__repr__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_escapedHexChar">_escapedHexChar</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Empty-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Empty-class.html">Empty</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__req__">__req__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_escapedOctChar">_escapedOctChar</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.FollowedBy-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.FollowedBy-class.html">FollowedBy</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__reversed__">__reversed__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_escapedPunc">_escapedPunc</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Forward-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Forward-class.html">Forward</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_full_ipv6_address">_full_ipv6_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.GoToColumn-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.GoToColumn-class.html">GoToColumn</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__rne__">__rne__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_html_stripper">_html_stripper</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Group-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Group-class.html">Group</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__ror__">__ror__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_htmlEntityMap">_htmlEntityMap</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Keyword-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Keyword-class.html">Keyword</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_ipv6_part">_ipv6_part</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.LineEnd-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.LineEnd-class.html">LineEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#_iteritems">_iteritems()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.LineStart-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.LineStart-class.html">LineStart</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__setitem__">__setitem__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#_iterkeys">_iterkeys()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Literal-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#__setstate__">__setstate__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParseResults-class.html#_itervalues">_itervalues()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseResults-class.html">ParseResults</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.And-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.And-class.html">And</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_MAX_INT">_MAX_INT</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.NoMatch-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.NoMatch-class.html">NoMatch</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Combine-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Combine-class.html">Combine</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_mixed_ipv6_address">_mixed_ipv6_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.NotAny-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.NotAny-class.html">NotAny</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Dict-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Dict-class.html">Dict</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_optionalNotMatched">_optionalNotMatched</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.OnlyOnce-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.OnlyOnce-class.html">OnlyOnce</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Group-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Group-class.html">Group</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.ParserElement-class.html#_packratEnabled">_packratEnabled</a><br />
-<span class="index-where">(in <a href="pyparsing.ParserElement-class.html">ParserElement</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Optional-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Optional-class.html">Optional</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.LineEnd-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.LineEnd-class.html">LineEnd</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_reBracketExpr">_reBracketExpr</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.Or-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.Or-class.html">Or</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.Literal-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.pyparsing_common-class.html#_short_ipv6_address">_short_ipv6_address</a><br />
-<span class="index-where">(in <a href="pyparsing.pyparsing_common-class.html">pyparsing_common</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseBaseException-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.MatchFirst-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.MatchFirst-class.html">MatchFirst</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing-module.html#_singleChar">_singleChar</a><br />
-<span class="index-where">(in <a href="pyparsing-module.html">pyparsing</a>)</span></td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseElementEnhance-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.NotAny-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.NotAny-class.html">NotAny</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-<tr>
-<td width="33%" class="link-index"><a href="pyparsing.ParseExpression-class.html#__init__">__init__()</a><br />
-<span class="index-where">(in <a href="pyparsing.ParseExpression-class.html">ParseExpression</a>)</span></td>
-<td width="33%" class="link-index"><a href="pyparsing.OneOrMore-class.html#__slotnames__">__slotnames__</a><br />
-<span class="index-where">(in <a href="pyparsing.OneOrMore-class.html">OneOrMore</a>)</span></td>
-<td width="33%" class="link-index"> </td>
-</tr>
-</table>
-</td></tr>
-</table>
-<br /><br /><!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Indices </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="iso-8859-1"?>\r
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"\r
- "DTD/xhtml1-frameset.dtd">\r
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\r
-<head>\r
- <title> pyparsing </title>\r
-</head>\r
-<frameset cols="20%,80%">\r
- <frameset rows="30%,70%">\r
- <frame src="toc.html" name="moduleListFrame"\r
- id="moduleListFrame" />\r
- <frame src="toc-everything.html" name="moduleFrame"\r
- id="moduleFrame" />\r
- </frameset>\r
- <frame src="pyparsing-module.html" name="mainFrame" id="mainFrame" />\r
-</frameset>\r
-</html>\r
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Module Hierarchy</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Trees </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%"> </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="module-tree.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<center><b>
- [ <a href="module-tree.html">Module Hierarchy</a>
- | <a href="class-tree.html">Class Hierarchy</a> ]
-</b></center><br />
-<h1 class="epydoc">Module Hierarchy</h1>
-<ul class="nomargin-top">
- <li> <strong class="uidlink"><a href="pyparsing-module.html">pyparsing</a></strong>: <em class="summary">pyparsing module - Classes and methods to define and execute
- parsing grammars</em> </li>
-</ul>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Trees </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Home </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- Module pyparsing
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing-module.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== MODULE DESCRIPTION ==================== -->
-<h1 class="epydoc">Module pyparsing</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html">source code</a></span></p>
-<p>pyparsing module - Classes and methods to define and execute parsing
- grammars</p>
- <p>The pyparsing module is an alternative approach to creating and
- executing simple grammars, vs. the traditional lex/yacc approach, or the
- use of regular expressions. With pyparsing, you don't need to learn a
- new syntax for defining grammars or matching expressions - the parsing
- module provides a library of classes that you use to construct the
- grammar directly in Python.</p>
- <p>Here is a program to parse "Hello, World!" (or any greeting
- of the form <code>"<salutation>,
- <addressee>!"</code>), built up using <a
- href="pyparsing.Word-class.html" class="link">Word</a>, <a
- href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a>, and <a
- href="pyparsing.And-class.html" class="link">And</a> elements (<a
- href="pyparsing.ParserElement-class.html#__add__" class="link">'+'</a>
- operator gives <a href="pyparsing.And-class.html" class="link">And</a>
- expressions, strings are auto-converted to <a
- href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a> expressions):</p>
-<pre class="literalblock">
- from pyparsing import Word, alphas
-
- # define grammar of a greeting
- greet = Word(alphas) + "," + Word(alphas) + "!"
-
- hello = "Hello, World!"
- print (hello, "->", greet.parseString(hello))
-</pre>
- <p>The program outputs the following:</p>
-<pre class="literalblock">
- Hello, World! -> ['Hello', ',', 'World', '!']
-</pre>
- <p>The Python representation of the grammar is quite readable, owing to
- the self-explanatory class names, and the use of '+', '|' and '^'
- operators.</p>
- <p>The <a href="pyparsing.ParseResults-class.html"
- class="link">ParseResults</a> object returned from <a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link">ParserElement.parseString</a> can be accessed as a nested
- list, a dictionary, or an object with named attributes.</p>
- <p>The pyparsing module handles some of the problems that are typically
- vexing when writing text parsers:</p>
- <ul>
- <li>
- extra or missing whitespace (the above program will also handle
- "Hello,World!", "Hello , World !", etc.)
- </li>
- <li>
- quoted strings
- </li>
- <li>
- embedded comments
- </li>
- </ul>
-
-<hr />
-<div class="fields"> <p><strong>Version:</strong>
- 2.2.0
- </p>
- <p><strong>Author:</strong>
- Paul McGuire <ptmcg@users.sourceforge.net>
- </p>
-</div><!-- ==================== CLASSES ==================== -->
-<a name="section-Classes"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Classes</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseBaseException-class.html" class="summary-name">ParseBaseException</a><br />
- base exception class for all parsing runtime exceptions
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseException-class.html" class="summary-name">ParseException</a><br />
- Exception thrown when parse expressions don't match class;
- supported attributes by name are:
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseFatalException-class.html" class="summary-name">ParseFatalException</a><br />
- user-throwable exception thrown when inconsistent parse content is
- found; stops all parsing immediately
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseSyntaxException-class.html" class="summary-name">ParseSyntaxException</a><br />
- just like <a href="pyparsing.ParseFatalException-class.html"
- class="link">ParseFatalException</a>, but thrown internally when an
- ErrorStop ('-' operator) indicates that parsing is to stop
- immediately because an unbacktrackable syntax error has been found
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.RecursiveGrammarException-class.html" class="summary-name">RecursiveGrammarException</a><br />
- exception thrown by <a
- href="pyparsing.ParserElement-class.html#validate"
- class="link">ParserElement.validate</a> if the grammar could be
- improperly recursive
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseResults-class.html" class="summary-name">ParseResults</a><br />
- Structured parse results, to provide multiple means of access to
- the parsed data:
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParserElement-class.html" class="summary-name">ParserElement</a><br />
- Abstract base level parser element class.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Token-class.html" class="summary-name">Token</a><br />
- Abstract <code>ParserElement</code> subclass, for defining atomic
- matching patterns.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Empty-class.html" class="summary-name">Empty</a><br />
- An empty token, will always match.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.NoMatch-class.html" class="summary-name">NoMatch</a><br />
- A token that will never match.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Literal-class.html" class="summary-name">Literal</a><br />
- Token to exactly match a specified string.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Keyword-class.html" class="summary-name">Keyword</a><br />
- Token to exactly match a specified string as a keyword, that is, it
- must be immediately followed by a non-keyword character.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.CaselessLiteral-class.html" class="summary-name">CaselessLiteral</a><br />
- Token to match a specified string, ignoring case of letters.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.CaselessKeyword-class.html" class="summary-name">CaselessKeyword</a><br />
- Caseless version of <a href="pyparsing.Keyword-class.html"
- class="link">Keyword</a>.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.CloseMatch-class.html" class="summary-name">CloseMatch</a><br />
- A variation on <a href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a> which matches
- "close" matches, that is, strings with at most 'n'
- mismatching characters.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Word-class.html" class="summary-name">Word</a><br />
- Token for matching words composed of allowed character sets.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Regex-class.html" class="summary-name">Regex</a><br />
- Token for matching strings that match a given regular expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.QuotedString-class.html" class="summary-name">QuotedString</a><br />
- Token for matching strings that are delimited by quoting
- characters.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.CharsNotIn-class.html" class="summary-name">CharsNotIn</a><br />
- Token for matching words composed of characters <i>not</i> in a
- given set (will include whitespace in matched characters if not
- listed in the provided exclusion set - see example).
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.White-class.html" class="summary-name">White</a><br />
- Special matching class for matching whitespace.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.GoToColumn-class.html" class="summary-name">GoToColumn</a><br />
- Token to advance to a specific column of input text; useful for
- tabular report scraping.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.LineStart-class.html" class="summary-name">LineStart</a><br />
- Matches if current position is at the beginning of a line within
- the parse string
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.LineEnd-class.html" class="summary-name">LineEnd</a><br />
- Matches if current position is at the end of a line within the
- parse string
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.StringStart-class.html" class="summary-name">StringStart</a><br />
- Matches if current position is at the beginning of the parse string
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.StringEnd-class.html" class="summary-name">StringEnd</a><br />
- Matches if current position is at the end of the parse string
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.WordStart-class.html" class="summary-name">WordStart</a><br />
- Matches if the current position is at the beginning of a Word, and
- is not preceded by any character in a given set of
- <code>wordChars</code> (default=<code>printables</code>).
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.WordEnd-class.html" class="summary-name">WordEnd</a><br />
- Matches if the current position is at the end of a Word, and is not
- followed by any character in a given set of <code>wordChars</code>
- (default=<code>printables</code>).
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseExpression-class.html" class="summary-name">ParseExpression</a><br />
- Abstract subclass of ParserElement, for combining and
- post-processing parsed tokens.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.And-class.html" class="summary-name">And</a><br />
- Requires all given <code>ParseExpression</code>s to be found in the
- given order.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Or-class.html" class="summary-name">Or</a><br />
- Requires that at least one <code>ParseExpression</code> is found.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.MatchFirst-class.html" class="summary-name">MatchFirst</a><br />
- Requires that at least one <code>ParseExpression</code> is found.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Each-class.html" class="summary-name">Each</a><br />
- Requires all given <code>ParseExpression</code>s to be found, but
- in any order.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ParseElementEnhance-class.html" class="summary-name">ParseElementEnhance</a><br />
- Abstract subclass of <code>ParserElement</code>, for combining and
- post-processing parsed tokens.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.FollowedBy-class.html" class="summary-name">FollowedBy</a><br />
- Lookahead matching of the given parse expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.NotAny-class.html" class="summary-name">NotAny</a><br />
- Lookahead to disallow matching with the given parse expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.OneOrMore-class.html" class="summary-name">OneOrMore</a><br />
- Repetition of one or more of the given expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.ZeroOrMore-class.html" class="summary-name">ZeroOrMore</a><br />
- Optional repetition of zero or more of the given expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Optional-class.html" class="summary-name">Optional</a><br />
- Optional matching of the given expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.SkipTo-class.html" class="summary-name">SkipTo</a><br />
- Token for skipping over all undefined text until the matched
- expression is found.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Forward-class.html" class="summary-name">Forward</a><br />
- Forward declaration of an expression to be defined later - used for
- recursive grammars, such as algebraic infix notation.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.TokenConverter-class.html" class="summary-name">TokenConverter</a><br />
- Abstract subclass of <code>ParseExpression</code>, for converting
- parsed results.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Combine-class.html" class="summary-name">Combine</a><br />
- Converter to concatenate all matching tokens to a single string.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Group-class.html" class="summary-name">Group</a><br />
- Converter to return the matched tokens as a list - useful for
- returning tokens of <code><a href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a></code> and <code><a
- href="pyparsing.OneOrMore-class.html"
- class="link">OneOrMore</a></code> expressions.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Dict-class.html" class="summary-name">Dict</a><br />
- Converter to return a repetitive expression as a list, but also as
- a dictionary.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Suppress-class.html" class="summary-name">Suppress</a><br />
- Converter for ignoring the results of a parsed expression.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.OnlyOnce-class.html" class="summary-name">OnlyOnce</a><br />
- Wrapper for parse actions, to ensure they are only called once.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.pyparsing_common-class.html" class="summary-name">pyparsing_common</a><br />
- Here are some common low-level expressions that may be useful in
- jump-starting parser development:
- </td>
- </tr>
-</table>
-<!-- ==================== FUNCTIONS ==================== -->
-<a name="section-Functions"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Functions</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#col" class="summary-sig-name">col</a>(<span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">strg</span>)</span><br />
- Returns current column within a string, counting newlines as line
- separators.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#col">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#lineno" class="summary-sig-name">lineno</a>(<span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">strg</span>)</span><br />
- Returns current line number within a string, counting newlines as
- line separators.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#lineno">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="line"></a><span class="summary-sig-name">line</span>(<span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">strg</span>)</span><br />
- Returns the line of text containing loc within a string, counting
- newlines as line separators.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#line">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="nullDebugAction"></a><span class="summary-sig-name">nullDebugAction</span>(<span class="summary-sig-arg">*args</span>)</span><br />
- 'Do-nothing' debug action, to suppress debugging output during
- parsing.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#nullDebugAction">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#traceParseAction" class="summary-sig-name">traceParseAction</a>(<span class="summary-sig-arg">f</span>)</span><br />
- Decorator for debugging parse actions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#traceParseAction">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#delimitedList" class="summary-sig-name">delimitedList</a>(<span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">delim</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">,</code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">combine</span>=<span class="summary-sig-default">False</span>)</span><br />
- Helper to define a delimited list of expressions - the delimiter
- defaults to ','.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#delimitedList">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#countedArray" class="summary-sig-name">countedArray</a>(<span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">intExpr</span>=<span class="summary-sig-default">None</span>)</span><br />
- Helper to define a counted list of expressions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#countedArray">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#matchPreviousLiteral" class="summary-sig-name">matchPreviousLiteral</a>(<span class="summary-sig-arg">expr</span>)</span><br />
- Helper to define an expression that is indirectly defined from the
- tokens matched in a previous expression, that is, it looks for a
- 'repeat' of a previous expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#matchPreviousLiteral">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#matchPreviousExpr" class="summary-sig-name">matchPreviousExpr</a>(<span class="summary-sig-arg">expr</span>)</span><br />
- Helper to define an expression that is indirectly defined from the
- tokens matched in a previous expression, that is, it looks for a
- 'repeat' of a previous expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#matchPreviousExpr">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#oneOf" class="summary-sig-name">oneOf</a>(<span class="summary-sig-arg">strs</span>,
- <span class="summary-sig-arg">caseless</span>=<span class="summary-sig-default">False</span>,
- <span class="summary-sig-arg">useRegex</span>=<span class="summary-sig-default">True</span>)</span><br />
- Helper to quickly define a set of alternative Literals, and makes
- sure to do longest-first testing when there is a conflict, regardless
- of the input order, but returns a <code><a
- href="pyparsing.MatchFirst-class.html"
- class="link">MatchFirst</a></code> for best performance.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#oneOf">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#dictOf" class="summary-sig-name">dictOf</a>(<span class="summary-sig-arg">key</span>,
- <span class="summary-sig-arg">value</span>)</span><br />
- Helper to easily and clearly define a dictionary by specifying the
- respective patterns for the key and value.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#dictOf">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#originalTextFor" class="summary-sig-name">originalTextFor</a>(<span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">asString</span>=<span class="summary-sig-default">True</span>)</span><br />
- Helper to return the original, untokenized text for a given
- expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#originalTextFor">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="ungroup"></a><span class="summary-sig-name">ungroup</span>(<span class="summary-sig-arg">expr</span>)</span><br />
- Helper to undo pyparsing's default grouping of And expressions, even
- if all but one are non-empty.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ungroup">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#locatedExpr" class="summary-sig-name">locatedExpr</a>(<span class="summary-sig-arg">expr</span>)</span><br />
- Helper to decorate a returned token with its starting and ending
- locations in the input string.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#locatedExpr">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#srange" class="summary-sig-name">srange</a>(<span class="summary-sig-arg">s</span>)</span><br />
- Helper to easily define string ranges for use in Word construction.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#srange">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="matchOnlyAtCol"></a><span class="summary-sig-name">matchOnlyAtCol</span>(<span class="summary-sig-arg">n</span>)</span><br />
- Helper method for defining parse actions that require matching at a
- specific column in the input text.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#matchOnlyAtCol">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#replaceWith" class="summary-sig-name">replaceWith</a>(<span class="summary-sig-arg">replStr</span>)</span><br />
- Helper method for common parse actions that simply return a literal
- value.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#replaceWith">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#removeQuotes" class="summary-sig-name">removeQuotes</a>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- Helper parse action for removing quotation marks from parsed quoted
- strings.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#removeQuotes">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#tokenMap" class="summary-sig-name">tokenMap</a>(<span class="summary-sig-arg">func</span>,
- <span class="summary-sig-arg">*args</span>)</span><br />
- Helper to define a parse action by mapping a function to all elements
- of a ParseResults list.If any additional args are passed, they are
- forwarded to the given function as additional arguments after the
- token, as in <code>hex_integer =
- Word(hexnums).setParseAction(tokenMap(int, 16))</code>, which will
- convert the parsed data to an integer using base 16.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#tokenMap">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#upcaseTokens" class="summary-sig-name">upcaseTokens</a>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- (Deprecated) Helper parse action to convert tokens to upper case.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#upcaseTokens">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#downcaseTokens" class="summary-sig-name">downcaseTokens</a>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- (Deprecated) Helper parse action to convert tokens to lower case.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#downcaseTokens">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#makeHTMLTags" class="summary-sig-name">makeHTMLTags</a>(<span class="summary-sig-arg">tagStr</span>)</span><br />
- Helper to construct opening and closing tag expressions for HTML,
- given a tag name.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#makeHTMLTags">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#makeXMLTags" class="summary-sig-name">makeXMLTags</a>(<span class="summary-sig-arg">tagStr</span>)</span><br />
- Helper to construct opening and closing tag expressions for XML,
- given a tag name.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#makeXMLTags">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#withAttribute" class="summary-sig-name">withAttribute</a>(<span class="summary-sig-arg">*args</span>,
- <span class="summary-sig-arg">**attrDict</span>)</span><br />
- Helper to create a validating parse action to be used with start tags
- created with <code><a href="pyparsing-module.html#makeXMLTags"
- class="link">makeXMLTags</a></code> or <code><a
- href="pyparsing-module.html#makeHTMLTags"
- class="link">makeHTMLTags</a></code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#withAttribute">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#withClass" class="summary-sig-name">withClass</a>(<span class="summary-sig-arg">classname</span>,
- <span class="summary-sig-arg">namespace</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>)</span><br />
- Simplified version of <code><a
- href="pyparsing-module.html#withAttribute"
- class="link">withAttribute</a></code> when matching on a div class -
- made difficult because <code>class</code> is a reserved word in
- Python.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#withClass">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#infixNotation" class="summary-sig-name">infixNotation</a>(<span class="summary-sig-arg">baseExpr</span>,
- <span class="summary-sig-arg">opList</span>,
- <span class="summary-sig-arg">lpar</span>=<span class="summary-sig-default">Suppress:("(")</span>,
- <span class="summary-sig-arg">rpar</span>=<span class="summary-sig-default">Suppress:(")")</span>)</span><br />
- Helper method for constructing grammars of expressions made up of
- operators working in a precedence hierarchy.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#infixNotation">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#operatorPrecedence" class="summary-sig-name">operatorPrecedence</a>(<span class="summary-sig-arg">baseExpr</span>,
- <span class="summary-sig-arg">opList</span>,
- <span class="summary-sig-arg">lpar</span>=<span class="summary-sig-default">Suppress:("(")</span>,
- <span class="summary-sig-arg">rpar</span>=<span class="summary-sig-default">Suppress:(")")</span>)</span><br />
- (Deprecated) Former name of <code><a
- href="pyparsing-module.html#infixNotation"
- class="link">infixNotation</a></code>, will be dropped in a future
- release.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#infixNotation">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#nestedExpr" class="summary-sig-name">nestedExpr</a>(<span class="summary-sig-arg">opener</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">(</code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">closer</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">)</code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">content</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">ignoreExpr</span>=<span class="summary-sig-default">quotedString using single or double quotes</span>)</span><br />
- Helper method for defining nested lists enclosed in opening and
- closing delimiters ("(" and ")" are the default).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#nestedExpr">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing-module.html#indentedBlock" class="summary-sig-name">indentedBlock</a>(<span class="summary-sig-arg">blockStatementExpr</span>,
- <span class="summary-sig-arg">indentStack</span>,
- <span class="summary-sig-arg">indent</span>=<span class="summary-sig-default">True</span>)</span><br />
- Helper method for defining space-delimited indentation blocks, such
- as those used to define block statements in Python source code.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#indentedBlock">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="replaceHTMLEntity"></a><span class="summary-sig-name">replaceHTMLEntity</span>(<span class="summary-sig-arg">t</span>)</span><br />
- Helper parser action to replace common HTML entities with their
- special characters</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#replaceHTMLEntity">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== VARIABLES ==================== -->
-<a name="section-Variables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="alphas"></a><span class="summary-name">alphas</span> = <code title="'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"><code class="variable-quote">'</code><code class="variable-string">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz</code><code class="variable-quote">'</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="nums"></a><span class="summary-name">nums</span> = <code title="'0123456789'"><code class="variable-quote">'</code><code class="variable-string">0123456789</code><code class="variable-quote">'</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="hexnums"></a><span class="summary-name">hexnums</span> = <code title="'0123456789ABCDEFabcdef'"><code class="variable-quote">'</code><code class="variable-string">0123456789ABCDEFabcdef</code><code class="variable-quote">'</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing-module.html#alphanums" class="summary-name">alphanums</a> = <code title="'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'"><code class="variable-quote">'</code><code class="variable-string">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvw</code><code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing-module.html#printables" class="summary-name">printables</a> = <code title="'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\\
-'()*+,-./:;<=>?@[\\]^_`{|}~'"><code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKL</code><code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="empty"></a><span class="summary-name">empty</span> = <code title="empty">empty</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="lineStart"></a><span class="summary-name">lineStart</span> = <code title="lineStart">lineStart</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="lineEnd"></a><span class="summary-name">lineEnd</span> = <code title="lineEnd">lineEnd</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="stringStart"></a><span class="summary-name">stringStart</span> = <code title="stringStart">stringStart</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="stringEnd"></a><span class="summary-name">stringEnd</span> = <code title="stringEnd">stringEnd</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="opAssoc"></a><span class="summary-name">opAssoc</span> = <code title="_Constants()">_Constants()</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="dblQuotedString"></a><span class="summary-name">dblQuotedString</span> = <code title="string enclosed in double quotes">string enclosed in double quotes</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="sglQuotedString"></a><span class="summary-name">sglQuotedString</span> = <code title="string enclosed in single quotes">string enclosed in single quotes</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="quotedString"></a><span class="summary-name">quotedString</span> = <code title="quotedString using single or double quotes">quotedString using single or double quotes</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="unicodeString"></a><span class="summary-name">unicodeString</span> = <code title="unicode string literal">unicode string literal</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing-module.html#alphas8bit" class="summary-name">alphas8bit</a> = <code title="u'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'"><code class="variable-quote">u'</code><code class="variable-string">ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîï</code><code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="punc8bit"></a><span class="summary-name">punc8bit</span> = <code title="u'¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿×÷'"><code class="variable-quote">u'</code><code class="variable-string">¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿×÷</code><code class="variable-quote">'</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="commonHTMLEntity"></a><span class="summary-name">commonHTMLEntity</span> = <code title="common HTML entity">common HTML entity</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="cStyleComment"></a><span class="summary-name">cStyleComment</span> = <code title="C style comment">C style comment</code><br />
- Comment of the form <code>/* ... */</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="htmlComment"></a><span class="summary-name">htmlComment</span> = <code title="HTML comment">HTML comment</code><br />
- Comment of the form <code><!-- ... --></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="restOfLine"></a><span class="summary-name">restOfLine</span> = <code title="rest of line">rest of line</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="dblSlashComment"></a><span class="summary-name">dblSlashComment</span> = <code title="// comment">// comment</code><br />
- Comment of the form <code>// ... (to end of line)</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="cppStyleComment"></a><span class="summary-name">cppStyleComment</span> = <code title="C++ style comment">C++ style comment</code><br />
- Comment of either form <code><a
- href="pyparsing-module.html#cStyleComment"
- class="link">cStyleComment</a></code> or <code><a
- href="pyparsing-module.html#dblSlashComment"
- class="link">dblSlashComment</a></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="javaStyleComment"></a><span class="summary-name">javaStyleComment</span> = <code title="C++ style comment">C++ style comment</code><br />
- Same as <code><a href="pyparsing-module.html#cppStyleComment"
- class="link">cppStyleComment</a></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="pythonStyleComment"></a><span class="summary-name">pythonStyleComment</span> = <code title="Python style comment">Python style comment</code><br />
- Comment of the form <code># ... (to end of line)</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing-module.html#commaSeparatedList" class="summary-name">commaSeparatedList</a> = <code title="commaSeparatedList">commaSeparatedList</code><br />
- (Deprecated) Predefined expression of 1 or more printable words or
- quoted strings, separated by commas.
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="anyCloseTag"></a><span class="summary-name">anyCloseTag</span> = <code title="</any tag>"></any tag></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="anyOpenTag"></a><span class="summary-name">anyOpenTag</span> = <code title="<any tag>"><any tag></code>
- </td>
- </tr>
-</table>
-<!-- ==================== FUNCTION DETAILS ==================== -->
-<a name="section-FunctionDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Function Details</span></td>
-</tr>
-</table>
-<a name="col"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">col</span>(<span class="sig-arg">loc</span>,
- <span class="sig-arg">strg</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#col">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns current column within a string, counting newlines as line
- separators. The first column is number 1.</p>
- <p>Note: the default parsing behavior is to expand tabs in the input
- string before starting the parsing process. See <a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link"><i>ParserElement.parseString</i></a> for more information on
- parsing strings containing <code><TAB></code>s, and suggested
- methods to maintain a consistent view of the parsed string, the parse
- location, and line and column positions within the parsed string.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="lineno"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">lineno</span>(<span class="sig-arg">loc</span>,
- <span class="sig-arg">strg</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#lineno">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns current line number within a string, counting newlines as line
- separators. The first line is number 1.</p>
- <p>Note: the default parsing behavior is to expand tabs in the input
- string before starting the parsing process. See <a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link"><i>ParserElement.parseString</i></a> for more information on
- parsing strings containing <code><TAB></code>s, and suggested
- methods to maintain a consistent view of the parsed string, the parse
- location, and line and column positions within the parsed string.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="traceParseAction"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">traceParseAction</span>(<span class="sig-arg">f</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#traceParseAction">source code</a></span>
- </td>
- </tr></table>
-
- <p>Decorator for debugging parse actions.</p>
- <p>When the parse action is called, this decorator will print
- <code>">> entering
- <i>method-name</i>(line:<i>current_source_line</i>,
- <i>parse_location</i>, <i>matched_tokens</i>)".</code> When the
- parse action completes, the decorator will print
- <code>"<<"</code> followed by the returned value, or any
- exception that the parse action raised.</p>
- <p>Example:</p>
-<pre class="literalblock">
- wd = Word(alphas)
-
- @traceParseAction
- def remove_duplicate_chars(tokens):
- return ''.join(sorted(set(''.join(tokens)))
-
- wds = OneOrMore(wd).setParseAction(remove_duplicate_chars)
- print(wds.parseString("slkdjs sld sldd sdlf sdljf"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- >>entering remove_duplicate_chars(line: 'slkdjs sld sldd sdlf sdljf', 0, (['slkdjs', 'sld', 'sldd', 'sdlf', 'sdljf'], {}))
- <<leaving remove_duplicate_chars (ret: 'dfjkls')
- ['dfjkls']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="delimitedList"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">delimitedList</span>(<span class="sig-arg">expr</span>,
- <span class="sig-arg">delim</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">,</code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">combine</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#delimitedList">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to define a delimited list of expressions - the delimiter
- defaults to ','. By default, the list elements and delimiters can have
- intervening whitespace, and comments, but this can be overridden by
- passing <code>combine=True</code> in the constructor. If
- <code>combine</code> is set to <code>True</code>, the matching tokens are
- returned as a single token string, with the delimiters included;
- otherwise, the matching tokens are returned as a list of tokens, with the
- delimiters suppressed.</p>
- <p>Example:</p>
-<pre class="literalblock">
- delimitedList(Word(alphas)).parseString("aa,bb,cc") # -> ['aa', 'bb', 'cc']
- delimitedList(Word(hexnums), delim=':', combine=True).parseString("AA:BB:CC:DD:EE") # -> ['AA:BB:CC:DD:EE']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="countedArray"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">countedArray</span>(<span class="sig-arg">expr</span>,
- <span class="sig-arg">intExpr</span>=<span class="sig-default">None</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#countedArray">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to define a counted list of expressions. This helper defines a
- pattern of the form:</p>
-<pre class="literalblock">
- integer expr expr expr...
-</pre>
- <p>where the leading integer tells how many expr expressions follow. The
- matched tokens returns the array of expr tokens as a list - the leading
- count token is suppressed.</p>
- <p>If <code>intExpr</code> is specified, it should be a pyparsing
- expression that produces an integer value.</p>
- <p>Example:</p>
-<pre class="literalblock">
- countedArray(Word(alphas)).parseString('2 ab cd ef') # -> ['ab', 'cd']
-
- # in this parser, the leading integer value is given in binary,
- # '10' indicating that 2 values are in the array
- binaryConstant = Word('01').setParseAction(lambda t: int(t[0], 2))
- countedArray(Word(alphas), intExpr=binaryConstant).parseString('10 ab cd ef') # -> ['ab', 'cd']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="matchPreviousLiteral"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">matchPreviousLiteral</span>(<span class="sig-arg">expr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#matchPreviousLiteral">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to define an expression that is indirectly defined from the
- tokens matched in a previous expression, that is, it looks for a 'repeat'
- of a previous expression. For example:</p>
-<pre class="literalblock">
- first = Word(nums)
- second = matchPreviousLiteral(first)
- matchExpr = first + ":" + second
-</pre>
- <p>will match <code>"1:1"</code>, but not
- <code>"1:2"</code>. Because this matches a previous literal,
- will also match the leading <code>"1:1"</code> in
- <code>"1:10"</code>. If this is not desired, use
- <code>matchPreviousExpr</code>. Do <i>not</i> use with packrat parsing
- enabled.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="matchPreviousExpr"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">matchPreviousExpr</span>(<span class="sig-arg">expr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#matchPreviousExpr">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to define an expression that is indirectly defined from the
- tokens matched in a previous expression, that is, it looks for a 'repeat'
- of a previous expression. For example:</p>
-<pre class="literalblock">
- first = Word(nums)
- second = matchPreviousExpr(first)
- matchExpr = first + ":" + second
-</pre>
- <p>will match <code>"1:1"</code>, but not
- <code>"1:2"</code>. Because this matches by expressions, will
- <i>not</i> match the leading <code>"1:1"</code> in
- <code>"1:10"</code>; the expressions are evaluated first, and
- then compared, so <code>"1"</code> is compared with
- <code>"10"</code>. Do <i>not</i> use with packrat parsing
- enabled.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="oneOf"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">oneOf</span>(<span class="sig-arg">strs</span>,
- <span class="sig-arg">caseless</span>=<span class="sig-default">False</span>,
- <span class="sig-arg">useRegex</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#oneOf">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to quickly define a set of alternative Literals, and makes sure
- to do longest-first testing when there is a conflict, regardless of the
- input order, but returns a <code><a
- href="pyparsing.MatchFirst-class.html" class="link">MatchFirst</a></code>
- for best performance.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- strs - a string of space-delimited literals, or a collection of
- string literals
- </li>
- <li>
- caseless - (default=<code>False</code>) - treat all literals as
- caseless
- </li>
- <li>
- useRegex - (default=<code>True</code>) - as an optimization, will
- generate a Regex object; otherwise, will generate a
- <code>MatchFirst</code> object (if <code>caseless=True</code>, or if
- creating a <code>Regex</code> raises an exception)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- comp_oper = oneOf("< = > <= >= !=")
- var = Word(alphas)
- number = Word(nums)
- term = var | number
- comparison_expr = term + comp_oper + term
- print(comparison_expr.searchString("B = 12 AA=23 B<=AA AA>12"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="dictOf"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">dictOf</span>(<span class="sig-arg">key</span>,
- <span class="sig-arg">value</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#dictOf">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to easily and clearly define a dictionary by specifying the
- respective patterns for the key and value. Takes care of defining the
- <code><a href="pyparsing.Dict-class.html" class="link">Dict</a></code>,
- <code><a href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a></code>, and <code><a
- href="pyparsing.Group-class.html" class="link">Group</a></code> tokens in
- the proper order. The key pattern can include delimiting markers or
- punctuation, as long as they are suppressed, thereby leaving the
- significant key text. The value pattern can include named results, so
- that the <code>Dict</code> results can include named token fields.</p>
- <p>Example:</p>
-<pre class="literalblock">
- text = "shape: SQUARE posn: upper left color: light blue texture: burlap"
- attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
- print(OneOrMore(attr_expr).parseString(text).dump())
-
- attr_label = label
- attr_value = Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)
-
- # similar to Dict, but simpler call format
- result = dictOf(attr_label, attr_value).parseString(text)
- print(result.dump())
- print(result['shape'])
- print(result.shape) # object attribute access works too
- print(result.asDict())
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]
- - color: light blue
- - posn: upper left
- - shape: SQUARE
- - texture: burlap
- SQUARE
- SQUARE
- {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'}
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="originalTextFor"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">originalTextFor</span>(<span class="sig-arg">expr</span>,
- <span class="sig-arg">asString</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#originalTextFor">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to return the original, untokenized text for a given
- expression. Useful to restore the parsed fields of an HTML start tag
- into the raw tag text itself, or to revert separate tokens with
- intervening whitespace back to the original matching input text. By
- default, returns astring containing the original parsed text.</p>
- <p>If the optional <code>asString</code> argument is passed as
- <code>False</code>, then the return value is a <code><a
- href="pyparsing.ParseResults-class.html"
- class="link">ParseResults</a></code> containing any results names that
- were originally matched, and a single token containing the original
- matched text from the input string. So if the expression passed to
- <code><a href="pyparsing-module.html#originalTextFor"
- class="link">originalTextFor</a></code> contains expressions with defined
- results names, you must set <code>asString</code> to <code>False</code>
- if you want to preserve those results name values.</p>
- <p>Example:</p>
-<pre class="literalblock">
- src = "this is test <b> bold <i>text</i> </b> normal text "
- for tag in ("b","i"):
- opener,closer = makeHTMLTags(tag)
- patt = originalTextFor(opener + SkipTo(closer) + closer)
- print(patt.searchString(src)[0])
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['<b> bold <i>text</i> </b>']
- ['<i>text</i>']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="locatedExpr"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">locatedExpr</span>(<span class="sig-arg">expr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#locatedExpr">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to decorate a returned token with its starting and ending
- locations in the input string. This helper adds the following results
- names:</p>
- <ul>
- <li>
- locn_start = location where matched expression begins
- </li>
- <li>
- locn_end = location where matched expression ends
- </li>
- <li>
- value = the actual parsed results
- </li>
- </ul>
- <p>Be careful if the input text contains <code><TAB></code>
- characters, you may want to call <code><a
- href="pyparsing.ParserElement-class.html#parseWithTabs"
- class="link">ParserElement.parseWithTabs</a></code></p>
- <p>Example:</p>
-<pre class="literalblock">
- wd = Word(alphas)
- for match in locatedExpr(wd).searchString("ljsdf123lksdjjf123lkkjj1222"):
- print(match)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [[0, 'ljsdf', 5]]
- [[8, 'lksdjjf', 15]]
- [[18, 'lkkjj', 23]]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="srange"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">srange</span>(<span class="sig-arg">s</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#srange">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to easily define string ranges for use in Word construction.
- Borrows syntax from regexp '[]' string range definitions:</p>
-<pre class="literalblock">
- srange("[0-9]") -> "0123456789"
- srange("[a-z]") -> "abcdefghijklmnopqrstuvwxyz"
- srange("[a-z$_]") -> "abcdefghijklmnopqrstuvwxyz$_"
-</pre>
- <p>The input string must be enclosed in []'s, and the returned string is
- the expanded character set joined into a single string. The values
- enclosed in the []'s may be:</p>
- <ul>
- <li>
- a single character
- </li>
- <li>
- an escaped character with a leading backslash (such as
- <code>\-</code> or <code>\]</code>)
- </li>
- <li>
- an escaped hex character with a leading <code>'\x'</code>
- (<code>\x21</code>, which is a <code>'!'</code> character)
- (<code>\0x##</code> is also supported for backwards compatibility)
- </li>
- <li>
- an escaped octal character with a leading <code>'\0'</code>
- (<code>\041</code>, which is a <code>'!'</code> character)
- </li>
- <li>
- a range of any of the above, separated by a dash (<code>'a-z'</code>,
- etc.)
- </li>
- <li>
- any combination of the above (<code>'aeiouy'</code>,
- <code>'a-zA-Z0-9_$'</code>, etc.)
- </li>
- </ul>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="replaceWith"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">replaceWith</span>(<span class="sig-arg">replStr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#replaceWith">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper method for common parse actions that simply return a literal
- value. Especially useful when used with <code><a
- href="pyparsing.ParserElement-class.html#transformString"
- class="link">transformString</a>()</code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- num = Word(nums).setParseAction(lambda toks: int(toks[0]))
- na = oneOf("N/A NA").setParseAction(replaceWith(math.nan))
- term = na | num
-
- OneOrMore(term).parseString("324 234 N/A 234") # -> [324, 234, nan, 234]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="removeQuotes"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">removeQuotes</span>(<span class="sig-arg">s</span>,
- <span class="sig-arg">l</span>,
- <span class="sig-arg">t</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#removeQuotes">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper parse action for removing quotation marks from parsed quoted
- strings.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # by default, quotation marks are included in parsed results
- quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["'Now is the Winter of our Discontent'"]
-
- # use removeQuotes to strip quotation marks from parsed results
- quotedString.setParseAction(removeQuotes)
- quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="tokenMap"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">tokenMap</span>(<span class="sig-arg">func</span>,
- <span class="sig-arg">*args</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#tokenMap">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to define a parse action by mapping a function to all elements
- of a ParseResults list.If any additional args are passed, they are
- forwarded to the given function as additional arguments after the token,
- as in <code>hex_integer = Word(hexnums).setParseAction(tokenMap(int,
- 16))</code>, which will convert the parsed data to an integer using base
- 16.</p>
- <p>Example (compare the last to example in <a
- href="pyparsing.ParserElement-class.html#transformString"
- class="link">ParserElement.transformString</a>:</p>
-<pre class="literalblock">
- hex_ints = OneOrMore(Word(hexnums)).setParseAction(tokenMap(int, 16))
- hex_ints.runTests('''
- 00 11 22 aa FF 0a 0d 1a
- ''')
-
- upperword = Word(alphas).setParseAction(tokenMap(str.upper))
- OneOrMore(upperword).runTests('''
- my kingdom for a horse
- ''')
-
- wd = Word(alphas).setParseAction(tokenMap(str.title))
- OneOrMore(wd).setParseAction(' '.join).runTests('''
- now is the winter of our discontent made glorious summer by this sun of york
- ''')
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- 00 11 22 aa FF 0a 0d 1a
- [0, 17, 34, 170, 255, 10, 13, 26]
-
- my kingdom for a horse
- ['MY', 'KINGDOM', 'FOR', 'A', 'HORSE']
-
- now is the winter of our discontent made glorious summer by this sun of york
- ['Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="upcaseTokens"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">upcaseTokens</span>(<span class="sig-arg">s</span>,
- <span class="sig-arg">l</span>,
- <span class="sig-arg">t</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#upcaseTokens">source code</a></span>
- </td>
- </tr></table>
-
- <p>(Deprecated) Helper parse action to convert tokens to upper case.
- Deprecated in favor of <a
- href="pyparsing.pyparsing_common-class.html#upcaseTokens"
- class="link">pyparsing_common.upcaseTokens</a></p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="downcaseTokens"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">downcaseTokens</span>(<span class="sig-arg">s</span>,
- <span class="sig-arg">l</span>,
- <span class="sig-arg">t</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#downcaseTokens">source code</a></span>
- </td>
- </tr></table>
-
- <p>(Deprecated) Helper parse action to convert tokens to lower case.
- Deprecated in favor of <a
- href="pyparsing.pyparsing_common-class.html#downcaseTokens"
- class="link">pyparsing_common.downcaseTokens</a></p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="makeHTMLTags"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">makeHTMLTags</span>(<span class="sig-arg">tagStr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#makeHTMLTags">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to construct opening and closing tag expressions for HTML,
- given a tag name. Matches tags in either upper or lower case, attributes
- with namespaces and with quoted or unquoted values.</p>
- <p>Example:</p>
-<pre class="literalblock">
- text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'
- # makeHTMLTags returns pyparsing expressions for the opening and closing tags as a 2-tuple
- a,a_end = makeHTMLTags("A")
- link_expr = a + SkipTo(a_end)("link_text") + a_end
-
- for link in link_expr.searchString(text):
- # attributes in the <A> tag (like "href" shown here) are also accessible as named results
- print(link.link_text, '->', link.href)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- pyparsing -> http://pyparsing.wikispaces.com
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="makeXMLTags"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">makeXMLTags</span>(<span class="sig-arg">tagStr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#makeXMLTags">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to construct opening and closing tag expressions for XML, given
- a tag name. Matches tags only in the given upper/lower case.</p>
- <p>Example: similar to <a href="pyparsing-module.html#makeHTMLTags"
- class="link">makeHTMLTags</a></p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="withAttribute"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">withAttribute</span>(<span class="sig-arg">*args</span>,
- <span class="sig-arg">**attrDict</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#withAttribute">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to create a validating parse action to be used with start tags
- created with <code><a href="pyparsing-module.html#makeXMLTags"
- class="link">makeXMLTags</a></code> or <code><a
- href="pyparsing-module.html#makeHTMLTags"
- class="link">makeHTMLTags</a></code>. Use <code>withAttribute</code> to
- qualify a starting tag with a required attribute value, to avoid false
- matches on common tags such as <code><TD></code> or
- <code><DIV></code>.</p>
- <p>Call <code>withAttribute</code> with a series of attribute names and
- values. Specify the list of filter attributes names and values as:</p>
- <ul>
- <li>
- keyword arguments, as in <code>(align="right")</code>, or
- </li>
- <li>
- as an explicit dict with <code>**</code> operator, when an attribute
- name is also a Python reserved word, as in
- <code>**{"class":"Customer",
- "align":"right"}</code>
- </li>
- <li>
- a list of name-value tuples, as in ( ("ns1:class",
- "Customer"), ("ns2:align","right") )
- </li>
- </ul>
- <p>For attribute names with a namespace prefix, you must use the second
- form. Attribute names are matched insensitive to upper/lower case.</p>
- <p>If just testing for <code>class</code> (with or without a namespace),
- use <code><a href="pyparsing-module.html#withClass"
- class="link">withClass</a></code>.</p>
- <p>To verify that the attribute exists, but without specifying a value,
- pass <code>withAttribute.ANY_VALUE</code> as the value.</p>
- <p>Example:</p>
-<pre class="literalblock">
- html = '''
- <div>
- Some text
- <div type="grid">1 4 0 1 0</div>
- <div type="graph">1,3 2,3 1,1</div>
- <div>this has no type</div>
- </div>
-
- '''
- div,div_end = makeHTMLTags("div")
-
- # only match div tag having a type attribute with value "grid"
- div_grid = div().setParseAction(withAttribute(type="grid"))
- grid_expr = div_grid + SkipTo(div | div_end)("body")
- for grid_header in grid_expr.searchString(html):
- print(grid_header.body)
-
- # construct a match with any div tag having a type attribute, regardless of the value
- div_any_type = div().setParseAction(withAttribute(type=withAttribute.ANY_VALUE))
- div_expr = div_any_type + SkipTo(div | div_end)("body")
- for div_header in div_expr.searchString(html):
- print(div_header.body)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- 1 4 0 1 0
-
- 1 4 0 1 0
- 1,3 2,3 1,1
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="withClass"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">withClass</span>(<span class="sig-arg">classname</span>,
- <span class="sig-arg">namespace</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#withClass">source code</a></span>
- </td>
- </tr></table>
-
- <p>Simplified version of <code><a
- href="pyparsing-module.html#withAttribute"
- class="link">withAttribute</a></code> when matching on a div class - made
- difficult because <code>class</code> is a reserved word in Python.</p>
- <p>Example:</p>
-<pre class="literalblock">
- html = '''
- <div>
- Some text
- <div class="grid">1 4 0 1 0</div>
- <div class="graph">1,3 2,3 1,1</div>
- <div>this &lt;div&gt; has no class</div>
- </div>
-
- '''
- div,div_end = makeHTMLTags("div")
- div_grid = div().setParseAction(withClass("grid"))
-
- grid_expr = div_grid + SkipTo(div | div_end)("body")
- for grid_header in grid_expr.searchString(html):
- print(grid_header.body)
-
- div_any_type = div().setParseAction(withClass(withAttribute.ANY_VALUE))
- div_expr = div_any_type + SkipTo(div | div_end)("body")
- for div_header in div_expr.searchString(html):
- print(div_header.body)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- 1 4 0 1 0
-
- 1 4 0 1 0
- 1,3 2,3 1,1
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="infixNotation"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">infixNotation</span>(<span class="sig-arg">baseExpr</span>,
- <span class="sig-arg">opList</span>,
- <span class="sig-arg">lpar</span>=<span class="sig-default">Suppress:("(")</span>,
- <span class="sig-arg">rpar</span>=<span class="sig-default">Suppress:(")")</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#infixNotation">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper method for constructing grammars of expressions made up of
- operators working in a precedence hierarchy. Operators may be unary or
- binary, left- or right-associative. Parse actions can also be attached
- to operator expressions. The generated parser will also recognize the use
- of parentheses to override operator precedences (see example below).</p>
- <p>Note: if you define a deep operator list, you may see performance
- issues when using infixNotation. See <a
- href="pyparsing.ParserElement-class.html#enablePackrat"
- class="link">ParserElement.enablePackrat</a> for a mechanism to
- potentially improve your parser performance.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- baseExpr - expression representing the most basic element for the
- nested
- </li>
- <li>
- opList - list of tuples, one for each operator precedence level in
- the expression grammar; each tuple is of the form (opExpr, numTerms,
- rightLeftAssoc, parseAction), where:
- <ul>
- <li>
- opExpr is the pyparsing expression for the operator; may also be
- a string, which will be converted to a Literal; if numTerms is 3,
- opExpr is a tuple of two expressions, for the two operators
- separating the 3 terms
- </li>
- <li>
- numTerms is the number of terms for this operator (must be 1, 2,
- or 3)
- </li>
- <li>
- rightLeftAssoc is the indicator whether the operator is right or
- left associative, using the pyparsing-defined constants
- <code>opAssoc.RIGHT</code> and <code>opAssoc.LEFT</code>.
- </li>
- <li>
- parseAction is the parse action to be associated with expressions
- matching this operator expression (the parse action tuple member
- may be omitted); if the parse action is passed a tuple or list of
- functions, this is equivalent to calling
- <code>setParseAction(*fn)</code> (<a
- href="pyparsing.ParserElement-class.html#setParseAction"
- class="link">ParserElement.setParseAction</a>)
- </li>
- </ul>
- </li>
- <li>
- lpar - expression for matching left-parentheses
- (default=<code>Suppress('(')</code>)
- </li>
- <li>
- rpar - expression for matching right-parentheses
- (default=<code>Suppress(')')</code>)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- # simple example of four-function arithmetic with ints and variable names
- integer = pyparsing_common.signed_integer
- varname = pyparsing_common.identifier
-
- arith_expr = infixNotation(integer | varname,
- [
- ('-', 1, opAssoc.RIGHT),
- (oneOf('* /'), 2, opAssoc.LEFT),
- (oneOf('+ -'), 2, opAssoc.LEFT),
- ])
-
- arith_expr.runTests('''
- 5+3*6
- (5+3)*6
- -2--11
- ''', fullDump=False)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- 5+3*6
- [[5, '+', [3, '*', 6]]]
-
- (5+3)*6
- [[[5, '+', 3], '*', 6]]
-
- -2--11
- [[['-', 2], '-', ['-', 11]]]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="operatorPrecedence"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">operatorPrecedence</span>(<span class="sig-arg">baseExpr</span>,
- <span class="sig-arg">opList</span>,
- <span class="sig-arg">lpar</span>=<span class="sig-default">Suppress:("(")</span>,
- <span class="sig-arg">rpar</span>=<span class="sig-default">Suppress:(")")</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#infixNotation">source code</a></span>
- </td>
- </tr></table>
-
- <p>(Deprecated) Former name of <code><a
- href="pyparsing-module.html#infixNotation"
- class="link">infixNotation</a></code>, will be dropped in a future
- release.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="nestedExpr"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">nestedExpr</span>(<span class="sig-arg">opener</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">(</code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">closer</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">)</code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">content</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">ignoreExpr</span>=<span class="sig-default">quotedString using single or double quotes</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#nestedExpr">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper method for defining nested lists enclosed in opening and
- closing delimiters ("(" and ")" are the default).</p>
- <p>Parameters:</p>
- <ul>
- <li>
- opener - opening character for a nested list
- (default=<code>"("</code>); can also be a pyparsing
- expression
- </li>
- <li>
- closer - closing character for a nested list
- (default=<code>")"</code>); can also be a pyparsing
- expression
- </li>
- <li>
- content - expression for items within the nested lists
- (default=<code>None</code>)
- </li>
- <li>
- ignoreExpr - expression for ignoring opening and closing delimiters
- (default=<code>quotedString</code>)
- </li>
- </ul>
- <p>If an expression is not provided for the content argument, the nested
- expression will capture all whitespace-delimited content between
- delimiters as a list of separate values.</p>
- <p>Use the <code>ignoreExpr</code> argument to define expressions that
- may contain opening or closing characters that should not be treated as
- opening or closing characters for nesting, such as quotedString or a
- comment expression. Specify multiple expressions using an <code><a
- href="pyparsing.Or-class.html" class="link">Or</a></code> or <code><a
- href="pyparsing.MatchFirst-class.html"
- class="link">MatchFirst</a></code>. The default is <a
- href="pyparsing-module.html#quotedString" class="link">quotedString</a>,
- but if no expressions are to be ignored, then pass <code>None</code> for
- this argument.</p>
- <p>Example:</p>
-<pre class="literalblock">
- data_type = oneOf("void int short long char float double")
- decl_data_type = Combine(data_type + Optional(Word('*')))
- ident = Word(alphas+'_', alphanums+'_')
- number = pyparsing_common.number
- arg = Group(decl_data_type + ident)
- LPAR,RPAR = map(Suppress, "()")
-
- code_body = nestedExpr('{', '}', ignoreExpr=(quotedString | cStyleComment))
-
- c_function = (decl_data_type("type")
- + ident("name")
- + LPAR + Optional(delimitedList(arg), [])("args") + RPAR
- + code_body("body"))
- c_function.ignore(cStyleComment)
-
- source_code = '''
- int is_odd(int x) {
- return (x%2);
- }
-
- int dec_to_hex(char hchar) {
- if (hchar >= '0' && hchar <= '9') {
- return (ord(hchar)-ord('0'));
- } else {
- return (10+ord(hchar)-ord('A'));
- }
- }
- '''
- for func in c_function.searchString(source_code):
- print("%(name)s (%(type)s) args: %(args)s" % func)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- is_odd (int) args: [['int', 'x']]
- dec_to_hex (int) args: [['char', 'hchar']]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="indentedBlock"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">indentedBlock</span>(<span class="sig-arg">blockStatementExpr</span>,
- <span class="sig-arg">indentStack</span>,
- <span class="sig-arg">indent</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#indentedBlock">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper method for defining space-delimited indentation blocks, such as
- those used to define block statements in Python source code.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- blockStatementExpr - expression defining syntax of statement that is
- repeated within the indented block
- </li>
- <li>
- indentStack - list created by caller to manage indentation stack
- (multiple statementWithIndentedBlock expressions within a single
- grammar should share a common indentStack)
- </li>
- <li>
- indent - boolean indicating whether block must be indented beyond the
- the current level; set to False for block of left-most statements
- (default=<code>True</code>)
- </li>
- </ul>
- <p>A valid block must contain at least one
- <code>blockStatement</code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- data = '''
- def A(z):
- A1
- B = 100
- G = A2
- A2
- A3
- B
- def BB(a,b,c):
- BB1
- def BBA():
- bba1
- bba2
- bba3
- C
- D
- def spam(x,y):
- def eggs(z):
- pass
- '''
-
-
- indentStack = [1]
- stmt = Forward()
-
- identifier = Word(alphas, alphanums)
- funcDecl = ("def" + identifier + Group( "(" + Optional( delimitedList(identifier) ) + ")" ) + ":")
- func_body = indentedBlock(stmt, indentStack)
- funcDef = Group( funcDecl + func_body )
-
- rvalue = Forward()
- funcCall = Group(identifier + "(" + Optional(delimitedList(rvalue)) + ")")
- rvalue << (funcCall | identifier | Word(nums))
- assignment = Group(identifier + "=" + rvalue)
- stmt << ( funcDef | assignment | identifier )
-
- module_body = OneOrMore(stmt)
-
- parseTree = module_body.parseString(data)
- parseTree.pprint()
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['def',
- 'A',
- ['(', 'z', ')'],
- ':',
- [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]],
- 'B',
- ['def',
- 'BB',
- ['(', 'a', 'b', 'c', ')'],
- ':',
- [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]],
- 'C',
- 'D',
- ['def',
- 'spam',
- ['(', 'x', 'y', ')'],
- ':',
- [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== VARIABLES DETAILS ==================== -->
-<a name="section-VariablesDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Variables Details</span></td>
-</tr>
-</table>
-<a name="alphanums"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">alphanums</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-<code class="variable-quote">'</code><code class="variable-string">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789</code><code class="variable-quote">'</code>
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<a name="printables"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">printables</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-<code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\</code><span class="variable-linewrap"><img src="crarr.png" alt="\" /></span>
-<code class="variable-string">'()*+,-./:;<=>?@[\\]^_`{|}~</code><code class="variable-quote">'</code>
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<a name="alphas8bit"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">alphas8bit</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-<code class="variable-quote">u'</code><code class="variable-string">ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ</code><code class="variable-quote">'</code>
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<a name="commaSeparatedList"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">commaSeparatedList</h3>
- <p>(Deprecated) Predefined expression of 1 or more printable words or
- quoted strings, separated by commas. This expression is deprecated in
- favor of <a
- href="pyparsing.pyparsing_common-class.html#comma_separated_list"
- class="link">pyparsing_common.comma_separated_list</a>.</p>
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-commaSeparatedList
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Home </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Home </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- Module pyparsing
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing-pysrc.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<h1 class="epydoc">Source Code for <a href="pyparsing-module.html">Module pyparsing</a></h1>
-<pre class="py-src">
-<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-comment"># module pyparsing.py</tt> </tt>
-<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-comment"># Copyright (c) 2003-2016 Paul T. McGuire</tt> </tt>
-<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"><tt class="py-comment"># Permission is hereby granted, free of charge, to any person obtaining</tt> </tt>
-<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"><tt class="py-comment"># a copy of this software and associated documentation files (the</tt> </tt>
-<a name="L7"></a><tt class="py-lineno"> 7</tt> <tt class="py-line"><tt class="py-comment"># "Software"), to deal in the Software without restriction, including</tt> </tt>
-<a name="L8"></a><tt class="py-lineno"> 8</tt> <tt class="py-line"><tt class="py-comment"># without limitation the rights to use, copy, modify, merge, publish,</tt> </tt>
-<a name="L9"></a><tt class="py-lineno"> 9</tt> <tt class="py-line"><tt class="py-comment"># distribute, sublicense, and/or sell copies of the Software, and to</tt> </tt>
-<a name="L10"></a><tt class="py-lineno"> 10</tt> <tt class="py-line"><tt class="py-comment"># permit persons to whom the Software is furnished to do so, subject to</tt> </tt>
-<a name="L11"></a><tt class="py-lineno"> 11</tt> <tt class="py-line"><tt class="py-comment"># the following conditions:</tt> </tt>
-<a name="L12"></a><tt class="py-lineno"> 12</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L13"></a><tt class="py-lineno"> 13</tt> <tt class="py-line"><tt class="py-comment"># The above copyright notice and this permission notice shall be</tt> </tt>
-<a name="L14"></a><tt class="py-lineno"> 14</tt> <tt class="py-line"><tt class="py-comment"># included in all copies or substantial portions of the Software.</tt> </tt>
-<a name="L15"></a><tt class="py-lineno"> 15</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L16"></a><tt class="py-lineno"> 16</tt> <tt class="py-line"><tt class="py-comment"># THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</tt> </tt>
-<a name="L17"></a><tt class="py-lineno"> 17</tt> <tt class="py-line"><tt class="py-comment"># EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</tt> </tt>
-<a name="L18"></a><tt class="py-lineno"> 18</tt> <tt class="py-line"><tt class="py-comment"># MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</tt> </tt>
-<a name="L19"></a><tt class="py-lineno"> 19</tt> <tt class="py-line"><tt class="py-comment"># IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY</tt> </tt>
-<a name="L20"></a><tt class="py-lineno"> 20</tt> <tt class="py-line"><tt class="py-comment"># CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,</tt> </tt>
-<a name="L21"></a><tt class="py-lineno"> 21</tt> <tt class="py-line"><tt class="py-comment"># TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE</tt> </tt>
-<a name="L22"></a><tt class="py-lineno"> 22</tt> <tt class="py-line"><tt class="py-comment"># SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</tt> </tt>
-<a name="L23"></a><tt class="py-lineno"> 23</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L24"></a><tt class="py-lineno"> 24</tt> <tt class="py-line"> </tt>
-<a name="L25"></a><tt class="py-lineno"> 25</tt> <tt class="py-line"><tt id="link-0" class="py-name" targets="Variable pyparsing.__doc__=pyparsing-module.html#__doc__"><a title="pyparsing.__doc__" class="py-name" href="#" onclick="return doclink('link-0', '__doc__', 'link-0');">__doc__</a></tt> <tt class="py-op">=</tt> \ </tt>
-<a name="L26"></a><tt class="py-lineno"> 26</tt> <tt class="py-line"><tt class="py-docstring">"""</tt> </tt>
-<a name="L27"></a><tt class="py-lineno"> 27</tt> <tt class="py-line"><tt class="py-docstring">pyparsing module - Classes and methods to define and execute parsing grammars</tt> </tt>
-<a name="L28"></a><tt class="py-lineno"> 28</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L29"></a><tt class="py-lineno"> 29</tt> <tt class="py-line"><tt class="py-docstring">The pyparsing module is an alternative approach to creating and executing simple grammars,</tt> </tt>
-<a name="L30"></a><tt class="py-lineno"> 30</tt> <tt class="py-line"><tt class="py-docstring">vs. the traditional lex/yacc approach, or the use of regular expressions. With pyparsing, you</tt> </tt>
-<a name="L31"></a><tt class="py-lineno"> 31</tt> <tt class="py-line"><tt class="py-docstring">don't need to learn a new syntax for defining grammars or matching expressions - the parsing module</tt> </tt>
-<a name="L32"></a><tt class="py-lineno"> 32</tt> <tt class="py-line"><tt class="py-docstring">provides a library of classes that you use to construct the grammar directly in Python.</tt> </tt>
-<a name="L33"></a><tt class="py-lineno"> 33</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L34"></a><tt class="py-lineno"> 34</tt> <tt class="py-line"><tt class="py-docstring">Here is a program to parse "Hello, World!" (or any greeting of the form </tt> </tt>
-<a name="L35"></a><tt class="py-lineno"> 35</tt> <tt class="py-line"><tt class="py-docstring">C{"<salutation>, <addressee>!"}), built up using L{Word}, L{Literal}, and L{And} elements </tt> </tt>
-<a name="L36"></a><tt class="py-lineno"> 36</tt> <tt class="py-line"><tt class="py-docstring">(L{'+'<ParserElement.__add__>} operator gives L{And} expressions, strings are auto-converted to</tt> </tt>
-<a name="L37"></a><tt class="py-lineno"> 37</tt> <tt class="py-line"><tt class="py-docstring">L{Literal} expressions)::</tt> </tt>
-<a name="L38"></a><tt class="py-lineno"> 38</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L39"></a><tt class="py-lineno"> 39</tt> <tt class="py-line"><tt class="py-docstring"> from pyparsing import Word, alphas</tt> </tt>
-<a name="L40"></a><tt class="py-lineno"> 40</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L41"></a><tt class="py-lineno"> 41</tt> <tt class="py-line"><tt class="py-docstring"> # define grammar of a greeting</tt> </tt>
-<a name="L42"></a><tt class="py-lineno"> 42</tt> <tt class="py-line"><tt class="py-docstring"> greet = Word(alphas) + "," + Word(alphas) + "!"</tt> </tt>
-<a name="L43"></a><tt class="py-lineno"> 43</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L44"></a><tt class="py-lineno"> 44</tt> <tt class="py-line"><tt class="py-docstring"> hello = "Hello, World!"</tt> </tt>
-<a name="L45"></a><tt class="py-lineno"> 45</tt> <tt class="py-line"><tt class="py-docstring"> print (hello, "->", greet.parseString(hello))</tt> </tt>
-<a name="L46"></a><tt class="py-lineno"> 46</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L47"></a><tt class="py-lineno"> 47</tt> <tt class="py-line"><tt class="py-docstring">The program outputs the following::</tt> </tt>
-<a name="L48"></a><tt class="py-lineno"> 48</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L49"></a><tt class="py-lineno"> 49</tt> <tt class="py-line"><tt class="py-docstring"> Hello, World! -> ['Hello', ',', 'World', '!']</tt> </tt>
-<a name="L50"></a><tt class="py-lineno"> 50</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L51"></a><tt class="py-lineno"> 51</tt> <tt class="py-line"><tt class="py-docstring">The Python representation of the grammar is quite readable, owing to the self-explanatory</tt> </tt>
-<a name="L52"></a><tt class="py-lineno"> 52</tt> <tt class="py-line"><tt class="py-docstring">class names, and the use of '+', '|' and '^' operators.</tt> </tt>
-<a name="L53"></a><tt class="py-lineno"> 53</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L54"></a><tt class="py-lineno"> 54</tt> <tt class="py-line"><tt class="py-docstring">The L{ParseResults} object returned from L{ParserElement.parseString<ParserElement.parseString>} can be accessed as a nested list, a dictionary, or an</tt> </tt>
-<a name="L55"></a><tt class="py-lineno"> 55</tt> <tt class="py-line"><tt class="py-docstring">object with named attributes.</tt> </tt>
-<a name="L56"></a><tt class="py-lineno"> 56</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L57"></a><tt class="py-lineno"> 57</tt> <tt class="py-line"><tt class="py-docstring">The pyparsing module handles some of the problems that are typically vexing when writing text parsers:</tt> </tt>
-<a name="L58"></a><tt class="py-lineno"> 58</tt> <tt class="py-line"><tt class="py-docstring"> - extra or missing whitespace (the above program will also handle "Hello,World!", "Hello , World !", etc.)</tt> </tt>
-<a name="L59"></a><tt class="py-lineno"> 59</tt> <tt class="py-line"><tt class="py-docstring"> - quoted strings</tt> </tt>
-<a name="L60"></a><tt class="py-lineno"> 60</tt> <tt class="py-line"><tt class="py-docstring"> - embedded comments</tt> </tt>
-<a name="L61"></a><tt class="py-lineno"> 61</tt> <tt class="py-line"><tt class="py-docstring">"""</tt> </tt>
-<a name="L62"></a><tt class="py-lineno"> 62</tt> <tt class="py-line"> </tt>
-<a name="L63"></a><tt class="py-lineno"> 63</tt> <tt class="py-line"><tt class="py-name">__version__</tt> <tt class="py-op">=</tt> <tt class="py-string">"2.2.0"</tt> </tt>
-<a name="L64"></a><tt class="py-lineno"> 64</tt> <tt class="py-line"><tt id="link-1" class="py-name" targets="Variable pyparsing.__versionTime__=pyparsing-module.html#__versionTime__"><a title="pyparsing.__versionTime__" class="py-name" href="#" onclick="return doclink('link-1', '__versionTime__', 'link-1');">__versionTime__</a></tt> <tt class="py-op">=</tt> <tt class="py-string">"06 Mar 2017 02:06 UTC"</tt> </tt>
-<a name="L65"></a><tt class="py-lineno"> 65</tt> <tt class="py-line"><tt class="py-name">__author__</tt> <tt class="py-op">=</tt> <tt class="py-string">"Paul McGuire <ptmcg@users.sourceforge.net>"</tt> </tt>
-<a name="L66"></a><tt class="py-lineno"> 66</tt> <tt class="py-line"> </tt>
-<a name="L67"></a><tt class="py-lineno"> 67</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">string</tt> </tt>
-<a name="L68"></a><tt class="py-lineno"> 68</tt> <tt class="py-line"><tt class="py-keyword">from</tt> <tt class="py-name">weakref</tt> <tt class="py-keyword">import</tt> <tt class="py-name">ref</tt> <tt class="py-keyword">as</tt> <tt class="py-name">wkref</tt> </tt>
-<a name="L69"></a><tt class="py-lineno"> 69</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt id="link-2" class="py-name" targets="Method pyparsing.Forward.copy()=pyparsing.Forward-class.html#copy,Method pyparsing.Keyword.copy()=pyparsing.Keyword-class.html#copy,Method pyparsing.ParseExpression.copy()=pyparsing.ParseExpression-class.html#copy,Method pyparsing.ParseResults.copy()=pyparsing.ParseResults-class.html#copy,Method pyparsing.ParserElement.copy()=pyparsing.ParserElement-class.html#copy"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-2', 'copy', 'link-2');">copy</a></tt> </tt>
-<a name="L70"></a><tt class="py-lineno"> 70</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">sys</tt> </tt>
-<a name="L71"></a><tt class="py-lineno"> 71</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">warnings</tt> </tt>
-<a name="L72"></a><tt class="py-lineno"> 72</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">re</tt> </tt>
-<a name="L73"></a><tt class="py-lineno"> 73</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">sre_constants</tt> </tt>
-<a name="L74"></a><tt class="py-lineno"> 74</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">collections</tt> </tt>
-<a name="L75"></a><tt class="py-lineno"> 75</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt id="link-3" class="py-name" targets="Method pyparsing.ParseResults.pprint()=pyparsing.ParseResults-class.html#pprint"><a title="pyparsing.ParseResults.pprint" class="py-name" href="#" onclick="return doclink('link-3', 'pprint', 'link-3');">pprint</a></tt> </tt>
-<a name="L76"></a><tt class="py-lineno"> 76</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">traceback</tt> </tt>
-<a name="L77"></a><tt class="py-lineno"> 77</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">types</tt> </tt>
-<a name="L78"></a><tt class="py-lineno"> 78</tt> <tt class="py-line"><tt class="py-keyword">from</tt> <tt class="py-name">datetime</tt> <tt class="py-keyword">import</tt> <tt class="py-name">datetime</tt> </tt>
-<a name="L79"></a><tt class="py-lineno"> 79</tt> <tt class="py-line"> </tt>
-<a name="L80"></a><tt class="py-lineno"> 80</tt> <tt class="py-line"><tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L81"></a><tt class="py-lineno"> 81</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">_thread</tt> <tt class="py-keyword">import</tt> <tt class="py-name">RLock</tt> </tt>
-<a name="L82"></a><tt class="py-lineno"> 82</tt> <tt class="py-line"><tt class="py-keyword">except</tt> <tt class="py-name">ImportError</tt><tt class="py-op">:</tt> </tt>
-<a name="L83"></a><tt class="py-lineno"> 83</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">threading</tt> <tt class="py-keyword">import</tt> <tt class="py-name">RLock</tt> </tt>
-<a name="L84"></a><tt class="py-lineno"> 84</tt> <tt class="py-line"> </tt>
-<a name="L85"></a><tt class="py-lineno"> 85</tt> <tt class="py-line"><tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L86"></a><tt class="py-lineno"> 86</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">collections</tt> <tt class="py-keyword">import</tt> <tt class="py-name">OrderedDict</tt> <tt class="py-keyword">as</tt> <tt class="py-name">_OrderedDict</tt> </tt>
-<a name="L87"></a><tt class="py-lineno"> 87</tt> <tt class="py-line"><tt class="py-keyword">except</tt> <tt class="py-name">ImportError</tt><tt class="py-op">:</tt> </tt>
-<a name="L88"></a><tt class="py-lineno"> 88</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L89"></a><tt class="py-lineno"> 89</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">ordereddict</tt> <tt class="py-keyword">import</tt> <tt class="py-name">OrderedDict</tt> <tt class="py-keyword">as</tt> <tt class="py-name">_OrderedDict</tt> </tt>
-<a name="L90"></a><tt class="py-lineno"> 90</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">ImportError</tt><tt class="py-op">:</tt> </tt>
-<a name="L91"></a><tt class="py-lineno"> 91</tt> <tt class="py-line"> <tt class="py-name">_OrderedDict</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L92"></a><tt class="py-lineno"> 92</tt> <tt class="py-line"> </tt>
-<a name="L93"></a><tt class="py-lineno"> 93</tt> <tt class="py-line"><tt class="py-comment">#~ sys.stderr.write( "testing pyparsing module, version %s, %s\n" % (__version__,__versionTime__ ) )</tt> </tt>
-<a name="L94"></a><tt class="py-lineno"> 94</tt> <tt class="py-line"> </tt>
-<a name="L95"></a><tt class="py-lineno"> 95</tt> <tt class="py-line"><tt class="py-name">__all__</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> </tt>
-<a name="L96"></a><tt class="py-lineno"> 96</tt> <tt class="py-line"><tt class="py-string">'And'</tt><tt class="py-op">,</tt> <tt class="py-string">'CaselessKeyword'</tt><tt class="py-op">,</tt> <tt class="py-string">'CaselessLiteral'</tt><tt class="py-op">,</tt> <tt class="py-string">'CharsNotIn'</tt><tt class="py-op">,</tt> <tt class="py-string">'Combine'</tt><tt class="py-op">,</tt> <tt class="py-string">'Dict'</tt><tt class="py-op">,</tt> <tt class="py-string">'Each'</tt><tt class="py-op">,</tt> <tt class="py-string">'Empty'</tt><tt class="py-op">,</tt> </tt>
-<a name="L97"></a><tt class="py-lineno"> 97</tt> <tt class="py-line"><tt class="py-string">'FollowedBy'</tt><tt class="py-op">,</tt> <tt class="py-string">'Forward'</tt><tt class="py-op">,</tt> <tt class="py-string">'GoToColumn'</tt><tt class="py-op">,</tt> <tt class="py-string">'Group'</tt><tt class="py-op">,</tt> <tt class="py-string">'Keyword'</tt><tt class="py-op">,</tt> <tt class="py-string">'LineEnd'</tt><tt class="py-op">,</tt> <tt class="py-string">'LineStart'</tt><tt class="py-op">,</tt> <tt class="py-string">'Literal'</tt><tt class="py-op">,</tt> </tt>
-<a name="L98"></a><tt class="py-lineno"> 98</tt> <tt class="py-line"><tt class="py-string">'MatchFirst'</tt><tt class="py-op">,</tt> <tt class="py-string">'NoMatch'</tt><tt class="py-op">,</tt> <tt class="py-string">'NotAny'</tt><tt class="py-op">,</tt> <tt class="py-string">'OneOrMore'</tt><tt class="py-op">,</tt> <tt class="py-string">'OnlyOnce'</tt><tt class="py-op">,</tt> <tt class="py-string">'Optional'</tt><tt class="py-op">,</tt> <tt class="py-string">'Or'</tt><tt class="py-op">,</tt> </tt>
-<a name="L99"></a><tt class="py-lineno"> 99</tt> <tt class="py-line"><tt class="py-string">'ParseBaseException'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParseElementEnhance'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParseException'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParseExpression'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParseFatalException'</tt><tt class="py-op">,</tt> </tt>
-<a name="L100"></a><tt class="py-lineno"> 100</tt> <tt class="py-line"><tt class="py-string">'ParseResults'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParseSyntaxException'</tt><tt class="py-op">,</tt> <tt class="py-string">'ParserElement'</tt><tt class="py-op">,</tt> <tt class="py-string">'QuotedString'</tt><tt class="py-op">,</tt> <tt class="py-string">'RecursiveGrammarException'</tt><tt class="py-op">,</tt> </tt>
-<a name="L101"></a><tt class="py-lineno"> 101</tt> <tt class="py-line"><tt class="py-string">'Regex'</tt><tt class="py-op">,</tt> <tt class="py-string">'SkipTo'</tt><tt class="py-op">,</tt> <tt class="py-string">'StringEnd'</tt><tt class="py-op">,</tt> <tt class="py-string">'StringStart'</tt><tt class="py-op">,</tt> <tt class="py-string">'Suppress'</tt><tt class="py-op">,</tt> <tt class="py-string">'Token'</tt><tt class="py-op">,</tt> <tt class="py-string">'TokenConverter'</tt><tt class="py-op">,</tt> </tt>
-<a name="L102"></a><tt class="py-lineno"> 102</tt> <tt class="py-line"><tt class="py-string">'White'</tt><tt class="py-op">,</tt> <tt class="py-string">'Word'</tt><tt class="py-op">,</tt> <tt class="py-string">'WordEnd'</tt><tt class="py-op">,</tt> <tt class="py-string">'WordStart'</tt><tt class="py-op">,</tt> <tt class="py-string">'ZeroOrMore'</tt><tt class="py-op">,</tt> </tt>
-<a name="L103"></a><tt class="py-lineno"> 103</tt> <tt class="py-line"><tt class="py-string">'alphanums'</tt><tt class="py-op">,</tt> <tt class="py-string">'alphas'</tt><tt class="py-op">,</tt> <tt class="py-string">'alphas8bit'</tt><tt class="py-op">,</tt> <tt class="py-string">'anyCloseTag'</tt><tt class="py-op">,</tt> <tt class="py-string">'anyOpenTag'</tt><tt class="py-op">,</tt> <tt class="py-string">'cStyleComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'col'</tt><tt class="py-op">,</tt> </tt>
-<a name="L104"></a><tt class="py-lineno"> 104</tt> <tt class="py-line"><tt class="py-string">'commaSeparatedList'</tt><tt class="py-op">,</tt> <tt class="py-string">'commonHTMLEntity'</tt><tt class="py-op">,</tt> <tt class="py-string">'countedArray'</tt><tt class="py-op">,</tt> <tt class="py-string">'cppStyleComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'dblQuotedString'</tt><tt class="py-op">,</tt> </tt>
-<a name="L105"></a><tt class="py-lineno"> 105</tt> <tt class="py-line"><tt class="py-string">'dblSlashComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'delimitedList'</tt><tt class="py-op">,</tt> <tt class="py-string">'dictOf'</tt><tt class="py-op">,</tt> <tt class="py-string">'downcaseTokens'</tt><tt class="py-op">,</tt> <tt class="py-string">'empty'</tt><tt class="py-op">,</tt> <tt class="py-string">'hexnums'</tt><tt class="py-op">,</tt> </tt>
-<a name="L106"></a><tt class="py-lineno"> 106</tt> <tt class="py-line"><tt class="py-string">'htmlComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'javaStyleComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'line'</tt><tt class="py-op">,</tt> <tt class="py-string">'lineEnd'</tt><tt class="py-op">,</tt> <tt class="py-string">'lineStart'</tt><tt class="py-op">,</tt> <tt class="py-string">'lineno'</tt><tt class="py-op">,</tt> </tt>
-<a name="L107"></a><tt class="py-lineno"> 107</tt> <tt class="py-line"><tt class="py-string">'makeHTMLTags'</tt><tt class="py-op">,</tt> <tt class="py-string">'makeXMLTags'</tt><tt class="py-op">,</tt> <tt class="py-string">'matchOnlyAtCol'</tt><tt class="py-op">,</tt> <tt class="py-string">'matchPreviousExpr'</tt><tt class="py-op">,</tt> <tt class="py-string">'matchPreviousLiteral'</tt><tt class="py-op">,</tt> </tt>
-<a name="L108"></a><tt class="py-lineno"> 108</tt> <tt class="py-line"><tt class="py-string">'nestedExpr'</tt><tt class="py-op">,</tt> <tt class="py-string">'nullDebugAction'</tt><tt class="py-op">,</tt> <tt class="py-string">'nums'</tt><tt class="py-op">,</tt> <tt class="py-string">'oneOf'</tt><tt class="py-op">,</tt> <tt class="py-string">'opAssoc'</tt><tt class="py-op">,</tt> <tt class="py-string">'operatorPrecedence'</tt><tt class="py-op">,</tt> <tt class="py-string">'printables'</tt><tt class="py-op">,</tt> </tt>
-<a name="L109"></a><tt class="py-lineno"> 109</tt> <tt class="py-line"><tt class="py-string">'punc8bit'</tt><tt class="py-op">,</tt> <tt class="py-string">'pythonStyleComment'</tt><tt class="py-op">,</tt> <tt class="py-string">'quotedString'</tt><tt class="py-op">,</tt> <tt class="py-string">'removeQuotes'</tt><tt class="py-op">,</tt> <tt class="py-string">'replaceHTMLEntity'</tt><tt class="py-op">,</tt> </tt>
-<a name="L110"></a><tt class="py-lineno"> 110</tt> <tt class="py-line"><tt class="py-string">'replaceWith'</tt><tt class="py-op">,</tt> <tt class="py-string">'restOfLine'</tt><tt class="py-op">,</tt> <tt class="py-string">'sglQuotedString'</tt><tt class="py-op">,</tt> <tt class="py-string">'srange'</tt><tt class="py-op">,</tt> <tt class="py-string">'stringEnd'</tt><tt class="py-op">,</tt> </tt>
-<a name="L111"></a><tt class="py-lineno"> 111</tt> <tt class="py-line"><tt class="py-string">'stringStart'</tt><tt class="py-op">,</tt> <tt class="py-string">'traceParseAction'</tt><tt class="py-op">,</tt> <tt class="py-string">'unicodeString'</tt><tt class="py-op">,</tt> <tt class="py-string">'upcaseTokens'</tt><tt class="py-op">,</tt> <tt class="py-string">'withAttribute'</tt><tt class="py-op">,</tt> </tt>
-<a name="L112"></a><tt class="py-lineno"> 112</tt> <tt class="py-line"><tt class="py-string">'indentedBlock'</tt><tt class="py-op">,</tt> <tt class="py-string">'originalTextFor'</tt><tt class="py-op">,</tt> <tt class="py-string">'ungroup'</tt><tt class="py-op">,</tt> <tt class="py-string">'infixNotation'</tt><tt class="py-op">,</tt><tt class="py-string">'locatedExpr'</tt><tt class="py-op">,</tt> <tt class="py-string">'withClass'</tt><tt class="py-op">,</tt> </tt>
-<a name="L113"></a><tt class="py-lineno"> 113</tt> <tt class="py-line"><tt class="py-string">'CloseMatch'</tt><tt class="py-op">,</tt> <tt class="py-string">'tokenMap'</tt><tt class="py-op">,</tt> <tt class="py-string">'pyparsing_common'</tt><tt class="py-op">,</tt> </tt>
-<a name="L114"></a><tt class="py-lineno"> 114</tt> <tt class="py-line"><tt class="py-op">]</tt> </tt>
-<a name="L115"></a><tt class="py-lineno"> 115</tt> <tt class="py-line"> </tt>
-<a name="L116"></a><tt class="py-lineno"> 116</tt> <tt class="py-line"><tt id="link-4" class="py-name" targets="Variable pyparsing.system_version=pyparsing-module.html#system_version"><a title="pyparsing.system_version" class="py-name" href="#" onclick="return doclink('link-4', 'system_version', 'link-4');">system_version</a></tt> <tt class="py-op">=</tt> <tt class="py-name">tuple</tt><tt class="py-op">(</tt><tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">version_info</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">3</tt><tt class="py-op">]</tt> </tt>
-<a name="L117"></a><tt class="py-lineno"> 117</tt> <tt class="py-line"><tt id="link-5" class="py-name" targets="Variable pyparsing.PY_3=pyparsing-module.html#PY_3"><a title="pyparsing.PY_3" class="py-name" href="#" onclick="return doclink('link-5', 'PY_3', 'link-5');">PY_3</a></tt> <tt class="py-op">=</tt> <tt id="link-6" class="py-name"><a title="pyparsing.system_version" class="py-name" href="#" onclick="return doclink('link-6', 'system_version', 'link-4');">system_version</a></tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-number">3</tt> </tt>
-<a name="L118"></a><tt class="py-lineno"> 118</tt> <tt class="py-line"><tt class="py-keyword">if</tt> <tt id="link-7" class="py-name"><a title="pyparsing.PY_3" class="py-name" href="#" onclick="return doclink('link-7', 'PY_3', 'link-5');">PY_3</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L119"></a><tt class="py-lineno"> 119</tt> <tt class="py-line"> <tt id="link-8" class="py-name" targets="Variable pyparsing._MAX_INT=pyparsing-module.html#_MAX_INT"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-8', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> <tt class="py-op">=</tt> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">maxsize</tt> </tt>
-<a name="L120"></a><tt class="py-lineno"> 120</tt> <tt class="py-line"> <tt class="py-name">basestring</tt> <tt class="py-op">=</tt> <tt class="py-name">str</tt> </tt>
-<a name="L121"></a><tt class="py-lineno"> 121</tt> <tt class="py-line"> <tt class="py-name">unichr</tt> <tt class="py-op">=</tt> <tt class="py-name">chr</tt> </tt>
-<a name="L122"></a><tt class="py-lineno"> 122</tt> <tt class="py-line"> <tt class="py-name">_ustr</tt> <tt class="py-op">=</tt> <tt class="py-name">str</tt> </tt>
-<a name="L123"></a><tt class="py-lineno"> 123</tt> <tt class="py-line"> </tt>
-<a name="L124"></a><tt class="py-lineno"> 124</tt> <tt class="py-line"> <tt class="py-comment"># build list of single arg builtins, that can be used as parse actions</tt> </tt>
-<a name="L125"></a><tt class="py-lineno"> 125</tt> <tt class="py-line"> <tt id="link-9" class="py-name" targets="Variable pyparsing.singleArgBuiltins=pyparsing-module.html#singleArgBuiltins"><a title="pyparsing.singleArgBuiltins" class="py-name" href="#" onclick="return doclink('link-9', 'singleArgBuiltins', 'link-9');">singleArgBuiltins</a></tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">sum</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">,</tt> <tt class="py-name">sorted</tt><tt class="py-op">,</tt> <tt class="py-name">reversed</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">,</tt> <tt class="py-name">tuple</tt><tt class="py-op">,</tt> <tt class="py-name">set</tt><tt class="py-op">,</tt> <tt class="py-name">any</tt><tt class="py-op">,</tt> <tt class="py-name">all</tt><tt class="py-op">,</tt> <tt class="py-name">min</tt><tt class="py-op">,</tt> <tt class="py-name">max</tt><tt class="py-op">]</tt> </tt>
-<a name="L126"></a><tt class="py-lineno"> 126</tt> <tt class="py-line"> </tt>
-<a name="L127"></a><tt class="py-lineno"> 127</tt> <tt class="py-line"><tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L128"></a><tt class="py-lineno"> 128</tt> <tt class="py-line"> <tt id="link-10" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-10', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> <tt class="py-op">=</tt> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">maxint</tt> </tt>
-<a name="L129"></a><tt class="py-lineno"> 129</tt> <tt class="py-line"> <tt class="py-name">range</tt> <tt class="py-op">=</tt> <tt class="py-name">xrange</tt> </tt>
-<a name="_ustr"></a><div id="_ustr-def"><a name="L130"></a><tt class="py-lineno"> 130</tt> <tt class="py-line"> </tt>
-<a name="L131"></a><tt class="py-lineno"> 131</tt> <a class="py-toggle" href="#" id="_ustr-toggle" onclick="return toggle('_ustr');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_ustr">_ustr</a><tt class="py-op">(</tt><tt class="py-param">obj</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ustr-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ustr-expanded"><a name="L132"></a><tt class="py-lineno"> 132</tt> <tt class="py-line"> <tt class="py-docstring">"""Drop-in replacement for str(obj) that tries to be Unicode friendly. It first tries</tt> </tt>
-<a name="L133"></a><tt class="py-lineno"> 133</tt> <tt class="py-line"><tt class="py-docstring"> str(obj). If that fails with a UnicodeEncodeError, then it tries unicode(obj). It</tt> </tt>
-<a name="L134"></a><tt class="py-lineno"> 134</tt> <tt class="py-line"><tt class="py-docstring"> then < returns the unicode object | encodes it with the default encoding | ... >.</tt> </tt>
-<a name="L135"></a><tt class="py-lineno"> 135</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L136"></a><tt class="py-lineno"> 136</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">obj</tt><tt class="py-op">,</tt><tt class="py-name">unicode</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L137"></a><tt class="py-lineno"> 137</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">obj</tt> </tt>
-<a name="L138"></a><tt class="py-lineno"> 138</tt> <tt class="py-line"> </tt>
-<a name="L139"></a><tt class="py-lineno"> 139</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L140"></a><tt class="py-lineno"> 140</tt> <tt class="py-line"> <tt class="py-comment"># If this works, then _ustr(obj) has the same behaviour as str(obj), so</tt> </tt>
-<a name="L141"></a><tt class="py-lineno"> 141</tt> <tt class="py-line"> <tt class="py-comment"># it won't break any existing code.</tt> </tt>
-<a name="L142"></a><tt class="py-lineno"> 142</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">obj</tt><tt class="py-op">)</tt> </tt>
-<a name="L143"></a><tt class="py-lineno"> 143</tt> <tt class="py-line"> </tt>
-<a name="L144"></a><tt class="py-lineno"> 144</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">UnicodeEncodeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L145"></a><tt class="py-lineno"> 145</tt> <tt class="py-line"> <tt class="py-comment"># Else encode it</tt> </tt>
-<a name="L146"></a><tt class="py-lineno"> 146</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">unicode</tt><tt class="py-op">(</tt><tt class="py-name">obj</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">encode</tt><tt class="py-op">(</tt><tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">getdefaultencoding</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-string">'xmlcharrefreplace'</tt><tt class="py-op">)</tt> </tt>
-<a name="L147"></a><tt class="py-lineno"> 147</tt> <tt class="py-line"> <tt class="py-name">xmlcharref</tt> <tt class="py-op">=</tt> <tt id="link-11" class="py-name" targets="Class pyparsing.Regex=pyparsing.Regex-class.html"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-11', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'&#\d+;'</tt><tt class="py-op">)</tt> </tt>
-<a name="L148"></a><tt class="py-lineno"> 148</tt> <tt class="py-line"> <tt class="py-name">xmlcharref</tt><tt class="py-op">.</tt><tt id="link-12" class="py-name" targets="Method pyparsing.ParserElement.setParseAction()=pyparsing.ParserElement-class.html#setParseAction"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-12', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-string">'\\u'</tt> <tt class="py-op">+</tt> <tt class="py-name">hex</tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L149"></a><tt class="py-lineno"> 149</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">xmlcharref</tt><tt class="py-op">.</tt><tt id="link-13" class="py-name" targets="Method pyparsing.ParserElement.transformString()=pyparsing.ParserElement-class.html#transformString"><a title="pyparsing.ParserElement.transformString" class="py-name" href="#" onclick="return doclink('link-13', 'transformString', 'link-13');">transformString</a></tt><tt class="py-op">(</tt><tt class="py-name">ret</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L150"></a><tt class="py-lineno"> 150</tt> <tt class="py-line"> </tt>
-<a name="L151"></a><tt class="py-lineno"> 151</tt> <tt class="py-line"> <tt class="py-comment"># build list of single arg builtins, tolerant of Python version, that can be used as parse actions</tt> </tt>
-<a name="L152"></a><tt class="py-lineno"> 152</tt> <tt class="py-line"> <tt id="link-14" class="py-name"><a title="pyparsing.singleArgBuiltins" class="py-name" href="#" onclick="return doclink('link-14', 'singleArgBuiltins', 'link-9');">singleArgBuiltins</a></tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L153"></a><tt class="py-lineno"> 153</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">__builtin__</tt> </tt>
-<a name="L154"></a><tt class="py-lineno"> 154</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt id="link-15" class="py-name" targets="Variable pyparsing.fname=pyparsing-module.html#fname"><a title="pyparsing.fname" class="py-name" href="#" onclick="return doclink('link-15', 'fname', 'link-15');">fname</a></tt> <tt class="py-keyword">in</tt> <tt class="py-string">"sum len sorted reversed list tuple set any all min max"</tt><tt class="py-op">.</tt><tt id="link-16" class="py-name" targets="Method pyparsing.ParserElement.split()=pyparsing.ParserElement-class.html#split,Method pyparsing.Regex.compiledREtype.split()=pyparsing.Regex.compiledREtype-class.html#split"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-16', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L155"></a><tt class="py-lineno"> 155</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L156"></a><tt class="py-lineno"> 156</tt> <tt class="py-line"> <tt id="link-17" class="py-name"><a title="pyparsing.singleArgBuiltins" class="py-name" href="#" onclick="return doclink('link-17', 'singleArgBuiltins', 'link-9');">singleArgBuiltins</a></tt><tt class="py-op">.</tt><tt id="link-18" class="py-name" targets="Method pyparsing.ParseExpression.append()=pyparsing.ParseExpression-class.html#append,Method pyparsing.ParseResults.append()=pyparsing.ParseResults-class.html#append"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-18', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">getattr</tt><tt class="py-op">(</tt><tt class="py-name">__builtin__</tt><tt class="py-op">,</tt><tt id="link-19" class="py-name"><a title="pyparsing.fname" class="py-name" href="#" onclick="return doclink('link-19', 'fname', 'link-15');">fname</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L157"></a><tt class="py-lineno"> 157</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">AttributeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L158"></a><tt class="py-lineno"> 158</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L159"></a><tt class="py-lineno"> 159</tt> <tt class="py-line"> </tt>
-<a name="L160"></a><tt class="py-lineno"> 160</tt> <tt class="py-line"><tt class="py-name">_generatorType</tt> <tt class="py-op">=</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">y</tt> <tt class="py-keyword">for</tt> <tt class="py-name">y</tt> <tt class="py-keyword">in</tt> <tt class="py-name">range</tt><tt class="py-op">(</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="_xml_escape"></a><div id="_xml_escape-def"><a name="L161"></a><tt class="py-lineno"> 161</tt> <tt class="py-line"> </tt>
-<a name="L162"></a><tt class="py-lineno"> 162</tt> <a class="py-toggle" href="#" id="_xml_escape-toggle" onclick="return toggle('_xml_escape');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_xml_escape">_xml_escape</a><tt class="py-op">(</tt><tt class="py-param">data</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_xml_escape-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_xml_escape-expanded"><a name="L163"></a><tt class="py-lineno"> 163</tt> <tt class="py-line"> <tt class="py-docstring">"""Escape &, <, >, ", ', etc. in a string of data."""</tt> </tt>
-<a name="L164"></a><tt class="py-lineno"> 164</tt> <tt class="py-line"> </tt>
-<a name="L165"></a><tt class="py-lineno"> 165</tt> <tt class="py-line"> <tt class="py-comment"># ampersand must be replaced first</tt> </tt>
-<a name="L166"></a><tt class="py-lineno"> 166</tt> <tt class="py-line"> <tt class="py-name">from_symbols</tt> <tt class="py-op">=</tt> <tt class="py-string">'&><"\''</tt> </tt>
-<a name="L167"></a><tt class="py-lineno"> 167</tt> <tt class="py-line"> <tt class="py-name">to_symbols</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-string">'&'</tt><tt class="py-op">+</tt><tt class="py-name">s</tt><tt class="py-op">+</tt><tt class="py-string">';'</tt> <tt class="py-keyword">for</tt> <tt class="py-name">s</tt> <tt class="py-keyword">in</tt> <tt class="py-string">"amp gt lt quot apos"</tt><tt class="py-op">.</tt><tt id="link-20" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-20', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L168"></a><tt class="py-lineno"> 168</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">from_</tt><tt class="py-op">,</tt><tt class="py-name">to_</tt> <tt class="py-keyword">in</tt> <tt class="py-name">zip</tt><tt class="py-op">(</tt><tt class="py-name">from_symbols</tt><tt class="py-op">,</tt> <tt class="py-name">to_symbols</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L169"></a><tt class="py-lineno"> 169</tt> <tt class="py-line"> <tt class="py-name">data</tt> <tt class="py-op">=</tt> <tt class="py-name">data</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-name">from_</tt><tt class="py-op">,</tt> <tt class="py-name">to_</tt><tt class="py-op">)</tt> </tt>
-<a name="L170"></a><tt class="py-lineno"> 170</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">data</tt> </tt>
-</div><a name="L171"></a><tt class="py-lineno"> 171</tt> <tt class="py-line"> </tt>
-<a name="_Constants"></a><div id="_Constants-def"><a name="L172"></a><tt class="py-lineno"> 172</tt> <a class="py-toggle" href="#" id="_Constants-toggle" onclick="return toggle('_Constants');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._Constants-class.html">_Constants</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_Constants-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_Constants-expanded"><a name="L173"></a><tt class="py-lineno"> 173</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L174"></a><tt class="py-lineno"> 174</tt> <tt class="py-line"> </tt>
-<a name="L175"></a><tt class="py-lineno"> 175</tt> <tt class="py-line"><tt id="link-21" class="py-name" targets="Variable pyparsing.alphas=pyparsing-module.html#alphas"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-21', 'alphas', 'link-21');">alphas</a></tt> <tt class="py-op">=</tt> <tt class="py-name">string</tt><tt class="py-op">.</tt><tt class="py-name">ascii_uppercase</tt> <tt class="py-op">+</tt> <tt class="py-name">string</tt><tt class="py-op">.</tt><tt class="py-name">ascii_lowercase</tt> </tt>
-<a name="L176"></a><tt class="py-lineno"> 176</tt> <tt class="py-line"><tt id="link-22" class="py-name" targets="Variable pyparsing.nums=pyparsing-module.html#nums"><a title="pyparsing.nums" class="py-name" href="#" onclick="return doclink('link-22', 'nums', 'link-22');">nums</a></tt> <tt class="py-op">=</tt> <tt class="py-string">"0123456789"</tt> </tt>
-<a name="L177"></a><tt class="py-lineno"> 177</tt> <tt class="py-line"><tt id="link-23" class="py-name" targets="Variable pyparsing.hexnums=pyparsing-module.html#hexnums"><a title="pyparsing.hexnums" class="py-name" href="#" onclick="return doclink('link-23', 'hexnums', 'link-23');">hexnums</a></tt> <tt class="py-op">=</tt> <tt id="link-24" class="py-name"><a title="pyparsing.nums" class="py-name" href="#" onclick="return doclink('link-24', 'nums', 'link-22');">nums</a></tt> <tt class="py-op">+</tt> <tt class="py-string">"ABCDEFabcdef"</tt> </tt>
-<a name="L178"></a><tt class="py-lineno"> 178</tt> <tt class="py-line"><tt id="link-25" class="py-name" targets="Variable pyparsing.alphanums=pyparsing-module.html#alphanums"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-25', 'alphanums', 'link-25');">alphanums</a></tt> <tt class="py-op">=</tt> <tt id="link-26" class="py-name"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-26', 'alphas', 'link-21');">alphas</a></tt> <tt class="py-op">+</tt> <tt id="link-27" class="py-name"><a title="pyparsing.nums" class="py-name" href="#" onclick="return doclink('link-27', 'nums', 'link-22');">nums</a></tt> </tt>
-<a name="L179"></a><tt class="py-lineno"> 179</tt> <tt class="py-line"><tt id="link-28" class="py-name" targets="Variable pyparsing._bslash=pyparsing-module.html#_bslash"><a title="pyparsing._bslash" class="py-name" href="#" onclick="return doclink('link-28', '_bslash', 'link-28');">_bslash</a></tt> <tt class="py-op">=</tt> <tt class="py-name">chr</tt><tt class="py-op">(</tt><tt class="py-number">92</tt><tt class="py-op">)</tt> </tt>
-<a name="L180"></a><tt class="py-lineno"> 180</tt> <tt class="py-line"><tt id="link-29" class="py-name" targets="Variable pyparsing.printables=pyparsing-module.html#printables"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-29', 'printables', 'link-29');">printables</a></tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">c</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">string</tt><tt class="py-op">.</tt><tt class="py-name">printable</tt> <tt class="py-keyword">if</tt> <tt class="py-name">c</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">string</tt><tt class="py-op">.</tt><tt class="py-name">whitespace</tt><tt class="py-op">)</tt> </tt>
-<a name="ParseBaseException"></a><div id="ParseBaseException-def"><a name="L181"></a><tt class="py-lineno"> 181</tt> <tt class="py-line"> </tt>
-<a name="L182"></a><tt class="py-lineno"> 182</tt> <a class="py-toggle" href="#" id="ParseBaseException-toggle" onclick="return toggle('ParseBaseException');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html">ParseBaseException</a><tt class="py-op">(</tt><tt class="py-base-class">Exception</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseBaseException-expanded"><a name="L183"></a><tt class="py-lineno"> 183</tt> <tt class="py-line"> <tt class="py-docstring">"""base exception class for all parsing runtime exceptions"""</tt> </tt>
-<a name="L184"></a><tt class="py-lineno"> 184</tt> <tt class="py-line"> <tt class="py-comment"># Performance tuning: we construct a *lot* of these, so keep this</tt> </tt>
-<a name="L185"></a><tt class="py-lineno"> 185</tt> <tt class="py-line"> <tt class="py-comment"># constructor as small and fast as possible</tt> </tt>
-<a name="ParseBaseException.__init__"></a><div id="ParseBaseException.__init__-def"><a name="L186"></a><tt class="py-lineno"> 186</tt> <a class="py-toggle" href="#" id="ParseBaseException.__init__-toggle" onclick="return toggle('ParseBaseException.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">pstr</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">msg</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">elem</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.__init__-expanded"><a name="L187"></a><tt class="py-lineno"> 187</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L188"></a><tt class="py-lineno"> 188</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">msg</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L189"></a><tt class="py-lineno"> 189</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">pstr</tt> </tt>
-<a name="L190"></a><tt class="py-lineno"> 190</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt> </tt>
-<a name="L191"></a><tt class="py-lineno"> 191</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L192"></a><tt class="py-lineno"> 192</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">msg</tt> </tt>
-<a name="L193"></a><tt class="py-lineno"> 193</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt> <tt class="py-op">=</tt> <tt class="py-name">pstr</tt> </tt>
-<a name="L194"></a><tt class="py-lineno"> 194</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parserElement</tt> <tt class="py-op">=</tt> <tt class="py-name">elem</tt> </tt>
-<a name="L195"></a><tt class="py-lineno"> 195</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">args</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">pstr</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">msg</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L196"></a><tt class="py-lineno"> 196</tt> <tt class="py-line"> </tt>
-<a name="L197"></a><tt class="py-lineno"> 197</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">classmethod</tt> </tt>
-<a name="ParseBaseException._from_exception"></a><div id="ParseBaseException._from_exception-def"><a name="L198"></a><tt class="py-lineno"> 198</tt> <a class="py-toggle" href="#" id="ParseBaseException._from_exception-toggle" onclick="return toggle('ParseBaseException._from_exception');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#_from_exception">_from_exception</a><tt class="py-op">(</tt><tt class="py-param">cls</tt><tt class="py-op">,</tt> <tt class="py-param">pe</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException._from_exception-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException._from_exception-expanded"><a name="L199"></a><tt class="py-lineno"> 199</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L200"></a><tt class="py-lineno"> 200</tt> <tt class="py-line"><tt class="py-docstring"> internal factory method to simplify creating one type of ParseException </tt> </tt>
-<a name="L201"></a><tt class="py-lineno"> 201</tt> <tt class="py-line"><tt class="py-docstring"> from another - avoids having __init__ signature conflicts among subclasses</tt> </tt>
-<a name="L202"></a><tt class="py-lineno"> 202</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L203"></a><tt class="py-lineno"> 203</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cls</tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt><tt class="py-op">,</tt> <tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt><tt class="py-op">,</tt> <tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">parserElement</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L204"></a><tt class="py-lineno"> 204</tt> <tt class="py-line"> </tt>
-<a name="ParseBaseException.__getattr__"></a><div id="ParseBaseException.__getattr__-def"><a name="L205"></a><tt class="py-lineno"> 205</tt> <a class="py-toggle" href="#" id="ParseBaseException.__getattr__-toggle" onclick="return toggle('ParseBaseException.__getattr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#__getattr__">__getattr__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">aname</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.__getattr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.__getattr__-expanded"><a name="L206"></a><tt class="py-lineno"> 206</tt> <tt class="py-line"> <tt class="py-docstring">"""supported attributes by name are:</tt> </tt>
-<a name="L207"></a><tt class="py-lineno"> 207</tt> <tt class="py-line"><tt class="py-docstring"> - lineno - returns the line number of the exception text</tt> </tt>
-<a name="L208"></a><tt class="py-lineno"> 208</tt> <tt class="py-line"><tt class="py-docstring"> - col - returns the column number of the exception text</tt> </tt>
-<a name="L209"></a><tt class="py-lineno"> 209</tt> <tt class="py-line"><tt class="py-docstring"> - line - returns the line containing the exception text</tt> </tt>
-<a name="L210"></a><tt class="py-lineno"> 210</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L211"></a><tt class="py-lineno"> 211</tt> <tt class="py-line"> <tt class="py-keyword">if</tt><tt class="py-op">(</tt> <tt class="py-name">aname</tt> <tt class="py-op">==</tt> <tt class="py-string">"lineno"</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L212"></a><tt class="py-lineno"> 212</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-30" class="py-name" targets="Function pyparsing.lineno()=pyparsing-module.html#lineno"><a title="pyparsing.lineno" class="py-name" href="#" onclick="return doclink('link-30', 'lineno', 'link-30');">lineno</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L213"></a><tt class="py-lineno"> 213</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt><tt class="py-op">(</tt> <tt class="py-name">aname</tt> <tt class="py-keyword">in</tt> <tt class="py-op">(</tt><tt class="py-string">"col"</tt><tt class="py-op">,</tt> <tt class="py-string">"column"</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L214"></a><tt class="py-lineno"> 214</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-31" class="py-name" targets="Function pyparsing.col()=pyparsing-module.html#col"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-31', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L215"></a><tt class="py-lineno"> 215</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt><tt class="py-op">(</tt> <tt class="py-name">aname</tt> <tt class="py-op">==</tt> <tt class="py-string">"line"</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L216"></a><tt class="py-lineno"> 216</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-32" class="py-name" targets="Function pyparsing.line()=pyparsing-module.html#line"><a title="pyparsing.line" class="py-name" href="#" onclick="return doclink('link-32', 'line', 'link-32');">line</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">pstr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L217"></a><tt class="py-lineno"> 217</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L218"></a><tt class="py-lineno"> 218</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">AttributeError</tt><tt class="py-op">(</tt><tt class="py-name">aname</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L219"></a><tt class="py-lineno"> 219</tt> <tt class="py-line"> </tt>
-<a name="ParseBaseException.__str__"></a><div id="ParseBaseException.__str__-def"><a name="L220"></a><tt class="py-lineno"> 220</tt> <a class="py-toggle" href="#" id="ParseBaseException.__str__-toggle" onclick="return toggle('ParseBaseException.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.__str__-expanded"><a name="L221"></a><tt class="py-lineno"> 221</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"%s (at char %d), (line:%d, col:%d)"</tt> <tt class="py-op">%</tt> \ </tt>
-<a name="L222"></a><tt class="py-lineno"> 222</tt> <tt class="py-line"> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-33" class="py-name"><a title="pyparsing.lineno" class="py-name" href="#" onclick="return doclink('link-33', 'lineno', 'link-30');">lineno</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">column</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="ParseBaseException.__repr__"></a><div id="ParseBaseException.__repr__-def"><a name="L223"></a><tt class="py-lineno"> 223</tt> <a class="py-toggle" href="#" id="ParseBaseException.__repr__-toggle" onclick="return toggle('ParseBaseException.__repr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#__repr__">__repr__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.__repr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.__repr__-expanded"><a name="L224"></a><tt class="py-lineno"> 224</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="ParseBaseException.markInputline"></a><div id="ParseBaseException.markInputline-def"><a name="L225"></a><tt class="py-lineno"> 225</tt> <a class="py-toggle" href="#" id="ParseBaseException.markInputline-toggle" onclick="return toggle('ParseBaseException.markInputline');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#markInputline">markInputline</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">markerString</tt> <tt class="py-op">=</tt> <tt class="py-string">">!<"</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.markInputline-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.markInputline-expanded"><a name="L226"></a><tt class="py-lineno"> 226</tt> <tt class="py-line"> <tt class="py-docstring">"""Extracts the exception line from the input string, and marks</tt> </tt>
-<a name="L227"></a><tt class="py-lineno"> 227</tt> <tt class="py-line"><tt class="py-docstring"> the location of the exception with a special symbol.</tt> </tt>
-<a name="L228"></a><tt class="py-lineno"> 228</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L229"></a><tt class="py-lineno"> 229</tt> <tt class="py-line"> <tt class="py-name">line_str</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-34" class="py-name"><a title="pyparsing.line" class="py-name" href="#" onclick="return doclink('link-34', 'line', 'link-32');">line</a></tt> </tt>
-<a name="L230"></a><tt class="py-lineno"> 230</tt> <tt class="py-line"> <tt class="py-name">line_column</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">column</tt> <tt class="py-op">-</tt> <tt class="py-number">1</tt> </tt>
-<a name="L231"></a><tt class="py-lineno"> 231</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">markerString</tt><tt class="py-op">:</tt> </tt>
-<a name="L232"></a><tt class="py-lineno"> 232</tt> <tt class="py-line"> <tt class="py-name">line_str</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">line_str</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-name">line_column</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> </tt>
-<a name="L233"></a><tt class="py-lineno"> 233</tt> <tt class="py-line"> <tt class="py-name">markerString</tt><tt class="py-op">,</tt> <tt class="py-name">line_str</tt><tt class="py-op">[</tt><tt class="py-name">line_column</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L234"></a><tt class="py-lineno"> 234</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">line_str</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="ParseBaseException.__dir__"></a><div id="ParseBaseException.__dir__-def"><a name="L235"></a><tt class="py-lineno"> 235</tt> <a class="py-toggle" href="#" id="ParseBaseException.__dir__-toggle" onclick="return toggle('ParseBaseException.__dir__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseBaseException-class.html#__dir__">__dir__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseBaseException.__dir__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseBaseException.__dir__-expanded"><a name="L236"></a><tt class="py-lineno"> 236</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"lineno col line"</tt><tt class="py-op">.</tt><tt id="link-35" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-35', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">dir</tt><tt class="py-op">(</tt><tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L237"></a><tt class="py-lineno"> 237</tt> <tt class="py-line"> </tt>
-<a name="ParseException"></a><div id="ParseException-def"><a name="L238"></a><tt class="py-lineno"> 238</tt> <a class="py-toggle" href="#" id="ParseException-toggle" onclick="return toggle('ParseException');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseException-class.html">ParseException</a><tt class="py-op">(</tt><tt class="py-base-class">ParseBaseException</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseException-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseException-expanded"><a name="L239"></a><tt class="py-lineno"> 239</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L240"></a><tt class="py-lineno"> 240</tt> <tt class="py-line"><tt class="py-docstring"> Exception thrown when parse expressions don't match class;</tt> </tt>
-<a name="L241"></a><tt class="py-lineno"> 241</tt> <tt class="py-line"><tt class="py-docstring"> supported attributes by name are:</tt> </tt>
-<a name="L242"></a><tt class="py-lineno"> 242</tt> <tt class="py-line"><tt class="py-docstring"> - lineno - returns the line number of the exception text</tt> </tt>
-<a name="L243"></a><tt class="py-lineno"> 243</tt> <tt class="py-line"><tt class="py-docstring"> - col - returns the column number of the exception text</tt> </tt>
-<a name="L244"></a><tt class="py-lineno"> 244</tt> <tt class="py-line"><tt class="py-docstring"> - line - returns the line containing the exception text</tt> </tt>
-<a name="L245"></a><tt class="py-lineno"> 245</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L246"></a><tt class="py-lineno"> 246</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L247"></a><tt class="py-lineno"> 247</tt> <tt class="py-line"><tt class="py-docstring"> try:</tt> </tt>
-<a name="L248"></a><tt class="py-lineno"> 248</tt> <tt class="py-line"><tt class="py-docstring"> Word(nums).setName("integer").parseString("ABC")</tt> </tt>
-<a name="L249"></a><tt class="py-lineno"> 249</tt> <tt class="py-line"><tt class="py-docstring"> except ParseException as pe:</tt> </tt>
-<a name="L250"></a><tt class="py-lineno"> 250</tt> <tt class="py-line"><tt class="py-docstring"> print(pe)</tt> </tt>
-<a name="L251"></a><tt class="py-lineno"> 251</tt> <tt class="py-line"><tt class="py-docstring"> print("column: {}".format(pe.col))</tt> </tt>
-<a name="L252"></a><tt class="py-lineno"> 252</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L253"></a><tt class="py-lineno"> 253</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L254"></a><tt class="py-lineno"> 254</tt> <tt class="py-line"><tt class="py-docstring"> Expected integer (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L255"></a><tt class="py-lineno"> 255</tt> <tt class="py-line"><tt class="py-docstring"> column: 1</tt> </tt>
-<a name="L256"></a><tt class="py-lineno"> 256</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L257"></a><tt class="py-lineno"> 257</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L258"></a><tt class="py-lineno"> 258</tt> <tt class="py-line"> </tt>
-<a name="ParseFatalException"></a><div id="ParseFatalException-def"><a name="L259"></a><tt class="py-lineno"> 259</tt> <a class="py-toggle" href="#" id="ParseFatalException-toggle" onclick="return toggle('ParseFatalException');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseFatalException-class.html">ParseFatalException</a><tt class="py-op">(</tt><tt class="py-base-class">ParseBaseException</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseFatalException-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseFatalException-expanded"><a name="L260"></a><tt class="py-lineno"> 260</tt> <tt class="py-line"> <tt class="py-docstring">"""user-throwable exception thrown when inconsistent parse content</tt> </tt>
-<a name="L261"></a><tt class="py-lineno"> 261</tt> <tt class="py-line"><tt class="py-docstring"> is found; stops all parsing immediately"""</tt> </tt>
-<a name="L262"></a><tt class="py-lineno"> 262</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L263"></a><tt class="py-lineno"> 263</tt> <tt class="py-line"> </tt>
-<a name="ParseSyntaxException"></a><div id="ParseSyntaxException-def"><a name="L264"></a><tt class="py-lineno"> 264</tt> <a class="py-toggle" href="#" id="ParseSyntaxException-toggle" onclick="return toggle('ParseSyntaxException');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseSyntaxException-class.html">ParseSyntaxException</a><tt class="py-op">(</tt><tt class="py-base-class">ParseFatalException</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseSyntaxException-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseSyntaxException-expanded"><a name="L265"></a><tt class="py-lineno"> 265</tt> <tt class="py-line"> <tt class="py-docstring">"""just like L{ParseFatalException}, but thrown internally when an</tt> </tt>
-<a name="L266"></a><tt class="py-lineno"> 266</tt> <tt class="py-line"><tt class="py-docstring"> L{ErrorStop<And._ErrorStop>} ('-' operator) indicates that parsing is to stop </tt> </tt>
-<a name="L267"></a><tt class="py-lineno"> 267</tt> <tt class="py-line"><tt class="py-docstring"> immediately because an unbacktrackable syntax error has been found"""</tt> </tt>
-<a name="L268"></a><tt class="py-lineno"> 268</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L269"></a><tt class="py-lineno"> 269</tt> <tt class="py-line"> </tt>
-<a name="RecursiveGrammarException"></a><div id="RecursiveGrammarException-def"><a name="L270"></a><tt class="py-lineno"> 270</tt> <tt class="py-line"><tt class="py-comment">#~ class ReparseException(ParseBaseException):</tt> </tt>
-<a name="L271"></a><tt class="py-lineno"> 271</tt> <tt class="py-line"> <tt class="py-comment">#~ """Experimental class - parse actions can raise this exception to cause</tt> </tt>
-<a name="L272"></a><tt class="py-lineno"> 272</tt> <tt class="py-line"> <tt class="py-comment">#~ pyparsing to reparse the input string:</tt> </tt>
-<a name="L273"></a><tt class="py-lineno"> 273</tt> <tt class="py-line"> <tt class="py-comment">#~ - with a modified input string, and/or</tt> </tt>
-<a name="L274"></a><tt class="py-lineno"> 274</tt> <tt class="py-line"> <tt class="py-comment">#~ - with a modified start location</tt> </tt>
-<a name="L275"></a><tt class="py-lineno"> 275</tt> <tt class="py-line"> <tt class="py-comment">#~ Set the values of the ReparseException in the constructor, and raise the</tt> </tt>
-<a name="L276"></a><tt class="py-lineno"> 276</tt> <tt class="py-line"> <tt class="py-comment">#~ exception in a parse action to cause pyparsing to use the new string/location.</tt> </tt>
-<a name="L277"></a><tt class="py-lineno"> 277</tt> <tt class="py-line"> <tt class="py-comment">#~ Setting the values as None causes no change to be made.</tt> </tt>
-<a name="L278"></a><tt class="py-lineno"> 278</tt> <tt class="py-line"> <tt class="py-comment">#~ """</tt> </tt>
-<a name="L279"></a><tt class="py-lineno"> 279</tt> <tt class="py-line"> <tt class="py-comment">#~ def __init_( self, newstring, restartLoc ):</tt> </tt>
-<a name="L280"></a><tt class="py-lineno"> 280</tt> <tt class="py-line"> <tt class="py-comment">#~ self.newParseText = newstring</tt> </tt>
-<a name="L281"></a><tt class="py-lineno"> 281</tt> <tt class="py-line"> <tt class="py-comment">#~ self.reparseLoc = restartLoc</tt> </tt>
-<a name="L282"></a><tt class="py-lineno"> 282</tt> <tt class="py-line"> </tt>
-<a name="L283"></a><tt class="py-lineno"> 283</tt> <a class="py-toggle" href="#" id="RecursiveGrammarException-toggle" onclick="return toggle('RecursiveGrammarException');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.RecursiveGrammarException-class.html">RecursiveGrammarException</a><tt class="py-op">(</tt><tt class="py-base-class">Exception</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="RecursiveGrammarException-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="RecursiveGrammarException-expanded"><a name="L284"></a><tt class="py-lineno"> 284</tt> <tt class="py-line"> <tt class="py-docstring">"""exception thrown by L{ParserElement.validate} if the grammar could be improperly recursive"""</tt> </tt>
-<a name="RecursiveGrammarException.__init__"></a><div id="RecursiveGrammarException.__init__-def"><a name="L285"></a><tt class="py-lineno"> 285</tt> <a class="py-toggle" href="#" id="RecursiveGrammarException.__init__-toggle" onclick="return toggle('RecursiveGrammarException.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.RecursiveGrammarException-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="RecursiveGrammarException.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="RecursiveGrammarException.__init__-expanded"><a name="L286"></a><tt class="py-lineno"> 286</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseElementTrace</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt> </tt>
-</div><a name="L287"></a><tt class="py-lineno"> 287</tt> <tt class="py-line"> </tt>
-<a name="RecursiveGrammarException.__str__"></a><div id="RecursiveGrammarException.__str__-def"><a name="L288"></a><tt class="py-lineno"> 288</tt> <a class="py-toggle" href="#" id="RecursiveGrammarException.__str__-toggle" onclick="return toggle('RecursiveGrammarException.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.RecursiveGrammarException-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="RecursiveGrammarException.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="RecursiveGrammarException.__str__-expanded"><a name="L289"></a><tt class="py-lineno"> 289</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"RecursiveGrammarException: %s"</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseElementTrace</tt> </tt>
-</div></div><a name="L290"></a><tt class="py-lineno"> 290</tt> <tt class="py-line"> </tt>
-<a name="_ParseResultsWithOffset"></a><div id="_ParseResultsWithOffset-def"><a name="L291"></a><tt class="py-lineno"> 291</tt> <a class="py-toggle" href="#" id="_ParseResultsWithOffset-toggle" onclick="return toggle('_ParseResultsWithOffset');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._ParseResultsWithOffset-class.html">_ParseResultsWithOffset</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ParseResultsWithOffset-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_ParseResultsWithOffset-expanded"><a name="_ParseResultsWithOffset.__init__"></a><div id="_ParseResultsWithOffset.__init__-def"><a name="L292"></a><tt class="py-lineno"> 292</tt> <a class="py-toggle" href="#" id="_ParseResultsWithOffset.__init__-toggle" onclick="return toggle('_ParseResultsWithOffset.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._ParseResultsWithOffset-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">p1</tt><tt class="py-op">,</tt><tt class="py-param">p2</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ParseResultsWithOffset.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ParseResultsWithOffset.__init__-expanded"><a name="L293"></a><tt class="py-lineno"> 293</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">tup</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">p1</tt><tt class="py-op">,</tt><tt class="py-name">p2</tt><tt class="py-op">)</tt> </tt>
-</div><a name="_ParseResultsWithOffset.__getitem__"></a><div id="_ParseResultsWithOffset.__getitem__-def"><a name="L294"></a><tt class="py-lineno"> 294</tt> <a class="py-toggle" href="#" id="_ParseResultsWithOffset.__getitem__-toggle" onclick="return toggle('_ParseResultsWithOffset.__getitem__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._ParseResultsWithOffset-class.html#__getitem__">__getitem__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">i</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ParseResultsWithOffset.__getitem__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ParseResultsWithOffset.__getitem__-expanded"><a name="L295"></a><tt class="py-lineno"> 295</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">tup</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-</div><a name="_ParseResultsWithOffset.__repr__"></a><div id="_ParseResultsWithOffset.__repr__-def"><a name="L296"></a><tt class="py-lineno"> 296</tt> <a class="py-toggle" href="#" id="_ParseResultsWithOffset.__repr__-toggle" onclick="return toggle('_ParseResultsWithOffset.__repr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._ParseResultsWithOffset-class.html#__repr__">__repr__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ParseResultsWithOffset.__repr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ParseResultsWithOffset.__repr__-expanded"><a name="L297"></a><tt class="py-lineno"> 297</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">repr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">tup</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-</div><a name="_ParseResultsWithOffset.setOffset"></a><div id="_ParseResultsWithOffset.setOffset-def"><a name="L298"></a><tt class="py-lineno"> 298</tt> <a class="py-toggle" href="#" id="_ParseResultsWithOffset.setOffset-toggle" onclick="return toggle('_ParseResultsWithOffset.setOffset');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._ParseResultsWithOffset-class.html#setOffset">setOffset</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">i</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ParseResultsWithOffset.setOffset-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ParseResultsWithOffset.setOffset-expanded"><a name="L299"></a><tt class="py-lineno"> 299</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">tup</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">tup</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L300"></a><tt class="py-lineno"> 300</tt> <tt class="py-line"> </tt>
-<a name="ParseResults"></a><div id="ParseResults-def"><a name="L301"></a><tt class="py-lineno"> 301</tt> <a class="py-toggle" href="#" id="ParseResults-toggle" onclick="return toggle('ParseResults');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html">ParseResults</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseResults-expanded"><a name="L302"></a><tt class="py-lineno"> 302</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L303"></a><tt class="py-lineno"> 303</tt> <tt class="py-line"><tt class="py-docstring"> Structured parse results, to provide multiple means of access to the parsed data:</tt> </tt>
-<a name="L304"></a><tt class="py-lineno"> 304</tt> <tt class="py-line"><tt class="py-docstring"> - as a list (C{len(results)})</tt> </tt>
-<a name="L305"></a><tt class="py-lineno"> 305</tt> <tt class="py-line"><tt class="py-docstring"> - by list index (C{results[0], results[1]}, etc.)</tt> </tt>
-<a name="L306"></a><tt class="py-lineno"> 306</tt> <tt class="py-line"><tt class="py-docstring"> - by attribute (C{results.<resultsName>} - see L{ParserElement.setResultsName})</tt> </tt>
-<a name="L307"></a><tt class="py-lineno"> 307</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L308"></a><tt class="py-lineno"> 308</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L309"></a><tt class="py-lineno"> 309</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L310"></a><tt class="py-lineno"> 310</tt> <tt class="py-line"><tt class="py-docstring"> date_str = (integer.setResultsName("year") + '/' </tt> </tt>
-<a name="L311"></a><tt class="py-lineno"> 311</tt> <tt class="py-line"><tt class="py-docstring"> + integer.setResultsName("month") + '/' </tt> </tt>
-<a name="L312"></a><tt class="py-lineno"> 312</tt> <tt class="py-line"><tt class="py-docstring"> + integer.setResultsName("day"))</tt> </tt>
-<a name="L313"></a><tt class="py-lineno"> 313</tt> <tt class="py-line"><tt class="py-docstring"> # equivalent form:</tt> </tt>
-<a name="L314"></a><tt class="py-lineno"> 314</tt> <tt class="py-line"><tt class="py-docstring"> # date_str = integer("year") + '/' + integer("month") + '/' + integer("day")</tt> </tt>
-<a name="L315"></a><tt class="py-lineno"> 315</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L316"></a><tt class="py-lineno"> 316</tt> <tt class="py-line"><tt class="py-docstring"> # parseString returns a ParseResults object</tt> </tt>
-<a name="L317"></a><tt class="py-lineno"> 317</tt> <tt class="py-line"><tt class="py-docstring"> result = date_str.parseString("1999/12/31")</tt> </tt>
-<a name="L318"></a><tt class="py-lineno"> 318</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L319"></a><tt class="py-lineno"> 319</tt> <tt class="py-line"><tt class="py-docstring"> def test(s, fn=repr):</tt> </tt>
-<a name="L320"></a><tt class="py-lineno"> 320</tt> <tt class="py-line"><tt class="py-docstring"> print("%s -> %s" % (s, fn(eval(s))))</tt> </tt>
-<a name="L321"></a><tt class="py-lineno"> 321</tt> <tt class="py-line"><tt class="py-docstring"> test("list(result)")</tt> </tt>
-<a name="L322"></a><tt class="py-lineno"> 322</tt> <tt class="py-line"><tt class="py-docstring"> test("result[0]")</tt> </tt>
-<a name="L323"></a><tt class="py-lineno"> 323</tt> <tt class="py-line"><tt class="py-docstring"> test("result['month']")</tt> </tt>
-<a name="L324"></a><tt class="py-lineno"> 324</tt> <tt class="py-line"><tt class="py-docstring"> test("result.day")</tt> </tt>
-<a name="L325"></a><tt class="py-lineno"> 325</tt> <tt class="py-line"><tt class="py-docstring"> test("'month' in result")</tt> </tt>
-<a name="L326"></a><tt class="py-lineno"> 326</tt> <tt class="py-line"><tt class="py-docstring"> test("'minutes' in result")</tt> </tt>
-<a name="L327"></a><tt class="py-lineno"> 327</tt> <tt class="py-line"><tt class="py-docstring"> test("result.dump()", str)</tt> </tt>
-<a name="L328"></a><tt class="py-lineno"> 328</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L329"></a><tt class="py-lineno"> 329</tt> <tt class="py-line"><tt class="py-docstring"> list(result) -> ['1999', '/', '12', '/', '31']</tt> </tt>
-<a name="L330"></a><tt class="py-lineno"> 330</tt> <tt class="py-line"><tt class="py-docstring"> result[0] -> '1999'</tt> </tt>
-<a name="L331"></a><tt class="py-lineno"> 331</tt> <tt class="py-line"><tt class="py-docstring"> result['month'] -> '12'</tt> </tt>
-<a name="L332"></a><tt class="py-lineno"> 332</tt> <tt class="py-line"><tt class="py-docstring"> result.day -> '31'</tt> </tt>
-<a name="L333"></a><tt class="py-lineno"> 333</tt> <tt class="py-line"><tt class="py-docstring"> 'month' in result -> True</tt> </tt>
-<a name="L334"></a><tt class="py-lineno"> 334</tt> <tt class="py-line"><tt class="py-docstring"> 'minutes' in result -> False</tt> </tt>
-<a name="L335"></a><tt class="py-lineno"> 335</tt> <tt class="py-line"><tt class="py-docstring"> result.dump() -> ['1999', '/', '12', '/', '31']</tt> </tt>
-<a name="L336"></a><tt class="py-lineno"> 336</tt> <tt class="py-line"><tt class="py-docstring"> - day: 31</tt> </tt>
-<a name="L337"></a><tt class="py-lineno"> 337</tt> <tt class="py-line"><tt class="py-docstring"> - month: 12</tt> </tt>
-<a name="L338"></a><tt class="py-lineno"> 338</tt> <tt class="py-line"><tt class="py-docstring"> - year: 1999</tt> </tt>
-<a name="L339"></a><tt class="py-lineno"> 339</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="ParseResults.__new__"></a><div id="ParseResults.__new__-def"><a name="L340"></a><tt class="py-lineno"> 340</tt> <a class="py-toggle" href="#" id="ParseResults.__new__-toggle" onclick="return toggle('ParseResults.__new__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__new__">__new__</a><tt class="py-op">(</tt><tt class="py-param">cls</tt><tt class="py-op">,</tt> <tt class="py-param">toklist</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">asList</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">modal</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__new__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__new__-expanded"><a name="L341"></a><tt class="py-lineno"> 341</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt> <tt class="py-name">cls</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L342"></a><tt class="py-lineno"> 342</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">toklist</tt> </tt>
-<a name="L343"></a><tt class="py-lineno"> 343</tt> <tt class="py-line"> <tt class="py-name">retobj</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">.</tt><tt id="link-36" class="py-name" targets="Static Method pyparsing.ParseResults.__new__()=pyparsing.ParseResults-class.html#__new__"><a title="pyparsing.ParseResults.__new__" class="py-name" href="#" onclick="return doclink('link-36', '__new__', 'link-36');">__new__</a></tt><tt class="py-op">(</tt><tt class="py-name">cls</tt><tt class="py-op">)</tt> </tt>
-<a name="L344"></a><tt class="py-lineno"> 344</tt> <tt class="py-line"> <tt class="py-name">retobj</tt><tt class="py-op">.</tt><tt class="py-name">__doinit</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L345"></a><tt class="py-lineno"> 345</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">retobj</tt> </tt>
-</div><a name="L346"></a><tt class="py-lineno"> 346</tt> <tt class="py-line"> </tt>
-<a name="L347"></a><tt class="py-lineno"> 347</tt> <tt class="py-line"> <tt class="py-comment"># Performance tuning: we construct a *lot* of these, so keep this</tt> </tt>
-<a name="L348"></a><tt class="py-lineno"> 348</tt> <tt class="py-line"> <tt class="py-comment"># constructor as small and fast as possible</tt> </tt>
-<a name="ParseResults.__init__"></a><div id="ParseResults.__init__-def"><a name="L349"></a><tt class="py-lineno"> 349</tt> <a class="py-toggle" href="#" id="ParseResults.__init__-toggle" onclick="return toggle('ParseResults.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">toklist</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">asList</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">modal</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">isinstance</tt><tt class="py-op">=</tt><tt class="py-name">isinstance</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__init__-expanded"><a name="L350"></a><tt class="py-lineno"> 350</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__doinit</tt><tt class="py-op">:</tt> </tt>
-<a name="L351"></a><tt class="py-lineno"> 351</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__doinit</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L352"></a><tt class="py-lineno"> 352</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L353"></a><tt class="py-lineno"> 353</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L354"></a><tt class="py-lineno"> 354</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt><tt class="py-op">}</tt> </tt>
-<a name="L355"></a><tt class="py-lineno"> 355</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__asList</tt> <tt class="py-op">=</tt> <tt id="link-37" class="py-name" targets="Method pyparsing.ParseResults.asList()=pyparsing.ParseResults-class.html#asList"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-37', 'asList', 'link-37');">asList</a></tt> </tt>
-<a name="L356"></a><tt class="py-lineno"> 356</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__modal</tt> <tt class="py-op">=</tt> <tt class="py-name">modal</tt> </tt>
-<a name="L357"></a><tt class="py-lineno"> 357</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">toklist</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L358"></a><tt class="py-lineno"> 358</tt> <tt class="py-line"> <tt class="py-name">toklist</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L359"></a><tt class="py-lineno"> 359</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L360"></a><tt class="py-lineno"> 360</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">=</tt> <tt class="py-name">toklist</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L361"></a><tt class="py-lineno"> 361</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt> <tt class="py-name">_generatorType</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L362"></a><tt class="py-lineno"> 362</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">)</tt> </tt>
-<a name="L363"></a><tt class="py-lineno"> 363</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L364"></a><tt class="py-lineno"> 364</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">toklist</tt><tt class="py-op">]</tt> </tt>
-<a name="L365"></a><tt class="py-lineno"> 365</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt> <tt class="py-op">=</tt> <tt class="py-name">dict</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L366"></a><tt class="py-lineno"> 366</tt> <tt class="py-line"> </tt>
-<a name="L367"></a><tt class="py-lineno"> 367</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">name</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">name</tt><tt class="py-op">:</tt> </tt>
-<a name="L368"></a><tt class="py-lineno"> 368</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">modal</tt><tt class="py-op">:</tt> </tt>
-<a name="L369"></a><tt class="py-lineno"> 369</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L370"></a><tt class="py-lineno"> 370</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">name</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L371"></a><tt class="py-lineno"> 371</tt> <tt class="py-line"> <tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">name</tt><tt class="py-op">)</tt> <tt class="py-comment"># will always return a str, but use _ustr for consistency</tt> </tt>
-<a name="L372"></a><tt class="py-lineno"> 372</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> <tt class="py-op">=</tt> <tt class="py-name">name</tt> </tt>
-<a name="L373"></a><tt class="py-lineno"> 373</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-op">(</tt><tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">toklist</tt> <tt class="py-keyword">in</tt> <tt class="py-op">(</tt><tt class="py-name">None</tt><tt class="py-op">,</tt><tt class="py-string">''</tt><tt class="py-op">,</tt><tt class="py-op">[</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L374"></a><tt class="py-lineno"> 374</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L375"></a><tt class="py-lineno"> 375</tt> <tt class="py-line"> <tt class="py-name">toklist</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">toklist</tt> <tt class="py-op">]</tt> </tt>
-<a name="L376"></a><tt class="py-lineno"> 376</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-38" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-38', 'asList', 'link-37');">asList</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L377"></a><tt class="py-lineno"> 377</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">,</tt><tt id="link-39" class="py-name" targets="Class pyparsing.ParseResults=pyparsing.ParseResults-class.html"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-39', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L378"></a><tt class="py-lineno"> 378</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">.</tt><tt id="link-40" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-40', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">)</tt> </tt>
-<a name="L379"></a><tt class="py-lineno"> 379</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L380"></a><tt class="py-lineno"> 380</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt id="link-41" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-41', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-name">toklist</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">)</tt> </tt>
-<a name="L381"></a><tt class="py-lineno"> 381</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> <tt class="py-op">=</tt> <tt class="py-name">name</tt> </tt>
-<a name="L382"></a><tt class="py-lineno"> 382</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L383"></a><tt class="py-lineno"> 383</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L384"></a><tt class="py-lineno"> 384</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">toklist</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L385"></a><tt class="py-lineno"> 385</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt class="py-name">KeyError</tt><tt class="py-op">,</tt><tt class="py-name">TypeError</tt><tt class="py-op">,</tt><tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L386"></a><tt class="py-lineno"> 386</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">toklist</tt> </tt>
-</div><a name="L387"></a><tt class="py-lineno"> 387</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__getitem__"></a><div id="ParseResults.__getitem__-def"><a name="L388"></a><tt class="py-lineno"> 388</tt> <a class="py-toggle" href="#" id="ParseResults.__getitem__-toggle" onclick="return toggle('ParseResults.__getitem__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__getitem__">__getitem__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">i</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__getitem__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__getitem__-expanded"><a name="L389"></a><tt class="py-lineno"> 389</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">i</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">,</tt><tt class="py-name">slice</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L390"></a><tt class="py-lineno"> 390</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-<a name="L391"></a><tt class="py-lineno"> 391</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L392"></a><tt class="py-lineno"> 392</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">i</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">:</tt> </tt>
-<a name="L393"></a><tt class="py-lineno"> 393</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L394"></a><tt class="py-lineno"> 394</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L395"></a><tt class="py-lineno"> 395</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-42" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-42', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt> <tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> <tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L396"></a><tt class="py-lineno"> 396</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__setitem__"></a><div id="ParseResults.__setitem__-def"><a name="L397"></a><tt class="py-lineno"> 397</tt> <a class="py-toggle" href="#" id="ParseResults.__setitem__-toggle" onclick="return toggle('ParseResults.__setitem__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__setitem__">__setitem__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">k</tt><tt class="py-op">,</tt> <tt class="py-param">v</tt><tt class="py-op">,</tt> <tt class="py-param">isinstance</tt><tt class="py-op">=</tt><tt class="py-name">isinstance</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__setitem__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__setitem__-expanded"><a name="L398"></a><tt class="py-lineno"> 398</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">,</tt><tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L399"></a><tt class="py-lineno"> 399</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-43" class="py-name" targets="Method pyparsing.ParseResults.get()=pyparsing.ParseResults-class.html#get"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-43', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt><tt class="py-name">v</tt><tt class="py-op">]</tt> </tt>
-<a name="L400"></a><tt class="py-lineno"> 400</tt> <tt class="py-line"> <tt id="link-44" class="py-name" targets="Method pyparsing.Regex.compiledREtype.sub()=pyparsing.Regex.compiledREtype-class.html#sub"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-44', 'sub', 'link-44');">sub</a></tt> <tt class="py-op">=</tt> <tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L401"></a><tt class="py-lineno"> 401</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">,</tt><tt class="py-name">slice</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L402"></a><tt class="py-lineno"> 402</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">v</tt> </tt>
-<a name="L403"></a><tt class="py-lineno"> 403</tt> <tt class="py-line"> <tt id="link-45" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-45', 'sub', 'link-44');">sub</a></tt> <tt class="py-op">=</tt> <tt class="py-name">v</tt> </tt>
-<a name="L404"></a><tt class="py-lineno"> 404</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L405"></a><tt class="py-lineno"> 405</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-46" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-46', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt><tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-<a name="L406"></a><tt class="py-lineno"> 406</tt> <tt class="py-line"> <tt id="link-47" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-47', 'sub', 'link-44');">sub</a></tt> <tt class="py-op">=</tt> <tt class="py-name">v</tt> </tt>
-<a name="L407"></a><tt class="py-lineno"> 407</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt id="link-48" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-48', 'sub', 'link-44');">sub</a></tt><tt class="py-op">,</tt><tt id="link-49" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-49', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L408"></a><tt class="py-lineno"> 408</tt> <tt class="py-line"> <tt id="link-50" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-50', 'sub', 'link-44');">sub</a></tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">wkref</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L409"></a><tt class="py-lineno"> 409</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__delitem__"></a><div id="ParseResults.__delitem__-def"><a name="L410"></a><tt class="py-lineno"> 410</tt> <a class="py-toggle" href="#" id="ParseResults.__delitem__-toggle" onclick="return toggle('ParseResults.__delitem__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__delitem__">__delitem__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">i</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__delitem__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__delitem__-expanded"><a name="L411"></a><tt class="py-lineno"> 411</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">,</tt><tt class="py-name">slice</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L412"></a><tt class="py-lineno"> 412</tt> <tt class="py-line"> <tt class="py-name">mylen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt> </tt>
-<a name="L413"></a><tt class="py-lineno"> 413</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-<a name="L414"></a><tt class="py-lineno"> 414</tt> <tt class="py-line"> </tt>
-<a name="L415"></a><tt class="py-lineno"> 415</tt> <tt class="py-line"> <tt class="py-comment"># convert int to slice</tt> </tt>
-<a name="L416"></a><tt class="py-lineno"> 416</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt> <tt class="py-name">int</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L417"></a><tt class="py-lineno"> 417</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">i</tt> <tt class="py-op"><</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L418"></a><tt class="py-lineno"> 418</tt> <tt class="py-line"> <tt class="py-name">i</tt> <tt class="py-op">+=</tt> <tt class="py-name">mylen</tt> </tt>
-<a name="L419"></a><tt class="py-lineno"> 419</tt> <tt class="py-line"> <tt class="py-name">i</tt> <tt class="py-op">=</tt> <tt class="py-name">slice</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt> <tt class="py-name">i</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt> </tt>
-<a name="L420"></a><tt class="py-lineno"> 420</tt> <tt class="py-line"> <tt class="py-comment"># get removed indices</tt> </tt>
-<a name="L421"></a><tt class="py-lineno"> 421</tt> <tt class="py-line"> <tt class="py-name">removed</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">range</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">i</tt><tt class="py-op">.</tt><tt class="py-name">indices</tt><tt class="py-op">(</tt><tt class="py-name">mylen</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L422"></a><tt class="py-lineno"> 422</tt> <tt class="py-line"> <tt class="py-name">removed</tt><tt class="py-op">.</tt><tt class="py-name">reverse</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L423"></a><tt class="py-lineno"> 423</tt> <tt class="py-line"> <tt class="py-comment"># fixup indices in token dictionary</tt> </tt>
-<a name="L424"></a><tt class="py-lineno"> 424</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">name</tt><tt class="py-op">,</tt><tt class="py-name">occurrences</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-51" class="py-name" targets="Method pyparsing.ParseResults.items()=pyparsing.ParseResults-class.html#items"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-51', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L425"></a><tt class="py-lineno"> 425</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">j</tt> <tt class="py-keyword">in</tt> <tt class="py-name">removed</tt><tt class="py-op">:</tt> </tt>
-<a name="L426"></a><tt class="py-lineno"> 426</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">,</tt> <tt class="py-name">position</tt><tt class="py-op">)</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">occurrences</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L427"></a><tt class="py-lineno"> 427</tt> <tt class="py-line"> <tt class="py-name">occurrences</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">,</tt> <tt class="py-name">position</tt> <tt class="py-op">-</tt> <tt class="py-op">(</tt><tt class="py-name">position</tt> <tt class="py-op">></tt> <tt class="py-name">j</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L428"></a><tt class="py-lineno"> 428</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L429"></a><tt class="py-lineno"> 429</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L430"></a><tt class="py-lineno"> 430</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__contains__"></a><div id="ParseResults.__contains__-def"><a name="L431"></a><tt class="py-lineno"> 431</tt> <a class="py-toggle" href="#" id="ParseResults.__contains__-toggle" onclick="return toggle('ParseResults.__contains__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__contains__">__contains__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">k</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__contains__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__contains__-expanded"><a name="L432"></a><tt class="py-lineno"> 432</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">k</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt> </tt>
-</div><a name="L433"></a><tt class="py-lineno"> 433</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__len__"></a><div id="ParseResults.__len__-def"><a name="L434"></a><tt class="py-lineno"> 434</tt> <a class="py-toggle" href="#" id="ParseResults.__len__-toggle" onclick="return toggle('ParseResults.__len__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__len__">__len__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="ParseResults.__bool__"></a><div id="ParseResults.__bool__-def"><a name="L435"></a><tt class="py-lineno"> 435</tt> <a class="py-toggle" href="#" id="ParseResults.__bool__-toggle" onclick="return toggle('ParseResults.__bool__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__bool__">__bool__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L436"></a><tt class="py-lineno"> 436</tt> <tt class="py-line"> <tt class="py-name">__nonzero__</tt> <tt class="py-op">=</tt> <tt id="link-52" class="py-name" targets="Method pyparsing.ParseResults.__bool__()=pyparsing.ParseResults-class.html#__bool__"><a title="pyparsing.ParseResults.__bool__" class="py-name" href="#" onclick="return doclink('link-52', '__bool__', 'link-52');">__bool__</a></tt> </tt>
-<a name="ParseResults.__iter__"></a><div id="ParseResults.__iter__-def"><a name="L437"></a><tt class="py-lineno"> 437</tt> <a class="py-toggle" href="#" id="ParseResults.__iter__-toggle" onclick="return toggle('ParseResults.__iter__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__iter__">__iter__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> <tt class="py-name">iter</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="ParseResults.__reversed__"></a><div id="ParseResults.__reversed__-def"><a name="L438"></a><tt class="py-lineno"> 438</tt> <a class="py-toggle" href="#" id="ParseResults.__reversed__-toggle" onclick="return toggle('ParseResults.__reversed__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__reversed__">__reversed__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> <tt class="py-name">iter</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="ParseResults._iterkeys"></a><div id="ParseResults._iterkeys-def"><a name="L439"></a><tt class="py-lineno"> 439</tt> <a class="py-toggle" href="#" id="ParseResults._iterkeys-toggle" onclick="return toggle('ParseResults._iterkeys');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#_iterkeys">_iterkeys</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults._iterkeys-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults._iterkeys-expanded"><a name="L440"></a><tt class="py-lineno"> 440</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">,</tt> <tt class="py-string">"iterkeys"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L441"></a><tt class="py-lineno"> 441</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt class="py-name">iterkeys</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L442"></a><tt class="py-lineno"> 442</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L443"></a><tt class="py-lineno"> 443</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">iter</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L444"></a><tt class="py-lineno"> 444</tt> <tt class="py-line"> </tt>
-<a name="ParseResults._itervalues"></a><div id="ParseResults._itervalues-def"><a name="L445"></a><tt class="py-lineno"> 445</tt> <a class="py-toggle" href="#" id="ParseResults._itervalues-toggle" onclick="return toggle('ParseResults._itervalues');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#_itervalues">_itervalues</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults._itervalues-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults._itervalues-expanded"><a name="L446"></a><tt class="py-lineno"> 446</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-53" class="py-name" targets="Method pyparsing.ParseResults._iterkeys()=pyparsing.ParseResults-class.html#_iterkeys"><a title="pyparsing.ParseResults._iterkeys" class="py-name" href="#" onclick="return doclink('link-53', '_iterkeys', 'link-53');">_iterkeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L447"></a><tt class="py-lineno"> 447</tt> <tt class="py-line"> </tt>
-<a name="ParseResults._iteritems"></a><div id="ParseResults._iteritems-def"><a name="L448"></a><tt class="py-lineno"> 448</tt> <a class="py-toggle" href="#" id="ParseResults._iteritems-toggle" onclick="return toggle('ParseResults._iteritems');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#_iteritems">_iteritems</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults._iteritems-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults._iteritems-expanded"><a name="L449"></a><tt class="py-lineno"> 449</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-54" class="py-name"><a title="pyparsing.ParseResults._iterkeys" class="py-name" href="#" onclick="return doclink('link-54', '_iterkeys', 'link-53');">_iterkeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L450"></a><tt class="py-lineno"> 450</tt> <tt class="py-line"> </tt>
-<a name="L451"></a><tt class="py-lineno"> 451</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-55" class="py-name"><a title="pyparsing.PY_3" class="py-name" href="#" onclick="return doclink('link-55', 'PY_3', 'link-5');">PY_3</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L452"></a><tt class="py-lineno"> 452</tt> <tt class="py-line"> <tt id="link-56" class="py-name" targets="Method pyparsing.ParseResults.keys()=pyparsing.ParseResults-class.html#keys"><a title="pyparsing.ParseResults.keys" class="py-name" href="#" onclick="return doclink('link-56', 'keys', 'link-56');">keys</a></tt> <tt class="py-op">=</tt> <tt id="link-57" class="py-name"><a title="pyparsing.ParseResults._iterkeys" class="py-name" href="#" onclick="return doclink('link-57', '_iterkeys', 'link-53');">_iterkeys</a></tt> </tt>
-<a name="L453"></a><tt class="py-lineno"> 453</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result keys (Python 3.x only)."""</tt> </tt>
-<a name="L454"></a><tt class="py-lineno"> 454</tt> <tt class="py-line"> </tt>
-<a name="L455"></a><tt class="py-lineno"> 455</tt> <tt class="py-line"> <tt id="link-58" class="py-name" targets="Method pyparsing.ParseResults.values()=pyparsing.ParseResults-class.html#values"><a title="pyparsing.ParseResults.values" class="py-name" href="#" onclick="return doclink('link-58', 'values', 'link-58');">values</a></tt> <tt class="py-op">=</tt> <tt id="link-59" class="py-name" targets="Method pyparsing.ParseResults._itervalues()=pyparsing.ParseResults-class.html#_itervalues"><a title="pyparsing.ParseResults._itervalues" class="py-name" href="#" onclick="return doclink('link-59', '_itervalues', 'link-59');">_itervalues</a></tt> </tt>
-<a name="L456"></a><tt class="py-lineno"> 456</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result values (Python 3.x only)."""</tt> </tt>
-<a name="L457"></a><tt class="py-lineno"> 457</tt> <tt class="py-line"> </tt>
-<a name="L458"></a><tt class="py-lineno"> 458</tt> <tt class="py-line"> <tt id="link-60" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-60', 'items', 'link-51');">items</a></tt> <tt class="py-op">=</tt> <tt id="link-61" class="py-name" targets="Method pyparsing.ParseResults._iteritems()=pyparsing.ParseResults-class.html#_iteritems"><a title="pyparsing.ParseResults._iteritems" class="py-name" href="#" onclick="return doclink('link-61', '_iteritems', 'link-61');">_iteritems</a></tt> </tt>
-<a name="L459"></a><tt class="py-lineno"> 459</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result key-value tuples (Python 3.x only)."""</tt> </tt>
-<a name="L460"></a><tt class="py-lineno"> 460</tt> <tt class="py-line"> </tt>
-<a name="L461"></a><tt class="py-lineno"> 461</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L462"></a><tt class="py-lineno"> 462</tt> <tt class="py-line"> <tt class="py-name">iterkeys</tt> <tt class="py-op">=</tt> <tt id="link-62" class="py-name"><a title="pyparsing.ParseResults._iterkeys" class="py-name" href="#" onclick="return doclink('link-62', '_iterkeys', 'link-53');">_iterkeys</a></tt> </tt>
-<a name="L463"></a><tt class="py-lineno"> 463</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result keys (Python 2.x only)."""</tt> </tt>
-<a name="L464"></a><tt class="py-lineno"> 464</tt> <tt class="py-line"> </tt>
-<a name="L465"></a><tt class="py-lineno"> 465</tt> <tt class="py-line"> <tt class="py-name">itervalues</tt> <tt class="py-op">=</tt> <tt id="link-63" class="py-name"><a title="pyparsing.ParseResults._itervalues" class="py-name" href="#" onclick="return doclink('link-63', '_itervalues', 'link-59');">_itervalues</a></tt> </tt>
-<a name="L466"></a><tt class="py-lineno"> 466</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result values (Python 2.x only)."""</tt> </tt>
-<a name="L467"></a><tt class="py-lineno"> 467</tt> <tt class="py-line"> </tt>
-<a name="L468"></a><tt class="py-lineno"> 468</tt> <tt class="py-line"> <tt class="py-name">iteritems</tt> <tt class="py-op">=</tt> <tt id="link-64" class="py-name"><a title="pyparsing.ParseResults._iteritems" class="py-name" href="#" onclick="return doclink('link-64', '_iteritems', 'link-61');">_iteritems</a></tt> </tt>
-<a name="L469"></a><tt class="py-lineno"> 469</tt> <tt class="py-line"> <tt class="py-string">"""Returns an iterator of all named result key-value tuples (Python 2.x only)."""</tt> </tt>
-<a name="L470"></a><tt class="py-lineno"> 470</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.keys"></a><div id="ParseResults.keys-def"><a name="L471"></a><tt class="py-lineno"> 471</tt> <a class="py-toggle" href="#" id="ParseResults.keys-toggle" onclick="return toggle('ParseResults.keys');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#keys">keys</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.keys-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParseResults.keys-expanded"><a name="L472"></a><tt class="py-lineno"> 472</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns all named result keys (as a list in Python 2.x, as an iterator in Python 3.x)."""</tt> </tt>
-<a name="L473"></a><tt class="py-lineno"> 473</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">iterkeys</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L474"></a><tt class="py-lineno"> 474</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.values"></a><div id="ParseResults.values-def"><a name="L475"></a><tt class="py-lineno"> 475</tt> <a class="py-toggle" href="#" id="ParseResults.values-toggle" onclick="return toggle('ParseResults.values');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#values">values</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.values-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParseResults.values-expanded"><a name="L476"></a><tt class="py-lineno"> 476</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns all named result values (as a list in Python 2.x, as an iterator in Python 3.x)."""</tt> </tt>
-<a name="L477"></a><tt class="py-lineno"> 477</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">itervalues</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L478"></a><tt class="py-lineno"> 478</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.items"></a><div id="ParseResults.items-def"><a name="L479"></a><tt class="py-lineno"> 479</tt> <a class="py-toggle" href="#" id="ParseResults.items-toggle" onclick="return toggle('ParseResults.items');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#items">items</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.items-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParseResults.items-expanded"><a name="L480"></a><tt class="py-lineno"> 480</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns all named result key-values (as a list of tuples in Python 2.x, as an iterator in Python 3.x)."""</tt> </tt>
-<a name="L481"></a><tt class="py-lineno"> 481</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">iteritems</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L482"></a><tt class="py-lineno"> 482</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.haskeys"></a><div id="ParseResults.haskeys-def"><a name="L483"></a><tt class="py-lineno"> 483</tt> <a class="py-toggle" href="#" id="ParseResults.haskeys-toggle" onclick="return toggle('ParseResults.haskeys');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#haskeys">haskeys</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.haskeys-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.haskeys-expanded"><a name="L484"></a><tt class="py-lineno"> 484</tt> <tt class="py-line"> <tt class="py-docstring">"""Since keys() returns an iterator, this method is helpful in bypassing</tt> </tt>
-<a name="L485"></a><tt class="py-lineno"> 485</tt> <tt class="py-line"><tt class="py-docstring"> code that looks for the existence of any defined results names."""</tt> </tt>
-<a name="L486"></a><tt class="py-lineno"> 486</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">bool</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L487"></a><tt class="py-lineno"> 487</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.pop"></a><div id="ParseResults.pop-def"><a name="L488"></a><tt class="py-lineno"> 488</tt> <a class="py-toggle" href="#" id="ParseResults.pop-toggle" onclick="return toggle('ParseResults.pop');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#pop">pop</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.pop-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.pop-expanded"><a name="L489"></a><tt class="py-lineno"> 489</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L490"></a><tt class="py-lineno"> 490</tt> <tt class="py-line"><tt class="py-docstring"> Removes and returns item at specified index (default=C{last}).</tt> </tt>
-<a name="L491"></a><tt class="py-lineno"> 491</tt> <tt class="py-line"><tt class="py-docstring"> Supports both C{list} and C{dict} semantics for C{pop()}. If passed no</tt> </tt>
-<a name="L492"></a><tt class="py-lineno"> 492</tt> <tt class="py-line"><tt class="py-docstring"> argument or an integer argument, it will use C{list} semantics</tt> </tt>
-<a name="L493"></a><tt class="py-lineno"> 493</tt> <tt class="py-line"><tt class="py-docstring"> and pop tokens from the list of parsed tokens. If passed a </tt> </tt>
-<a name="L494"></a><tt class="py-lineno"> 494</tt> <tt class="py-line"><tt class="py-docstring"> non-integer argument (most likely a string), it will use C{dict}</tt> </tt>
-<a name="L495"></a><tt class="py-lineno"> 495</tt> <tt class="py-line"><tt class="py-docstring"> semantics and pop the corresponding value from any defined </tt> </tt>
-<a name="L496"></a><tt class="py-lineno"> 496</tt> <tt class="py-line"><tt class="py-docstring"> results names. A second default return value argument is </tt> </tt>
-<a name="L497"></a><tt class="py-lineno"> 497</tt> <tt class="py-line"><tt class="py-docstring"> supported, just as in C{dict.pop()}.</tt> </tt>
-<a name="L498"></a><tt class="py-lineno"> 498</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L499"></a><tt class="py-lineno"> 499</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L500"></a><tt class="py-lineno"> 500</tt> <tt class="py-line"><tt class="py-docstring"> def remove_first(tokens):</tt> </tt>
-<a name="L501"></a><tt class="py-lineno"> 501</tt> <tt class="py-line"><tt class="py-docstring"> tokens.pop(0)</tt> </tt>
-<a name="L502"></a><tt class="py-lineno"> 502</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']</tt> </tt>
-<a name="L503"></a><tt class="py-lineno"> 503</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).addParseAction(remove_first).parseString("0 123 321")) # -> ['123', '321']</tt> </tt>
-<a name="L504"></a><tt class="py-lineno"> 504</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L505"></a><tt class="py-lineno"> 505</tt> <tt class="py-line"><tt class="py-docstring"> label = Word(alphas)</tt> </tt>
-<a name="L506"></a><tt class="py-lineno"> 506</tt> <tt class="py-line"><tt class="py-docstring"> patt = label("LABEL") + OneOrMore(Word(nums))</tt> </tt>
-<a name="L507"></a><tt class="py-lineno"> 507</tt> <tt class="py-line"><tt class="py-docstring"> print(patt.parseString("AAB 123 321").dump())</tt> </tt>
-<a name="L508"></a><tt class="py-lineno"> 508</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L509"></a><tt class="py-lineno"> 509</tt> <tt class="py-line"><tt class="py-docstring"> # Use pop() in a parse action to remove named result (note that corresponding value is not</tt> </tt>
-<a name="L510"></a><tt class="py-lineno"> 510</tt> <tt class="py-line"><tt class="py-docstring"> # removed from list form of results)</tt> </tt>
-<a name="L511"></a><tt class="py-lineno"> 511</tt> <tt class="py-line"><tt class="py-docstring"> def remove_LABEL(tokens):</tt> </tt>
-<a name="L512"></a><tt class="py-lineno"> 512</tt> <tt class="py-line"><tt class="py-docstring"> tokens.pop("LABEL")</tt> </tt>
-<a name="L513"></a><tt class="py-lineno"> 513</tt> <tt class="py-line"><tt class="py-docstring"> return tokens</tt> </tt>
-<a name="L514"></a><tt class="py-lineno"> 514</tt> <tt class="py-line"><tt class="py-docstring"> patt.addParseAction(remove_LABEL)</tt> </tt>
-<a name="L515"></a><tt class="py-lineno"> 515</tt> <tt class="py-line"><tt class="py-docstring"> print(patt.parseString("AAB 123 321").dump())</tt> </tt>
-<a name="L516"></a><tt class="py-lineno"> 516</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L517"></a><tt class="py-lineno"> 517</tt> <tt class="py-line"><tt class="py-docstring"> ['AAB', '123', '321']</tt> </tt>
-<a name="L518"></a><tt class="py-lineno"> 518</tt> <tt class="py-line"><tt class="py-docstring"> - LABEL: AAB</tt> </tt>
-<a name="L519"></a><tt class="py-lineno"> 519</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L520"></a><tt class="py-lineno"> 520</tt> <tt class="py-line"><tt class="py-docstring"> ['AAB', '123', '321']</tt> </tt>
-<a name="L521"></a><tt class="py-lineno"> 521</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L522"></a><tt class="py-lineno"> 522</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">args</tt><tt class="py-op">:</tt> </tt>
-<a name="L523"></a><tt class="py-lineno"> 523</tt> <tt class="py-line"> <tt class="py-name">args</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L524"></a><tt class="py-lineno"> 524</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-65" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-65', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L525"></a><tt class="py-lineno"> 525</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">k</tt> <tt class="py-op">==</tt> <tt class="py-string">'default'</tt><tt class="py-op">:</tt> </tt>
-<a name="L526"></a><tt class="py-lineno"> 526</tt> <tt class="py-line"> <tt class="py-name">args</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">v</tt><tt class="py-op">)</tt> </tt>
-<a name="L527"></a><tt class="py-lineno"> 527</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L528"></a><tt class="py-lineno"> 528</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">TypeError</tt><tt class="py-op">(</tt><tt class="py-string">"pop() got an unexpected keyword argument '%s'"</tt> <tt class="py-op">%</tt> <tt class="py-name">k</tt><tt class="py-op">)</tt> </tt>
-<a name="L529"></a><tt class="py-lineno"> 529</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">int</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> </tt>
-<a name="L530"></a><tt class="py-lineno"> 530</tt> <tt class="py-line"> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">args</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt> <tt class="py-keyword">or</tt> </tt>
-<a name="L531"></a><tt class="py-lineno"> 531</tt> <tt class="py-line"> <tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L532"></a><tt class="py-lineno"> 532</tt> <tt class="py-line"> <tt class="py-name">index</tt> <tt class="py-op">=</tt> <tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L533"></a><tt class="py-lineno"> 533</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">index</tt><tt class="py-op">]</tt> </tt>
-<a name="L534"></a><tt class="py-lineno"> 534</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">index</tt><tt class="py-op">]</tt> </tt>
-<a name="L535"></a><tt class="py-lineno"> 535</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-<a name="L536"></a><tt class="py-lineno"> 536</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L537"></a><tt class="py-lineno"> 537</tt> <tt class="py-line"> <tt class="py-name">defaultvalue</tt> <tt class="py-op">=</tt> <tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L538"></a><tt class="py-lineno"> 538</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">defaultvalue</tt> </tt>
-</div><a name="L539"></a><tt class="py-lineno"> 539</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.get"></a><div id="ParseResults.get-def"><a name="L540"></a><tt class="py-lineno"> 540</tt> <a class="py-toggle" href="#" id="ParseResults.get-toggle" onclick="return toggle('ParseResults.get');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#get">get</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">,</tt> <tt class="py-param">defaultValue</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.get-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.get-expanded"><a name="L541"></a><tt class="py-lineno"> 541</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L542"></a><tt class="py-lineno"> 542</tt> <tt class="py-line"><tt class="py-docstring"> Returns named result matching the given key, or if there is no</tt> </tt>
-<a name="L543"></a><tt class="py-lineno"> 543</tt> <tt class="py-line"><tt class="py-docstring"> such name, then returns the given C{defaultValue} or C{None} if no</tt> </tt>
-<a name="L544"></a><tt class="py-lineno"> 544</tt> <tt class="py-line"><tt class="py-docstring"> C{defaultValue} is specified.</tt> </tt>
-<a name="L545"></a><tt class="py-lineno"> 545</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L546"></a><tt class="py-lineno"> 546</tt> <tt class="py-line"><tt class="py-docstring"> Similar to C{dict.get()}.</tt> </tt>
-<a name="L547"></a><tt class="py-lineno"> 547</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L548"></a><tt class="py-lineno"> 548</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L549"></a><tt class="py-lineno"> 549</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L550"></a><tt class="py-lineno"> 550</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day") </tt> </tt>
-<a name="L551"></a><tt class="py-lineno"> 551</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L552"></a><tt class="py-lineno"> 552</tt> <tt class="py-line"><tt class="py-docstring"> result = date_str.parseString("1999/12/31")</tt> </tt>
-<a name="L553"></a><tt class="py-lineno"> 553</tt> <tt class="py-line"><tt class="py-docstring"> print(result.get("year")) # -> '1999'</tt> </tt>
-<a name="L554"></a><tt class="py-lineno"> 554</tt> <tt class="py-line"><tt class="py-docstring"> print(result.get("hour", "not specified")) # -> 'not specified'</tt> </tt>
-<a name="L555"></a><tt class="py-lineno"> 555</tt> <tt class="py-line"><tt class="py-docstring"> print(result.get("hour")) # -> None</tt> </tt>
-<a name="L556"></a><tt class="py-lineno"> 556</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L557"></a><tt class="py-lineno"> 557</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">key</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">:</tt> </tt>
-<a name="L558"></a><tt class="py-lineno"> 558</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">key</tt><tt class="py-op">]</tt> </tt>
-<a name="L559"></a><tt class="py-lineno"> 559</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L560"></a><tt class="py-lineno"> 560</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">defaultValue</tt> </tt>
-</div><a name="L561"></a><tt class="py-lineno"> 561</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.insert"></a><div id="ParseResults.insert-def"><a name="L562"></a><tt class="py-lineno"> 562</tt> <a class="py-toggle" href="#" id="ParseResults.insert-toggle" onclick="return toggle('ParseResults.insert');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#insert">insert</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">index</tt><tt class="py-op">,</tt> <tt class="py-param">insStr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.insert-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.insert-expanded"><a name="L563"></a><tt class="py-lineno"> 563</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L564"></a><tt class="py-lineno"> 564</tt> <tt class="py-line"><tt class="py-docstring"> Inserts new element at location index in the list of parsed tokens.</tt> </tt>
-<a name="L565"></a><tt class="py-lineno"> 565</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L566"></a><tt class="py-lineno"> 566</tt> <tt class="py-line"><tt class="py-docstring"> Similar to C{list.insert()}.</tt> </tt>
-<a name="L567"></a><tt class="py-lineno"> 567</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L568"></a><tt class="py-lineno"> 568</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L569"></a><tt class="py-lineno"> 569</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']</tt> </tt>
-<a name="L570"></a><tt class="py-lineno"> 570</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L571"></a><tt class="py-lineno"> 571</tt> <tt class="py-line"><tt class="py-docstring"> # use a parse action to insert the parse location in the front of the parsed results</tt> </tt>
-<a name="L572"></a><tt class="py-lineno"> 572</tt> <tt class="py-line"><tt class="py-docstring"> def insert_locn(locn, tokens):</tt> </tt>
-<a name="L573"></a><tt class="py-lineno"> 573</tt> <tt class="py-line"><tt class="py-docstring"> tokens.insert(0, locn)</tt> </tt>
-<a name="L574"></a><tt class="py-lineno"> 574</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).addParseAction(insert_locn).parseString("0 123 321")) # -> [0, '0', '123', '321']</tt> </tt>
-<a name="L575"></a><tt class="py-lineno"> 575</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L576"></a><tt class="py-lineno"> 576</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">.</tt><tt id="link-66" class="py-name" targets="Method pyparsing.ParseResults.insert()=pyparsing.ParseResults-class.html#insert"><a title="pyparsing.ParseResults.insert" class="py-name" href="#" onclick="return doclink('link-66', 'insert', 'link-66');">insert</a></tt><tt class="py-op">(</tt><tt class="py-name">index</tt><tt class="py-op">,</tt> <tt class="py-name">insStr</tt><tt class="py-op">)</tt> </tt>
-<a name="L577"></a><tt class="py-lineno"> 577</tt> <tt class="py-line"> <tt class="py-comment"># fixup indices in token dictionary</tt> </tt>
-<a name="L578"></a><tt class="py-lineno"> 578</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">name</tt><tt class="py-op">,</tt><tt class="py-name">occurrences</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-67" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-67', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L579"></a><tt class="py-lineno"> 579</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">,</tt> <tt class="py-name">position</tt><tt class="py-op">)</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">occurrences</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L580"></a><tt class="py-lineno"> 580</tt> <tt class="py-line"> <tt class="py-name">occurrences</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">,</tt> <tt class="py-name">position</tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-name">position</tt> <tt class="py-op">></tt> <tt class="py-name">index</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L581"></a><tt class="py-lineno"> 581</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.append"></a><div id="ParseResults.append-def"><a name="L582"></a><tt class="py-lineno"> 582</tt> <a class="py-toggle" href="#" id="ParseResults.append-toggle" onclick="return toggle('ParseResults.append');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#append">append</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">item</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.append-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.append-expanded"><a name="L583"></a><tt class="py-lineno"> 583</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L584"></a><tt class="py-lineno"> 584</tt> <tt class="py-line"><tt class="py-docstring"> Add single element to end of ParseResults list of elements.</tt> </tt>
-<a name="L585"></a><tt class="py-lineno"> 585</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L586"></a><tt class="py-lineno"> 586</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L587"></a><tt class="py-lineno"> 587</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']</tt> </tt>
-<a name="L588"></a><tt class="py-lineno"> 588</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L589"></a><tt class="py-lineno"> 589</tt> <tt class="py-line"><tt class="py-docstring"> # use a parse action to compute the sum of the parsed integers, and add it to the end</tt> </tt>
-<a name="L590"></a><tt class="py-lineno"> 590</tt> <tt class="py-line"><tt class="py-docstring"> def append_sum(tokens):</tt> </tt>
-<a name="L591"></a><tt class="py-lineno"> 591</tt> <tt class="py-line"><tt class="py-docstring"> tokens.append(sum(map(int, tokens)))</tt> </tt>
-<a name="L592"></a><tt class="py-lineno"> 592</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(Word(nums)).addParseAction(append_sum).parseString("0 123 321")) # -> ['0', '123', '321', 444]</tt> </tt>
-<a name="L593"></a><tt class="py-lineno"> 593</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L594"></a><tt class="py-lineno"> 594</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">.</tt><tt id="link-68" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-68', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">item</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L595"></a><tt class="py-lineno"> 595</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.extend"></a><div id="ParseResults.extend-def"><a name="L596"></a><tt class="py-lineno"> 596</tt> <a class="py-toggle" href="#" id="ParseResults.extend-toggle" onclick="return toggle('ParseResults.extend');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#extend">extend</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">itemseq</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.extend-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.extend-expanded"><a name="L597"></a><tt class="py-lineno"> 597</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L598"></a><tt class="py-lineno"> 598</tt> <tt class="py-line"><tt class="py-docstring"> Add sequence of elements to end of ParseResults list of elements.</tt> </tt>
-<a name="L599"></a><tt class="py-lineno"> 599</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L600"></a><tt class="py-lineno"> 600</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L601"></a><tt class="py-lineno"> 601</tt> <tt class="py-line"><tt class="py-docstring"> patt = OneOrMore(Word(alphas))</tt> </tt>
-<a name="L602"></a><tt class="py-lineno"> 602</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L603"></a><tt class="py-lineno"> 603</tt> <tt class="py-line"><tt class="py-docstring"> # use a parse action to append the reverse of the matched strings, to make a palindrome</tt> </tt>
-<a name="L604"></a><tt class="py-lineno"> 604</tt> <tt class="py-line"><tt class="py-docstring"> def make_palindrome(tokens):</tt> </tt>
-<a name="L605"></a><tt class="py-lineno"> 605</tt> <tt class="py-line"><tt class="py-docstring"> tokens.extend(reversed([t[::-1] for t in tokens]))</tt> </tt>
-<a name="L606"></a><tt class="py-lineno"> 606</tt> <tt class="py-line"><tt class="py-docstring"> return ''.join(tokens)</tt> </tt>
-<a name="L607"></a><tt class="py-lineno"> 607</tt> <tt class="py-line"><tt class="py-docstring"> print(patt.addParseAction(make_palindrome).parseString("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl'</tt> </tt>
-<a name="L608"></a><tt class="py-lineno"> 608</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L609"></a><tt class="py-lineno"> 609</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">itemseq</tt><tt class="py-op">,</tt> <tt id="link-69" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-69', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L610"></a><tt class="py-lineno"> 610</tt> <tt class="py-line"> <tt class="py-name">self</tt> <tt class="py-op">+=</tt> <tt class="py-name">itemseq</tt> </tt>
-<a name="L611"></a><tt class="py-lineno"> 611</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L612"></a><tt class="py-lineno"> 612</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">.</tt><tt id="link-70" class="py-name" targets="Method pyparsing.ParseResults.extend()=pyparsing.ParseResults-class.html#extend"><a title="pyparsing.ParseResults.extend" class="py-name" href="#" onclick="return doclink('link-70', 'extend', 'link-70');">extend</a></tt><tt class="py-op">(</tt><tt class="py-name">itemseq</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L613"></a><tt class="py-lineno"> 613</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.clear"></a><div id="ParseResults.clear-def"><a name="L614"></a><tt class="py-lineno"> 614</tt> <a class="py-toggle" href="#" id="ParseResults.clear-toggle" onclick="return toggle('ParseResults.clear');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#clear">clear</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.clear-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.clear-expanded"><a name="L615"></a><tt class="py-lineno"> 615</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L616"></a><tt class="py-lineno"> 616</tt> <tt class="py-line"><tt class="py-docstring"> Clear all elements and results names.</tt> </tt>
-<a name="L617"></a><tt class="py-lineno"> 617</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L618"></a><tt class="py-lineno"> 618</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L619"></a><tt class="py-lineno"> 619</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-71" class="py-name" targets="Method pyparsing.ParseResults.clear()=pyparsing.ParseResults-class.html#clear"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-71', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L620"></a><tt class="py-lineno"> 620</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__getattr__"></a><div id="ParseResults.__getattr__-def"><a name="L621"></a><tt class="py-lineno"> 621</tt> <a class="py-toggle" href="#" id="ParseResults.__getattr__-toggle" onclick="return toggle('ParseResults.__getattr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__getattr__">__getattr__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__getattr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__getattr__-expanded"><a name="L622"></a><tt class="py-lineno"> 622</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L623"></a><tt class="py-lineno"> 623</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> </tt>
-<a name="L624"></a><tt class="py-lineno"> 624</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">KeyError</tt><tt class="py-op">:</tt> </tt>
-<a name="L625"></a><tt class="py-lineno"> 625</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt> </tt>
-<a name="L626"></a><tt class="py-lineno"> 626</tt> <tt class="py-line"> </tt>
-<a name="L627"></a><tt class="py-lineno"> 627</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">name</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">:</tt> </tt>
-<a name="L628"></a><tt class="py-lineno"> 628</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">name</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">:</tt> </tt>
-<a name="L629"></a><tt class="py-lineno"> 629</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L630"></a><tt class="py-lineno"> 630</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L631"></a><tt class="py-lineno"> 631</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-72" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-72', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt> <tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">[</tt><tt class="py-name">name</tt><tt class="py-op">]</tt> <tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L632"></a><tt class="py-lineno"> 632</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L633"></a><tt class="py-lineno"> 633</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt> </tt>
-</div><a name="L634"></a><tt class="py-lineno"> 634</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__add__"></a><div id="ParseResults.__add__-def"><a name="L635"></a><tt class="py-lineno"> 635</tt> <a class="py-toggle" href="#" id="ParseResults.__add__-toggle" onclick="return toggle('ParseResults.__add__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__add__">__add__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__add__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__add__-expanded"><a name="L636"></a><tt class="py-lineno"> 636</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-73" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-73', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L637"></a><tt class="py-lineno"> 637</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">+=</tt> <tt class="py-name">other</tt> </tt>
-<a name="L638"></a><tt class="py-lineno"> 638</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L639"></a><tt class="py-lineno"> 639</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__iadd__"></a><div id="ParseResults.__iadd__-def"><a name="L640"></a><tt class="py-lineno"> 640</tt> <a class="py-toggle" href="#" id="ParseResults.__iadd__-toggle" onclick="return toggle('ParseResults.__iadd__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__iadd__">__iadd__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__iadd__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__iadd__-expanded"><a name="L641"></a><tt class="py-lineno"> 641</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">:</tt> </tt>
-<a name="L642"></a><tt class="py-lineno"> 642</tt> <tt class="py-line"> <tt class="py-name">offset</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">)</tt> </tt>
-<a name="L643"></a><tt class="py-lineno"> 643</tt> <tt class="py-line"> <tt class="py-name">addoffset</tt> <tt class="py-op">=</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">a</tt><tt class="py-op">:</tt> <tt class="py-name">offset</tt> <tt class="py-keyword">if</tt> <tt class="py-name">a</tt><tt class="py-op"><</tt><tt class="py-number">0</tt> <tt class="py-keyword">else</tt> <tt class="py-name">a</tt><tt class="py-op">+</tt><tt class="py-name">offset</tt> </tt>
-<a name="L644"></a><tt class="py-lineno"> 644</tt> <tt class="py-line"> <tt class="py-name">otheritems</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-74" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-74', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L645"></a><tt class="py-lineno"> 645</tt> <tt class="py-line"> <tt class="py-name">otherdictitems</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">addoffset</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L646"></a><tt class="py-lineno"> 646</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">vlist</tt><tt class="py-op">)</tt> <tt class="py-keyword">in</tt> <tt class="py-name">otheritems</tt> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">vlist</tt><tt class="py-op">]</tt> </tt>
-<a name="L647"></a><tt class="py-lineno"> 647</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">otherdictitems</tt><tt class="py-op">:</tt> </tt>
-<a name="L648"></a><tt class="py-lineno"> 648</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">v</tt> </tt>
-<a name="L649"></a><tt class="py-lineno"> 649</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt id="link-75" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-75', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L650"></a><tt class="py-lineno"> 650</tt> <tt class="py-line"> <tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">wkref</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L651"></a><tt class="py-lineno"> 651</tt> <tt class="py-line"> </tt>
-<a name="L652"></a><tt class="py-lineno"> 652</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">+=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> </tt>
-<a name="L653"></a><tt class="py-lineno"> 653</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">.</tt><tt class="py-name">update</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt> <tt class="py-op">)</tt> </tt>
-<a name="L654"></a><tt class="py-lineno"> 654</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L655"></a><tt class="py-lineno"> 655</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__radd__"></a><div id="ParseResults.__radd__-def"><a name="L656"></a><tt class="py-lineno"> 656</tt> <a class="py-toggle" href="#" id="ParseResults.__radd__-toggle" onclick="return toggle('ParseResults.__radd__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__radd__">__radd__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__radd__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__radd__-expanded"><a name="L657"></a><tt class="py-lineno"> 657</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">other</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L658"></a><tt class="py-lineno"> 658</tt> <tt class="py-line"> <tt class="py-comment"># useful for merging many ParseResults using sum() builtin</tt> </tt>
-<a name="L659"></a><tt class="py-lineno"> 659</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-76" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-76', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L660"></a><tt class="py-lineno"> 660</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L661"></a><tt class="py-lineno"> 661</tt> <tt class="py-line"> <tt class="py-comment"># this may raise a TypeError - so be it</tt> </tt>
-<a name="L662"></a><tt class="py-lineno"> 662</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L663"></a><tt class="py-lineno"> 663</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__repr__"></a><div id="ParseResults.__repr__-def"><a name="L664"></a><tt class="py-lineno"> 664</tt> <a class="py-toggle" href="#" id="ParseResults.__repr__-toggle" onclick="return toggle('ParseResults.__repr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__repr__">__repr__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__repr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__repr__-expanded"><a name="L665"></a><tt class="py-lineno"> 665</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"(%s, %s)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt> <tt class="py-name">repr</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">repr</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L666"></a><tt class="py-lineno"> 666</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__str__"></a><div id="ParseResults.__str__-def"><a name="L667"></a><tt class="py-lineno"> 667</tt> <a class="py-toggle" href="#" id="ParseResults.__str__-toggle" onclick="return toggle('ParseResults.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__str__-expanded"><a name="L668"></a><tt class="py-lineno"> 668</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">'['</tt> <tt class="py-op">+</tt> <tt class="py-string">', '</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt> <tt id="link-77" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-77', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt class="py-name">repr</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">']'</tt> </tt>
-</div><a name="L669"></a><tt class="py-lineno"> 669</tt> <tt class="py-line"> </tt>
-<a name="ParseResults._asStringList"></a><div id="ParseResults._asStringList-def"><a name="L670"></a><tt class="py-lineno"> 670</tt> <a class="py-toggle" href="#" id="ParseResults._asStringList-toggle" onclick="return toggle('ParseResults._asStringList');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#_asStringList">_asStringList</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">sep</tt><tt class="py-op">=</tt><tt class="py-string">''</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults._asStringList-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults._asStringList-expanded"><a name="L671"></a><tt class="py-lineno"> 671</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L672"></a><tt class="py-lineno"> 672</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">item</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">:</tt> </tt>
-<a name="L673"></a><tt class="py-lineno"> 673</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">out</tt> <tt class="py-keyword">and</tt> <tt class="py-name">sep</tt><tt class="py-op">:</tt> </tt>
-<a name="L674"></a><tt class="py-lineno"> 674</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-78" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-78', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">sep</tt><tt class="py-op">)</tt> </tt>
-<a name="L675"></a><tt class="py-lineno"> 675</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">item</tt><tt class="py-op">,</tt> <tt id="link-79" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-79', 'ParseResults', 'link-39');">ParseResults</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L676"></a><tt class="py-lineno"> 676</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-name">item</tt><tt class="py-op">.</tt><tt class="py-name">_asStringList</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L677"></a><tt class="py-lineno"> 677</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L678"></a><tt class="py-lineno"> 678</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-80" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-80', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">item</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L679"></a><tt class="py-lineno"> 679</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">out</tt> </tt>
-</div><a name="L680"></a><tt class="py-lineno"> 680</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.asList"></a><div id="ParseResults.asList-def"><a name="L681"></a><tt class="py-lineno"> 681</tt> <a class="py-toggle" href="#" id="ParseResults.asList-toggle" onclick="return toggle('ParseResults.asList');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#asList">asList</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.asList-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.asList-expanded"><a name="L682"></a><tt class="py-lineno"> 682</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L683"></a><tt class="py-lineno"> 683</tt> <tt class="py-line"><tt class="py-docstring"> Returns the parse results as a nested list of matching tokens, all converted to strings.</tt> </tt>
-<a name="L684"></a><tt class="py-lineno"> 684</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L685"></a><tt class="py-lineno"> 685</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L686"></a><tt class="py-lineno"> 686</tt> <tt class="py-line"><tt class="py-docstring"> patt = OneOrMore(Word(alphas))</tt> </tt>
-<a name="L687"></a><tt class="py-lineno"> 687</tt> <tt class="py-line"><tt class="py-docstring"> result = patt.parseString("sldkj lsdkj sldkj")</tt> </tt>
-<a name="L688"></a><tt class="py-lineno"> 688</tt> <tt class="py-line"><tt class="py-docstring"> # even though the result prints in string-like form, it is actually a pyparsing ParseResults</tt> </tt>
-<a name="L689"></a><tt class="py-lineno"> 689</tt> <tt class="py-line"><tt class="py-docstring"> print(type(result), result) # -> <class 'pyparsing.ParseResults'> ['sldkj', 'lsdkj', 'sldkj']</tt> </tt>
-<a name="L690"></a><tt class="py-lineno"> 690</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L691"></a><tt class="py-lineno"> 691</tt> <tt class="py-line"><tt class="py-docstring"> # Use asList() to create an actual list</tt> </tt>
-<a name="L692"></a><tt class="py-lineno"> 692</tt> <tt class="py-line"><tt class="py-docstring"> result_list = result.asList()</tt> </tt>
-<a name="L693"></a><tt class="py-lineno"> 693</tt> <tt class="py-line"><tt class="py-docstring"> print(type(result_list), result_list) # -> <class 'list'> ['sldkj', 'lsdkj', 'sldkj']</tt> </tt>
-<a name="L694"></a><tt class="py-lineno"> 694</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L695"></a><tt class="py-lineno"> 695</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-name">res</tt><tt class="py-op">.</tt><tt id="link-81" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-81', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">res</tt><tt class="py-op">,</tt><tt id="link-82" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-82', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt class="py-name">res</tt> <tt class="py-keyword">for</tt> <tt class="py-name">res</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L696"></a><tt class="py-lineno"> 696</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.asDict"></a><div id="ParseResults.asDict-def"><a name="L697"></a><tt class="py-lineno"> 697</tt> <a class="py-toggle" href="#" id="ParseResults.asDict-toggle" onclick="return toggle('ParseResults.asDict');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#asDict">asDict</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.asDict-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.asDict-expanded"><a name="L698"></a><tt class="py-lineno"> 698</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L699"></a><tt class="py-lineno"> 699</tt> <tt class="py-line"><tt class="py-docstring"> Returns the named parse results as a nested dictionary.</tt> </tt>
-<a name="L700"></a><tt class="py-lineno"> 700</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L701"></a><tt class="py-lineno"> 701</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L702"></a><tt class="py-lineno"> 702</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L703"></a><tt class="py-lineno"> 703</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day")</tt> </tt>
-<a name="L704"></a><tt class="py-lineno"> 704</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L705"></a><tt class="py-lineno"> 705</tt> <tt class="py-line"><tt class="py-docstring"> result = date_str.parseString('12/31/1999')</tt> </tt>
-<a name="L706"></a><tt class="py-lineno"> 706</tt> <tt class="py-line"><tt class="py-docstring"> print(type(result), repr(result)) # -> <class 'pyparsing.ParseResults'> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]})</tt> </tt>
-<a name="L707"></a><tt class="py-lineno"> 707</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L708"></a><tt class="py-lineno"> 708</tt> <tt class="py-line"><tt class="py-docstring"> result_dict = result.asDict()</tt> </tt>
-<a name="L709"></a><tt class="py-lineno"> 709</tt> <tt class="py-line"><tt class="py-docstring"> print(type(result_dict), repr(result_dict)) # -> <class 'dict'> {'day': '1999', 'year': '12', 'month': '31'}</tt> </tt>
-<a name="L710"></a><tt class="py-lineno"> 710</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L711"></a><tt class="py-lineno"> 711</tt> <tt class="py-line"><tt class="py-docstring"> # even though a ParseResults supports dict-like access, sometime you just need to have a dict</tt> </tt>
-<a name="L712"></a><tt class="py-lineno"> 712</tt> <tt class="py-line"><tt class="py-docstring"> import json</tt> </tt>
-<a name="L713"></a><tt class="py-lineno"> 713</tt> <tt class="py-line"><tt class="py-docstring"> print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable</tt> </tt>
-<a name="L714"></a><tt class="py-lineno"> 714</tt> <tt class="py-line"><tt class="py-docstring"> print(json.dumps(result.asDict())) # -> {"month": "31", "day": "1999", "year": "12"}</tt> </tt>
-<a name="L715"></a><tt class="py-lineno"> 715</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L716"></a><tt class="py-lineno"> 716</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-83" class="py-name"><a title="pyparsing.PY_3" class="py-name" href="#" onclick="return doclink('link-83', 'PY_3', 'link-5');">PY_3</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L717"></a><tt class="py-lineno"> 717</tt> <tt class="py-line"> <tt class="py-name">item_fn</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-84" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-84', 'items', 'link-51');">items</a></tt> </tt>
-<a name="L718"></a><tt class="py-lineno"> 718</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L719"></a><tt class="py-lineno"> 719</tt> <tt class="py-line"> <tt class="py-name">item_fn</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">iteritems</tt> </tt>
-<a name="L720"></a><tt class="py-lineno"> 720</tt> <tt class="py-line"> </tt>
-<a name="L721"></a><tt class="py-lineno"> 721</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">toItem</tt><tt class="py-op">(</tt><tt class="py-param">obj</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L722"></a><tt class="py-lineno"> 722</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">obj</tt><tt class="py-op">,</tt> <tt id="link-85" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-85', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L723"></a><tt class="py-lineno"> 723</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">obj</tt><tt class="py-op">.</tt><tt id="link-86" class="py-name" targets="Method pyparsing.ParseResults.haskeys()=pyparsing.ParseResults-class.html#haskeys"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-86', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L724"></a><tt class="py-lineno"> 724</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">obj</tt><tt class="py-op">.</tt><tt id="link-87" class="py-name" targets="Method pyparsing.ParseResults.asDict()=pyparsing.ParseResults-class.html#asDict"><a title="pyparsing.ParseResults.asDict" class="py-name" href="#" onclick="return doclink('link-87', 'asDict', 'link-87');">asDict</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L725"></a><tt class="py-lineno"> 725</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L726"></a><tt class="py-lineno"> 726</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-name">toItem</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">obj</tt><tt class="py-op">]</tt> </tt>
-<a name="L727"></a><tt class="py-lineno"> 727</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L728"></a><tt class="py-lineno"> 728</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">obj</tt> </tt>
-</div><a name="L729"></a><tt class="py-lineno"> 729</tt> <tt class="py-line"> </tt>
-<a name="L730"></a><tt class="py-lineno"> 730</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">dict</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">toItem</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">item_fn</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L731"></a><tt class="py-lineno"> 731</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.copy"></a><div id="ParseResults.copy-def"><a name="L732"></a><tt class="py-lineno"> 732</tt> <a class="py-toggle" href="#" id="ParseResults.copy-toggle" onclick="return toggle('ParseResults.copy');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#copy">copy</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.copy-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.copy-expanded"><a name="L733"></a><tt class="py-lineno"> 733</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L734"></a><tt class="py-lineno"> 734</tt> <tt class="py-line"><tt class="py-docstring"> Returns a new copy of a C{ParseResults} object.</tt> </tt>
-<a name="L735"></a><tt class="py-lineno"> 735</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L736"></a><tt class="py-lineno"> 736</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-88" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-88', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">)</tt> </tt>
-<a name="L737"></a><tt class="py-lineno"> 737</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-89" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-89', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L738"></a><tt class="py-lineno"> 738</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> </tt>
-<a name="L739"></a><tt class="py-lineno"> 739</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">.</tt><tt class="py-name">update</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt> <tt class="py-op">)</tt> </tt>
-<a name="L740"></a><tt class="py-lineno"> 740</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> </tt>
-<a name="L741"></a><tt class="py-lineno"> 741</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L742"></a><tt class="py-lineno"> 742</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.asXML"></a><div id="ParseResults.asXML-def"><a name="L743"></a><tt class="py-lineno"> 743</tt> <a class="py-toggle" href="#" id="ParseResults.asXML-toggle" onclick="return toggle('ParseResults.asXML');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#asXML">asXML</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">doctag</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">namedItemsOnly</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-param">indent</tt><tt class="py-op">=</tt><tt class="py-string">""</tt><tt class="py-op">,</tt> <tt class="py-param">formatted</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.asXML-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.asXML-expanded"><a name="L744"></a><tt class="py-lineno"> 744</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L745"></a><tt class="py-lineno"> 745</tt> <tt class="py-line"><tt class="py-docstring"> (Deprecated) Returns the parse results as XML. Tags are created for tokens and lists that have defined results names.</tt> </tt>
-<a name="L746"></a><tt class="py-lineno"> 746</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L747"></a><tt class="py-lineno"> 747</tt> <tt class="py-line"> <tt class="py-name">nl</tt> <tt class="py-op">=</tt> <tt class="py-string">"\n"</tt> </tt>
-<a name="L748"></a><tt class="py-lineno"> 748</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L749"></a><tt class="py-lineno"> 749</tt> <tt class="py-line"> <tt class="py-name">namedItems</tt> <tt class="py-op">=</tt> <tt class="py-name">dict</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">k</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">vlist</tt><tt class="py-op">)</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-90" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-90', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L750"></a><tt class="py-lineno"> 750</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">vlist</tt><tt class="py-op">)</tt> </tt>
-<a name="L751"></a><tt class="py-lineno"> 751</tt> <tt class="py-line"> <tt class="py-name">nextLevelIndent</tt> <tt class="py-op">=</tt> <tt class="py-name">indent</tt> <tt class="py-op">+</tt> <tt class="py-string">" "</tt> </tt>
-<a name="L752"></a><tt class="py-lineno"> 752</tt> <tt class="py-line"> </tt>
-<a name="L753"></a><tt class="py-lineno"> 753</tt> <tt class="py-line"> <tt class="py-comment"># collapse out indents if formatting is not desired</tt> </tt>
-<a name="L754"></a><tt class="py-lineno"> 754</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">formatted</tt><tt class="py-op">:</tt> </tt>
-<a name="L755"></a><tt class="py-lineno"> 755</tt> <tt class="py-line"> <tt class="py-name">indent</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt> </tt>
-<a name="L756"></a><tt class="py-lineno"> 756</tt> <tt class="py-line"> <tt class="py-name">nextLevelIndent</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt> </tt>
-<a name="L757"></a><tt class="py-lineno"> 757</tt> <tt class="py-line"> <tt class="py-name">nl</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt> </tt>
-<a name="L758"></a><tt class="py-lineno"> 758</tt> <tt class="py-line"> </tt>
-<a name="L759"></a><tt class="py-lineno"> 759</tt> <tt class="py-line"> <tt class="py-name">selfTag</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L760"></a><tt class="py-lineno"> 760</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">doctag</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L761"></a><tt class="py-lineno"> 761</tt> <tt class="py-line"> <tt class="py-name">selfTag</tt> <tt class="py-op">=</tt> <tt class="py-name">doctag</tt> </tt>
-<a name="L762"></a><tt class="py-lineno"> 762</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L763"></a><tt class="py-lineno"> 763</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt><tt class="py-op">:</tt> </tt>
-<a name="L764"></a><tt class="py-lineno"> 764</tt> <tt class="py-line"> <tt class="py-name">selfTag</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> </tt>
-<a name="L765"></a><tt class="py-lineno"> 765</tt> <tt class="py-line"> </tt>
-<a name="L766"></a><tt class="py-lineno"> 766</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">selfTag</tt><tt class="py-op">:</tt> </tt>
-<a name="L767"></a><tt class="py-lineno"> 767</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">namedItemsOnly</tt><tt class="py-op">:</tt> </tt>
-<a name="L768"></a><tt class="py-lineno"> 768</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt> </tt>
-<a name="L769"></a><tt class="py-lineno"> 769</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L770"></a><tt class="py-lineno"> 770</tt> <tt class="py-line"> <tt class="py-name">selfTag</tt> <tt class="py-op">=</tt> <tt class="py-string">"ITEM"</tt> </tt>
-<a name="L771"></a><tt class="py-lineno"> 771</tt> <tt class="py-line"> </tt>
-<a name="L772"></a><tt class="py-lineno"> 772</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt> <tt class="py-name">nl</tt><tt class="py-op">,</tt> <tt class="py-name">indent</tt><tt class="py-op">,</tt> <tt class="py-string">"<"</tt><tt class="py-op">,</tt> <tt class="py-name">selfTag</tt><tt class="py-op">,</tt> <tt class="py-string">">"</tt> <tt class="py-op">]</tt> </tt>
-<a name="L773"></a><tt class="py-lineno"> 773</tt> <tt class="py-line"> </tt>
-<a name="L774"></a><tt class="py-lineno"> 774</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">res</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L775"></a><tt class="py-lineno"> 775</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">res</tt><tt class="py-op">,</tt><tt id="link-91" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-91', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L776"></a><tt class="py-lineno"> 776</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">i</tt> <tt class="py-keyword">in</tt> <tt class="py-name">namedItems</tt><tt class="py-op">:</tt> </tt>
-<a name="L777"></a><tt class="py-lineno"> 777</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt> <tt class="py-name">res</tt><tt class="py-op">.</tt><tt id="link-92" class="py-name" targets="Method pyparsing.ParseResults.asXML()=pyparsing.ParseResults-class.html#asXML"><a title="pyparsing.ParseResults.asXML" class="py-name" href="#" onclick="return doclink('link-92', 'asXML', 'link-92');">asXML</a></tt><tt class="py-op">(</tt><tt class="py-name">namedItems</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> </tt>
-<a name="L778"></a><tt class="py-lineno"> 778</tt> <tt class="py-line"> <tt class="py-name">namedItemsOnly</tt> <tt class="py-keyword">and</tt> <tt class="py-name">doctag</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">,</tt> </tt>
-<a name="L779"></a><tt class="py-lineno"> 779</tt> <tt class="py-line"> <tt class="py-name">nextLevelIndent</tt><tt class="py-op">,</tt> </tt>
-<a name="L780"></a><tt class="py-lineno"> 780</tt> <tt class="py-line"> <tt class="py-name">formatted</tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-<a name="L781"></a><tt class="py-lineno"> 781</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L782"></a><tt class="py-lineno"> 782</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt> <tt class="py-name">res</tt><tt class="py-op">.</tt><tt id="link-93" class="py-name"><a title="pyparsing.ParseResults.asXML" class="py-name" href="#" onclick="return doclink('link-93', 'asXML', 'link-92');">asXML</a></tt><tt class="py-op">(</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> </tt>
-<a name="L783"></a><tt class="py-lineno"> 783</tt> <tt class="py-line"> <tt class="py-name">namedItemsOnly</tt> <tt class="py-keyword">and</tt> <tt class="py-name">doctag</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">,</tt> </tt>
-<a name="L784"></a><tt class="py-lineno"> 784</tt> <tt class="py-line"> <tt class="py-name">nextLevelIndent</tt><tt class="py-op">,</tt> </tt>
-<a name="L785"></a><tt class="py-lineno"> 785</tt> <tt class="py-line"> <tt class="py-name">formatted</tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-<a name="L786"></a><tt class="py-lineno"> 786</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L787"></a><tt class="py-lineno"> 787</tt> <tt class="py-line"> <tt class="py-comment"># individual token, see if there is a name for it</tt> </tt>
-<a name="L788"></a><tt class="py-lineno"> 788</tt> <tt class="py-line"> <tt class="py-name">resTag</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L789"></a><tt class="py-lineno"> 789</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">i</tt> <tt class="py-keyword">in</tt> <tt class="py-name">namedItems</tt><tt class="py-op">:</tt> </tt>
-<a name="L790"></a><tt class="py-lineno"> 790</tt> <tt class="py-line"> <tt class="py-name">resTag</tt> <tt class="py-op">=</tt> <tt class="py-name">namedItems</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-<a name="L791"></a><tt class="py-lineno"> 791</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">resTag</tt><tt class="py-op">:</tt> </tt>
-<a name="L792"></a><tt class="py-lineno"> 792</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">namedItemsOnly</tt><tt class="py-op">:</tt> </tt>
-<a name="L793"></a><tt class="py-lineno"> 793</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L794"></a><tt class="py-lineno"> 794</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L795"></a><tt class="py-lineno"> 795</tt> <tt class="py-line"> <tt class="py-name">resTag</tt> <tt class="py-op">=</tt> <tt class="py-string">"ITEM"</tt> </tt>
-<a name="L796"></a><tt class="py-lineno"> 796</tt> <tt class="py-line"> <tt class="py-name">xmlBodyText</tt> <tt class="py-op">=</tt> <tt class="py-name">_xml_escape</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">res</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L797"></a><tt class="py-lineno"> 797</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt> <tt class="py-name">nl</tt><tt class="py-op">,</tt> <tt class="py-name">nextLevelIndent</tt><tt class="py-op">,</tt> <tt class="py-string">"<"</tt><tt class="py-op">,</tt> <tt class="py-name">resTag</tt><tt class="py-op">,</tt> <tt class="py-string">">"</tt><tt class="py-op">,</tt> </tt>
-<a name="L798"></a><tt class="py-lineno"> 798</tt> <tt class="py-line"> <tt class="py-name">xmlBodyText</tt><tt class="py-op">,</tt> </tt>
-<a name="L799"></a><tt class="py-lineno"> 799</tt> <tt class="py-line"> <tt class="py-string">"</"</tt><tt class="py-op">,</tt> <tt class="py-name">resTag</tt><tt class="py-op">,</tt> <tt class="py-string">">"</tt> <tt class="py-op">]</tt> </tt>
-<a name="L800"></a><tt class="py-lineno"> 800</tt> <tt class="py-line"> </tt>
-<a name="L801"></a><tt class="py-lineno"> 801</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt> <tt class="py-name">nl</tt><tt class="py-op">,</tt> <tt class="py-name">indent</tt><tt class="py-op">,</tt> <tt class="py-string">"</"</tt><tt class="py-op">,</tt> <tt class="py-name">selfTag</tt><tt class="py-op">,</tt> <tt class="py-string">">"</tt> <tt class="py-op">]</tt> </tt>
-<a name="L802"></a><tt class="py-lineno"> 802</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">out</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L803"></a><tt class="py-lineno"> 803</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__lookup"></a><div id="ParseResults.__lookup-def"><a name="L804"></a><tt class="py-lineno"> 804</tt> <a class="py-toggle" href="#" id="ParseResults.__lookup-toggle" onclick="return toggle('ParseResults.__lookup');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__lookup">__lookup</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">sub</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__lookup-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__lookup-expanded"><a name="L805"></a><tt class="py-lineno"> 805</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">vlist</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-94" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-94', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L806"></a><tt class="py-lineno"> 806</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">v</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt> <tt class="py-keyword">in</tt> <tt class="py-name">vlist</tt><tt class="py-op">:</tt> </tt>
-<a name="L807"></a><tt class="py-lineno"> 807</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-95" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-95', 'sub', 'link-44');">sub</a></tt> <tt class="py-keyword">is</tt> <tt class="py-name">v</tt><tt class="py-op">:</tt> </tt>
-<a name="L808"></a><tt class="py-lineno"> 808</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">k</tt> </tt>
-<a name="L809"></a><tt class="py-lineno"> 809</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-</div><a name="L810"></a><tt class="py-lineno"> 810</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.getName"></a><div id="ParseResults.getName-def"><a name="L811"></a><tt class="py-lineno"> 811</tt> <a class="py-toggle" href="#" id="ParseResults.getName-toggle" onclick="return toggle('ParseResults.getName');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#getName">getName</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.getName-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.getName-expanded"><a name="L812"></a><tt class="py-lineno"> 812</tt> <tt class="py-line"> <tt class="py-docstring">r"""</tt> </tt>
-<a name="L813"></a><tt class="py-lineno"> 813</tt> <tt class="py-line"><tt class="py-docstring"> Returns the results name for this token expression. Useful when several </tt> </tt>
-<a name="L814"></a><tt class="py-lineno"> 814</tt> <tt class="py-line"><tt class="py-docstring"> different expressions might match at a particular location.</tt> </tt>
-<a name="L815"></a><tt class="py-lineno"> 815</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L816"></a><tt class="py-lineno"> 816</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L817"></a><tt class="py-lineno"> 817</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L818"></a><tt class="py-lineno"> 818</tt> <tt class="py-line"><tt class="py-docstring"> ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d")</tt> </tt>
-<a name="L819"></a><tt class="py-lineno"> 819</tt> <tt class="py-line"><tt class="py-docstring"> house_number_expr = Suppress('#') + Word(nums, alphanums)</tt> </tt>
-<a name="L820"></a><tt class="py-lineno"> 820</tt> <tt class="py-line"><tt class="py-docstring"> user_data = (Group(house_number_expr)("house_number") </tt> </tt>
-<a name="L821"></a><tt class="py-lineno"> 821</tt> <tt class="py-line"><tt class="py-docstring"> | Group(ssn_expr)("ssn")</tt> </tt>
-<a name="L822"></a><tt class="py-lineno"> 822</tt> <tt class="py-line"><tt class="py-docstring"> | Group(integer)("age"))</tt> </tt>
-<a name="L823"></a><tt class="py-lineno"> 823</tt> <tt class="py-line"><tt class="py-docstring"> user_info = OneOrMore(user_data)</tt> </tt>
-<a name="L824"></a><tt class="py-lineno"> 824</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L825"></a><tt class="py-lineno"> 825</tt> <tt class="py-line"><tt class="py-docstring"> result = user_info.parseString("22 111-22-3333 #221B")</tt> </tt>
-<a name="L826"></a><tt class="py-lineno"> 826</tt> <tt class="py-line"><tt class="py-docstring"> for item in result:</tt> </tt>
-<a name="L827"></a><tt class="py-lineno"> 827</tt> <tt class="py-line"><tt class="py-docstring"> print(item.getName(), ':', item[0])</tt> </tt>
-<a name="L828"></a><tt class="py-lineno"> 828</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L829"></a><tt class="py-lineno"> 829</tt> <tt class="py-line"><tt class="py-docstring"> age : 22</tt> </tt>
-<a name="L830"></a><tt class="py-lineno"> 830</tt> <tt class="py-line"><tt class="py-docstring"> ssn : 111-22-3333</tt> </tt>
-<a name="L831"></a><tt class="py-lineno"> 831</tt> <tt class="py-line"><tt class="py-docstring"> house_number : 221B</tt> </tt>
-<a name="L832"></a><tt class="py-lineno"> 832</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L833"></a><tt class="py-lineno"> 833</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt><tt class="py-op">:</tt> </tt>
-<a name="L834"></a><tt class="py-lineno"> 834</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> </tt>
-<a name="L835"></a><tt class="py-lineno"> 835</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt><tt class="py-op">:</tt> </tt>
-<a name="L836"></a><tt class="py-lineno"> 836</tt> <tt class="py-line"> <tt class="py-name">par</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L837"></a><tt class="py-lineno"> 837</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">par</tt><tt class="py-op">:</tt> </tt>
-<a name="L838"></a><tt class="py-lineno"> 838</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">par</tt><tt class="py-op">.</tt><tt class="py-name">__lookup</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L839"></a><tt class="py-lineno"> 839</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L840"></a><tt class="py-lineno"> 840</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L841"></a><tt class="py-lineno"> 841</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-op">(</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L842"></a><tt class="py-lineno"> 842</tt> <tt class="py-line"> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L843"></a><tt class="py-lineno"> 843</tt> <tt class="py-line"> <tt class="py-name">next</tt><tt class="py-op">(</tt><tt class="py-name">iter</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-96" class="py-name"><a title="pyparsing.ParseResults.values" class="py-name" href="#" onclick="return doclink('link-96', 'values', 'link-58');">values</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-op">(</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L844"></a><tt class="py-lineno"> 844</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">next</tt><tt class="py-op">(</tt><tt class="py-name">iter</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-97" class="py-name"><a title="pyparsing.ParseResults.keys" class="py-name" href="#" onclick="return doclink('link-97', 'keys', 'link-56');">keys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L845"></a><tt class="py-lineno"> 845</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L846"></a><tt class="py-lineno"> 846</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-</div><a name="L847"></a><tt class="py-lineno"> 847</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.dump"></a><div id="ParseResults.dump-def"><a name="L848"></a><tt class="py-lineno"> 848</tt> <a class="py-toggle" href="#" id="ParseResults.dump-toggle" onclick="return toggle('ParseResults.dump');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#dump">dump</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">indent</tt><tt class="py-op">=</tt><tt class="py-string">''</tt><tt class="py-op">,</tt> <tt class="py-param">depth</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">full</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.dump-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.dump-expanded"><a name="L849"></a><tt class="py-lineno"> 849</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L850"></a><tt class="py-lineno"> 850</tt> <tt class="py-line"><tt class="py-docstring"> Diagnostic method for listing out the contents of a C{ParseResults}.</tt> </tt>
-<a name="L851"></a><tt class="py-lineno"> 851</tt> <tt class="py-line"><tt class="py-docstring"> Accepts an optional C{indent} argument so that this string can be embedded</tt> </tt>
-<a name="L852"></a><tt class="py-lineno"> 852</tt> <tt class="py-line"><tt class="py-docstring"> in a nested display of other data.</tt> </tt>
-<a name="L853"></a><tt class="py-lineno"> 853</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L854"></a><tt class="py-lineno"> 854</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L855"></a><tt class="py-lineno"> 855</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L856"></a><tt class="py-lineno"> 856</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day")</tt> </tt>
-<a name="L857"></a><tt class="py-lineno"> 857</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L858"></a><tt class="py-lineno"> 858</tt> <tt class="py-line"><tt class="py-docstring"> result = date_str.parseString('12/31/1999')</tt> </tt>
-<a name="L859"></a><tt class="py-lineno"> 859</tt> <tt class="py-line"><tt class="py-docstring"> print(result.dump())</tt> </tt>
-<a name="L860"></a><tt class="py-lineno"> 860</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L861"></a><tt class="py-lineno"> 861</tt> <tt class="py-line"><tt class="py-docstring"> ['12', '/', '31', '/', '1999']</tt> </tt>
-<a name="L862"></a><tt class="py-lineno"> 862</tt> <tt class="py-line"><tt class="py-docstring"> - day: 1999</tt> </tt>
-<a name="L863"></a><tt class="py-lineno"> 863</tt> <tt class="py-line"><tt class="py-docstring"> - month: 31</tt> </tt>
-<a name="L864"></a><tt class="py-lineno"> 864</tt> <tt class="py-line"><tt class="py-docstring"> - year: 12</tt> </tt>
-<a name="L865"></a><tt class="py-lineno"> 865</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L866"></a><tt class="py-lineno"> 866</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L867"></a><tt class="py-lineno"> 867</tt> <tt class="py-line"> <tt class="py-name">NL</tt> <tt class="py-op">=</tt> <tt class="py-string">'\n'</tt> </tt>
-<a name="L868"></a><tt class="py-lineno"> 868</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-98" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-98', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">indent</tt><tt class="py-op">+</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-99" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-99', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L869"></a><tt class="py-lineno"> 869</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">full</tt><tt class="py-op">:</tt> </tt>
-<a name="L870"></a><tt class="py-lineno"> 870</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-100" class="py-name"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-100', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L871"></a><tt class="py-lineno"> 871</tt> <tt class="py-line"> <tt id="link-101" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-101', 'items', 'link-51');">items</a></tt> <tt class="py-op">=</tt> <tt class="py-name">sorted</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">v</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-102" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-102', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L872"></a><tt class="py-lineno"> 872</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt id="link-103" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-103', 'items', 'link-51');">items</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L873"></a><tt class="py-lineno"> 873</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">out</tt><tt class="py-op">:</tt> </tt>
-<a name="L874"></a><tt class="py-lineno"> 874</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-104" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-104', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">NL</tt><tt class="py-op">)</tt> </tt>
-<a name="L875"></a><tt class="py-lineno"> 875</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-105" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-105', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-string">"%s%s- %s: "</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-name">depth</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">k</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L876"></a><tt class="py-lineno"> 876</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">,</tt><tt id="link-106" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-106', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L877"></a><tt class="py-lineno"> 877</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">v</tt><tt class="py-op">:</tt> </tt>
-<a name="L878"></a><tt class="py-lineno"> 878</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-107" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-107', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">v</tt><tt class="py-op">.</tt><tt id="link-108" class="py-name" targets="Method pyparsing.ParseResults.dump()=pyparsing.ParseResults-class.html#dump"><a title="pyparsing.ParseResults.dump" class="py-name" href="#" onclick="return doclink('link-108', 'dump', 'link-108');">dump</a></tt><tt class="py-op">(</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-name">depth</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L879"></a><tt class="py-lineno"> 879</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L880"></a><tt class="py-lineno"> 880</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-109" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-109', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L881"></a><tt class="py-lineno"> 881</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L882"></a><tt class="py-lineno"> 882</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-110" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-110', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">repr</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L883"></a><tt class="py-lineno"> 883</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">any</tt><tt class="py-op">(</tt><tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">vv</tt><tt class="py-op">,</tt><tt id="link-111" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-111', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">vv</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L884"></a><tt class="py-lineno"> 884</tt> <tt class="py-line"> <tt class="py-name">v</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt> </tt>
-<a name="L885"></a><tt class="py-lineno"> 885</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">vv</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">v</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L886"></a><tt class="py-lineno"> 886</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">vv</tt><tt class="py-op">,</tt><tt id="link-112" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-112', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L887"></a><tt class="py-lineno"> 887</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-113" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-113', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">"\n%s%s[%d]:\n%s%s%s"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-name">depth</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-name">depth</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">vv</tt><tt class="py-op">.</tt><tt id="link-114" class="py-name"><a title="pyparsing.ParseResults.dump" class="py-name" href="#" onclick="return doclink('link-114', 'dump', 'link-108');">dump</a></tt><tt class="py-op">(</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-name">depth</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L888"></a><tt class="py-lineno"> 888</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L889"></a><tt class="py-lineno"> 889</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-115" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-115', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">"\n%s%s[%d]:\n%s%s%s"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-name">depth</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">indent</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-name">depth</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">vv</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L890"></a><tt class="py-lineno"> 890</tt> <tt class="py-line"> </tt>
-<a name="L891"></a><tt class="py-lineno"> 891</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">out</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L892"></a><tt class="py-lineno"> 892</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.pprint"></a><div id="ParseResults.pprint-def"><a name="L893"></a><tt class="py-lineno"> 893</tt> <a class="py-toggle" href="#" id="ParseResults.pprint-toggle" onclick="return toggle('ParseResults.pprint');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#pprint">pprint</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.pprint-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.pprint-expanded"><a name="L894"></a><tt class="py-lineno"> 894</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L895"></a><tt class="py-lineno"> 895</tt> <tt class="py-line"><tt class="py-docstring"> Pretty-printer for parsed results as a list, using the C{pprint} module.</tt> </tt>
-<a name="L896"></a><tt class="py-lineno"> 896</tt> <tt class="py-line"><tt class="py-docstring"> Accepts additional positional or keyword args as defined for the </tt> </tt>
-<a name="L897"></a><tt class="py-lineno"> 897</tt> <tt class="py-line"><tt class="py-docstring"> C{pprint.pprint} method. (U{http://docs.python.org/3/library/pprint.html#pprint.pprint})</tt> </tt>
-<a name="L898"></a><tt class="py-lineno"> 898</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L899"></a><tt class="py-lineno"> 899</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L900"></a><tt class="py-lineno"> 900</tt> <tt class="py-line"><tt class="py-docstring"> ident = Word(alphas, alphanums)</tt> </tt>
-<a name="L901"></a><tt class="py-lineno"> 901</tt> <tt class="py-line"><tt class="py-docstring"> num = Word(nums)</tt> </tt>
-<a name="L902"></a><tt class="py-lineno"> 902</tt> <tt class="py-line"><tt class="py-docstring"> func = Forward()</tt> </tt>
-<a name="L903"></a><tt class="py-lineno"> 903</tt> <tt class="py-line"><tt class="py-docstring"> term = ident | num | Group('(' + func + ')')</tt> </tt>
-<a name="L904"></a><tt class="py-lineno"> 904</tt> <tt class="py-line"><tt class="py-docstring"> func <<= ident + Group(Optional(delimitedList(term)))</tt> </tt>
-<a name="L905"></a><tt class="py-lineno"> 905</tt> <tt class="py-line"><tt class="py-docstring"> result = func.parseString("fna a,b,(fnb c,d,200),100")</tt> </tt>
-<a name="L906"></a><tt class="py-lineno"> 906</tt> <tt class="py-line"><tt class="py-docstring"> result.pprint(width=40)</tt> </tt>
-<a name="L907"></a><tt class="py-lineno"> 907</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L908"></a><tt class="py-lineno"> 908</tt> <tt class="py-line"><tt class="py-docstring"> ['fna',</tt> </tt>
-<a name="L909"></a><tt class="py-lineno"> 909</tt> <tt class="py-line"><tt class="py-docstring"> ['a',</tt> </tt>
-<a name="L910"></a><tt class="py-lineno"> 910</tt> <tt class="py-line"><tt class="py-docstring"> 'b',</tt> </tt>
-<a name="L911"></a><tt class="py-lineno"> 911</tt> <tt class="py-line"><tt class="py-docstring"> ['(', 'fnb', ['c', 'd', '200'], ')'],</tt> </tt>
-<a name="L912"></a><tt class="py-lineno"> 912</tt> <tt class="py-line"><tt class="py-docstring"> '100']]</tt> </tt>
-<a name="L913"></a><tt class="py-lineno"> 913</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L914"></a><tt class="py-lineno"> 914</tt> <tt class="py-line"> <tt id="link-116" class="py-name"><a title="pyparsing.ParseResults.pprint" class="py-name" href="#" onclick="return doclink('link-116', 'pprint', 'link-3');">pprint</a></tt><tt class="py-op">.</tt><tt id="link-117" class="py-name"><a title="pyparsing.ParseResults.pprint" class="py-name" href="#" onclick="return doclink('link-117', 'pprint', 'link-3');">pprint</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-118" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-118', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-name">args</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-name">kwargs</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L915"></a><tt class="py-lineno"> 915</tt> <tt class="py-line"> </tt>
-<a name="L916"></a><tt class="py-lineno"> 916</tt> <tt class="py-line"> <tt class="py-comment"># add support for pickle protocol</tt> </tt>
-<a name="ParseResults.__getstate__"></a><div id="ParseResults.__getstate__-def"><a name="L917"></a><tt class="py-lineno"> 917</tt> <a class="py-toggle" href="#" id="ParseResults.__getstate__-toggle" onclick="return toggle('ParseResults.__getstate__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__getstate__">__getstate__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__getstate__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__getstate__-expanded"><a name="L918"></a><tt class="py-lineno"> 918</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">,</tt> </tt>
-<a name="L919"></a><tt class="py-lineno"> 919</tt> <tt class="py-line"> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">.</tt><tt id="link-119" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-119', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L920"></a><tt class="py-lineno"> 920</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-name">None</tt><tt class="py-op">,</tt> </tt>
-<a name="L921"></a><tt class="py-lineno"> 921</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">,</tt> </tt>
-<a name="L922"></a><tt class="py-lineno"> 922</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L923"></a><tt class="py-lineno"> 923</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__setstate__"></a><div id="ParseResults.__setstate__-def"><a name="L924"></a><tt class="py-lineno"> 924</tt> <a class="py-toggle" href="#" id="ParseResults.__setstate__-toggle" onclick="return toggle('ParseResults.__setstate__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__setstate__">__setstate__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">state</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__setstate__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__setstate__-expanded"><a name="L925"></a><tt class="py-lineno"> 925</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt> <tt class="py-op">=</tt> <tt class="py-name">state</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L926"></a><tt class="py-lineno"> 926</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__tokdict</tt><tt class="py-op">,</tt> </tt>
-<a name="L927"></a><tt class="py-lineno"> 927</tt> <tt class="py-line"> <tt class="py-name">par</tt><tt class="py-op">,</tt> </tt>
-<a name="L928"></a><tt class="py-lineno"> 928</tt> <tt class="py-line"> <tt class="py-name">inAccumNames</tt><tt class="py-op">,</tt> </tt>
-<a name="L929"></a><tt class="py-lineno"> 929</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt><tt class="py-op">)</tt> <tt class="py-op">=</tt> <tt class="py-name">state</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L930"></a><tt class="py-lineno"> 930</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt><tt class="py-op">}</tt> </tt>
-<a name="L931"></a><tt class="py-lineno"> 931</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__accumNames</tt><tt class="py-op">.</tt><tt class="py-name">update</tt><tt class="py-op">(</tt><tt class="py-name">inAccumNames</tt><tt class="py-op">)</tt> </tt>
-<a name="L932"></a><tt class="py-lineno"> 932</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">par</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L933"></a><tt class="py-lineno"> 933</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">wkref</tt><tt class="py-op">(</tt><tt class="py-name">par</tt><tt class="py-op">)</tt> </tt>
-<a name="L934"></a><tt class="py-lineno"> 934</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L935"></a><tt class="py-lineno"> 935</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__parent</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-</div><a name="L936"></a><tt class="py-lineno"> 936</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__getnewargs__"></a><div id="ParseResults.__getnewargs__-def"><a name="L937"></a><tt class="py-lineno"> 937</tt> <a class="py-toggle" href="#" id="ParseResults.__getnewargs__-toggle" onclick="return toggle('ParseResults.__getnewargs__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__getnewargs__">__getnewargs__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__getnewargs__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__getnewargs__-expanded"><a name="L938"></a><tt class="py-lineno"> 938</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__toklist</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__name</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__asList</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__modal</tt> </tt>
-</div><a name="L939"></a><tt class="py-lineno"> 939</tt> <tt class="py-line"> </tt>
-<a name="ParseResults.__dir__"></a><div id="ParseResults.__dir__-def"><a name="L940"></a><tt class="py-lineno"> 940</tt> <a class="py-toggle" href="#" id="ParseResults.__dir__-toggle" onclick="return toggle('ParseResults.__dir__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseResults-class.html#__dir__">__dir__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseResults.__dir__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseResults.__dir__-expanded"><a name="L941"></a><tt class="py-lineno"> 941</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt><tt class="py-name">dir</tt><tt class="py-op">(</tt><tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-120" class="py-name"><a title="pyparsing.ParseResults.keys" class="py-name" href="#" onclick="return doclink('link-120', 'keys', 'link-56');">keys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L942"></a><tt class="py-lineno"> 942</tt> <tt class="py-line"> </tt>
-<a name="L943"></a><tt class="py-lineno"> 943</tt> <tt class="py-line"><tt class="py-name">collections</tt><tt class="py-op">.</tt><tt class="py-name">MutableMapping</tt><tt class="py-op">.</tt><tt class="py-name">register</tt><tt class="py-op">(</tt><tt id="link-121" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-121', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> </tt>
-<a name="col"></a><div id="col-def"><a name="L944"></a><tt class="py-lineno"> 944</tt> <tt class="py-line"> </tt>
-<a name="L945"></a><tt class="py-lineno"> 945</tt> <a class="py-toggle" href="#" id="col-toggle" onclick="return toggle('col');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#col">col</a> <tt class="py-op">(</tt><tt class="py-param">loc</tt><tt class="py-op">,</tt><tt class="py-param">strg</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="col-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="col-expanded"><a name="L946"></a><tt class="py-lineno"> 946</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns current column within a string, counting newlines as line separators.</tt> </tt>
-<a name="L947"></a><tt class="py-lineno"> 947</tt> <tt class="py-line"><tt class="py-docstring"> The first column is number 1.</tt> </tt>
-<a name="L948"></a><tt class="py-lineno"> 948</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L949"></a><tt class="py-lineno"> 949</tt> <tt class="py-line"><tt class="py-docstring"> Note: the default parsing behavior is to expand tabs in the input string</tt> </tt>
-<a name="L950"></a><tt class="py-lineno"> 950</tt> <tt class="py-line"><tt class="py-docstring"> before starting the parsing process. See L{I{ParserElement.parseString}<ParserElement.parseString>} for more information</tt> </tt>
-<a name="L951"></a><tt class="py-lineno"> 951</tt> <tt class="py-line"><tt class="py-docstring"> on parsing strings containing C{<TAB>}s, and suggested methods to maintain a</tt> </tt>
-<a name="L952"></a><tt class="py-lineno"> 952</tt> <tt class="py-line"><tt class="py-docstring"> consistent view of the parsed string, the parse location, and line and column</tt> </tt>
-<a name="L953"></a><tt class="py-lineno"> 953</tt> <tt class="py-line"><tt class="py-docstring"> positions within the parsed string.</tt> </tt>
-<a name="L954"></a><tt class="py-lineno"> 954</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L955"></a><tt class="py-lineno"> 955</tt> <tt class="py-line"> <tt class="py-name">s</tt> <tt class="py-op">=</tt> <tt class="py-name">strg</tt> </tt>
-<a name="L956"></a><tt class="py-lineno"> 956</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-number">1</tt> <tt class="py-keyword">if</tt> <tt class="py-number">0</tt><tt class="py-op"><</tt><tt class="py-name">loc</tt><tt class="py-op"><</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">s</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-string">'\n'</tt> <tt class="py-keyword">else</tt> <tt class="py-name">loc</tt> <tt class="py-op">-</tt> <tt class="py-name">s</tt><tt class="py-op">.</tt><tt class="py-name">rfind</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt> <tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L957"></a><tt class="py-lineno"> 957</tt> <tt class="py-line"> </tt>
-<a name="lineno"></a><div id="lineno-def"><a name="L958"></a><tt class="py-lineno"> 958</tt> <a class="py-toggle" href="#" id="lineno-toggle" onclick="return toggle('lineno');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#lineno">lineno</a><tt class="py-op">(</tt><tt class="py-param">loc</tt><tt class="py-op">,</tt><tt class="py-param">strg</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="lineno-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="lineno-expanded"><a name="L959"></a><tt class="py-lineno"> 959</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns current line number within a string, counting newlines as line separators.</tt> </tt>
-<a name="L960"></a><tt class="py-lineno"> 960</tt> <tt class="py-line"><tt class="py-docstring"> The first line is number 1.</tt> </tt>
-<a name="L961"></a><tt class="py-lineno"> 961</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L962"></a><tt class="py-lineno"> 962</tt> <tt class="py-line"><tt class="py-docstring"> Note: the default parsing behavior is to expand tabs in the input string</tt> </tt>
-<a name="L963"></a><tt class="py-lineno"> 963</tt> <tt class="py-line"><tt class="py-docstring"> before starting the parsing process. See L{I{ParserElement.parseString}<ParserElement.parseString>} for more information</tt> </tt>
-<a name="L964"></a><tt class="py-lineno"> 964</tt> <tt class="py-line"><tt class="py-docstring"> on parsing strings containing C{<TAB>}s, and suggested methods to maintain a</tt> </tt>
-<a name="L965"></a><tt class="py-lineno"> 965</tt> <tt class="py-line"><tt class="py-docstring"> consistent view of the parsed string, the parse location, and line and column</tt> </tt>
-<a name="L966"></a><tt class="py-lineno"> 966</tt> <tt class="py-line"><tt class="py-docstring"> positions within the parsed string.</tt> </tt>
-<a name="L967"></a><tt class="py-lineno"> 967</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L968"></a><tt class="py-lineno"> 968</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">strg</tt><tt class="py-op">.</tt><tt class="py-name">count</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-number">1</tt> </tt>
-</div><a name="L969"></a><tt class="py-lineno"> 969</tt> <tt class="py-line"> </tt>
-<a name="line"></a><div id="line-def"><a name="L970"></a><tt class="py-lineno"> 970</tt> <a class="py-toggle" href="#" id="line-toggle" onclick="return toggle('line');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#line">line</a><tt class="py-op">(</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">strg</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="line-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="line-expanded"><a name="L971"></a><tt class="py-lineno"> 971</tt> <tt class="py-line"> <tt class="py-docstring">"""Returns the line of text containing loc within a string, counting newlines as line separators.</tt> </tt>
-<a name="L972"></a><tt class="py-lineno"> 972</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L973"></a><tt class="py-lineno"> 973</tt> <tt class="py-line"> <tt class="py-name">lastCR</tt> <tt class="py-op">=</tt> <tt class="py-name">strg</tt><tt class="py-op">.</tt><tt class="py-name">rfind</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt> <tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L974"></a><tt class="py-lineno"> 974</tt> <tt class="py-line"> <tt class="py-name">nextCR</tt> <tt class="py-op">=</tt> <tt class="py-name">strg</tt><tt class="py-op">.</tt><tt class="py-name">find</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L975"></a><tt class="py-lineno"> 975</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">nextCR</tt> <tt class="py-op">>=</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L976"></a><tt class="py-lineno"> 976</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">strg</tt><tt class="py-op">[</tt><tt class="py-name">lastCR</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-name">nextCR</tt><tt class="py-op">]</tt> </tt>
-<a name="L977"></a><tt class="py-lineno"> 977</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L978"></a><tt class="py-lineno"> 978</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">strg</tt><tt class="py-op">[</tt><tt class="py-name">lastCR</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L979"></a><tt class="py-lineno"> 979</tt> <tt class="py-line"> </tt>
-<a name="_defaultStartDebugAction"></a><div id="_defaultStartDebugAction-def"><a name="L980"></a><tt class="py-lineno"> 980</tt> <a class="py-toggle" href="#" id="_defaultStartDebugAction-toggle" onclick="return toggle('_defaultStartDebugAction');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_defaultStartDebugAction">_defaultStartDebugAction</a><tt class="py-op">(</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_defaultStartDebugAction-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_defaultStartDebugAction-expanded"><a name="L981"></a><tt class="py-lineno"> 981</tt> <tt class="py-line"> <tt class="py-keyword">print</tt> <tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-string">"Match "</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">" at loc "</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"(%d,%d)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt> <tt id="link-122" class="py-name"><a title="pyparsing.lineno" class="py-name" href="#" onclick="return doclink('link-122', 'lineno', 'link-30');">lineno</a></tt><tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt id="link-123" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-123', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L982"></a><tt class="py-lineno"> 982</tt> <tt class="py-line"> </tt>
-<a name="_defaultSuccessDebugAction"></a><div id="_defaultSuccessDebugAction-def"><a name="L983"></a><tt class="py-lineno"> 983</tt> <a class="py-toggle" href="#" id="_defaultSuccessDebugAction-toggle" onclick="return toggle('_defaultSuccessDebugAction');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_defaultSuccessDebugAction">_defaultSuccessDebugAction</a><tt class="py-op">(</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">startloc</tt><tt class="py-op">,</tt> <tt class="py-param">endloc</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">toks</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_defaultSuccessDebugAction-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_defaultSuccessDebugAction-expanded"><a name="L984"></a><tt class="py-lineno"> 984</tt> <tt class="py-line"> <tt class="py-keyword">print</tt> <tt class="py-op">(</tt><tt class="py-string">"Matched "</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">" -> "</tt> <tt class="py-op">+</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">toks</tt><tt class="py-op">.</tt><tt id="link-124" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-124', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L985"></a><tt class="py-lineno"> 985</tt> <tt class="py-line"> </tt>
-<a name="_defaultExceptionDebugAction"></a><div id="_defaultExceptionDebugAction-def"><a name="L986"></a><tt class="py-lineno"> 986</tt> <a class="py-toggle" href="#" id="_defaultExceptionDebugAction-toggle" onclick="return toggle('_defaultExceptionDebugAction');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_defaultExceptionDebugAction">_defaultExceptionDebugAction</a><tt class="py-op">(</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">exc</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_defaultExceptionDebugAction-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_defaultExceptionDebugAction-expanded"><a name="L987"></a><tt class="py-lineno"> 987</tt> <tt class="py-line"> <tt class="py-keyword">print</tt> <tt class="py-op">(</tt><tt class="py-string">"Exception raised:"</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">exc</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L988"></a><tt class="py-lineno"> 988</tt> <tt class="py-line"> </tt>
-<a name="nullDebugAction"></a><div id="nullDebugAction-def"><a name="L989"></a><tt class="py-lineno"> 989</tt> <a class="py-toggle" href="#" id="nullDebugAction-toggle" onclick="return toggle('nullDebugAction');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#nullDebugAction">nullDebugAction</a><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="nullDebugAction-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="nullDebugAction-expanded"><a name="L990"></a><tt class="py-lineno"> 990</tt> <tt class="py-line"> <tt class="py-docstring">"""'Do-nothing' debug action, to suppress debugging output during parsing."""</tt> </tt>
-<a name="L991"></a><tt class="py-lineno"> 991</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L992"></a><tt class="py-lineno"> 992</tt> <tt class="py-line"> </tt>
-<a name="L993"></a><tt class="py-lineno"> 993</tt> <tt class="py-line"><tt class="py-comment"># Only works on Python 3.x - nonlocal is toxic to Python 2 installs</tt> </tt>
-<a name="L994"></a><tt class="py-lineno"> 994</tt> <tt class="py-line"><tt class="py-comment">#~ 'decorator to trim function calls to match the arity of the target'</tt> </tt>
-<a name="L995"></a><tt class="py-lineno"> 995</tt> <tt class="py-line"><tt class="py-comment">#~ def _trim_arity(func, maxargs=3):</tt> </tt>
-<a name="L996"></a><tt class="py-lineno"> 996</tt> <tt class="py-line"> <tt class="py-comment">#~ if func in singleArgBuiltins:</tt> </tt>
-<a name="L997"></a><tt class="py-lineno"> 997</tt> <tt class="py-line"> <tt class="py-comment">#~ return lambda s,l,t: func(t)</tt> </tt>
-<a name="L998"></a><tt class="py-lineno"> 998</tt> <tt class="py-line"> <tt class="py-comment">#~ limit = 0</tt> </tt>
-<a name="L999"></a><tt class="py-lineno"> 999</tt> <tt class="py-line"> <tt class="py-comment">#~ foundArity = False</tt> </tt>
-<a name="L1000"></a><tt class="py-lineno">1000</tt> <tt class="py-line"> <tt class="py-comment">#~ def wrapper(*args):</tt> </tt>
-<a name="L1001"></a><tt class="py-lineno">1001</tt> <tt class="py-line"> <tt class="py-comment">#~ nonlocal limit,foundArity</tt> </tt>
-<a name="L1002"></a><tt class="py-lineno">1002</tt> <tt class="py-line"> <tt class="py-comment">#~ while 1:</tt> </tt>
-<a name="L1003"></a><tt class="py-lineno">1003</tt> <tt class="py-line"> <tt class="py-comment">#~ try:</tt> </tt>
-<a name="L1004"></a><tt class="py-lineno">1004</tt> <tt class="py-line"> <tt class="py-comment">#~ ret = func(*args[limit:])</tt> </tt>
-<a name="L1005"></a><tt class="py-lineno">1005</tt> <tt class="py-line"> <tt class="py-comment">#~ foundArity = True</tt> </tt>
-<a name="L1006"></a><tt class="py-lineno">1006</tt> <tt class="py-line"> <tt class="py-comment">#~ return ret</tt> </tt>
-<a name="L1007"></a><tt class="py-lineno">1007</tt> <tt class="py-line"> <tt class="py-comment">#~ except TypeError:</tt> </tt>
-<a name="L1008"></a><tt class="py-lineno">1008</tt> <tt class="py-line"> <tt class="py-comment">#~ if limit == maxargs or foundArity:</tt> </tt>
-<a name="L1009"></a><tt class="py-lineno">1009</tt> <tt class="py-line"> <tt class="py-comment">#~ raise</tt> </tt>
-<a name="L1010"></a><tt class="py-lineno">1010</tt> <tt class="py-line"> <tt class="py-comment">#~ limit += 1</tt> </tt>
-<a name="L1011"></a><tt class="py-lineno">1011</tt> <tt class="py-line"> <tt class="py-comment">#~ continue</tt> </tt>
-<a name="L1012"></a><tt class="py-lineno">1012</tt> <tt class="py-line"> <tt class="py-comment">#~ return wrapper</tt> </tt>
-<a name="L1013"></a><tt class="py-lineno">1013</tt> <tt class="py-line"> </tt>
-<a name="L1014"></a><tt class="py-lineno">1014</tt> <tt class="py-line"><tt class="py-comment"># this version is Python 2.x-3.x cross-compatible</tt> </tt>
-<a name="L1015"></a><tt class="py-lineno">1015</tt> <tt class="py-line"><tt class="py-string">'decorator to trim function calls to match the arity of the target'</tt> </tt>
-<a name="_trim_arity"></a><div id="_trim_arity-def"><a name="L1016"></a><tt class="py-lineno">1016</tt> <a class="py-toggle" href="#" id="_trim_arity-toggle" onclick="return toggle('_trim_arity');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_trim_arity">_trim_arity</a><tt class="py-op">(</tt><tt class="py-param">func</tt><tt class="py-op">,</tt> <tt class="py-param">maxargs</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_trim_arity-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_trim_arity-expanded"><a name="L1017"></a><tt class="py-lineno">1017</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">func</tt> <tt class="py-keyword">in</tt> <tt id="link-125" class="py-name"><a title="pyparsing.singleArgBuiltins" class="py-name" href="#" onclick="return doclink('link-125', 'singleArgBuiltins', 'link-9');">singleArgBuiltins</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1018"></a><tt class="py-lineno">1018</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">func</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> </tt>
-<a name="L1019"></a><tt class="py-lineno">1019</tt> <tt class="py-line"> <tt class="py-name">limit</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L1020"></a><tt class="py-lineno">1020</tt> <tt class="py-line"> <tt class="py-name">foundArity</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">False</tt><tt class="py-op">]</tt> </tt>
-<a name="L1021"></a><tt class="py-lineno">1021</tt> <tt class="py-line"> </tt>
-<a name="L1022"></a><tt class="py-lineno">1022</tt> <tt class="py-line"> <tt class="py-comment"># traceback return data structure changed in Py3.5 - normalize back to plain tuples</tt> </tt>
-<a name="L1023"></a><tt class="py-lineno">1023</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-126" class="py-name"><a title="pyparsing.system_version" class="py-name" href="#" onclick="return doclink('link-126', 'system_version', 'link-4');">system_version</a></tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">2</tt><tt class="py-op">]</tt> <tt class="py-op">>=</tt> <tt class="py-op">(</tt><tt class="py-number">3</tt><tt class="py-op">,</tt><tt class="py-number">5</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1024"></a><tt class="py-lineno">1024</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">extract_stack</tt><tt class="py-op">(</tt><tt class="py-param">limit</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1025"></a><tt class="py-lineno">1025</tt> <tt class="py-line"> <tt class="py-comment"># special handling for Python 3.5.0 - extra deep call stack by 1</tt> </tt>
-<a name="L1026"></a><tt class="py-lineno">1026</tt> <tt class="py-line"> <tt class="py-name">offset</tt> <tt class="py-op">=</tt> <tt class="py-op">-</tt><tt class="py-number">3</tt> <tt class="py-keyword">if</tt> <tt id="link-127" class="py-name"><a title="pyparsing.system_version" class="py-name" href="#" onclick="return doclink('link-127', 'system_version', 'link-4');">system_version</a></tt> <tt class="py-op">==</tt> <tt class="py-op">(</tt><tt class="py-number">3</tt><tt class="py-op">,</tt><tt class="py-number">5</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt class="py-op">-</tt><tt class="py-number">2</tt> </tt>
-<a name="L1027"></a><tt class="py-lineno">1027</tt> <tt class="py-line"> <tt class="py-name">frame_summary</tt> <tt class="py-op">=</tt> <tt class="py-name">traceback</tt><tt class="py-op">.</tt><tt class="py-name">extract_stack</tt><tt class="py-op">(</tt><tt class="py-name">limit</tt><tt class="py-op">=</tt><tt class="py-op">-</tt><tt class="py-name">offset</tt><tt class="py-op">+</tt><tt class="py-name">limit</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-name">offset</tt><tt class="py-op">]</tt> </tt>
-<a name="L1028"></a><tt class="py-lineno">1028</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-op">(</tt><tt class="py-name">frame_summary</tt><tt class="py-op">.</tt><tt class="py-name">filename</tt><tt class="py-op">,</tt> <tt class="py-name">frame_summary</tt><tt class="py-op">.</tt><tt id="link-128" class="py-name"><a title="pyparsing.lineno" class="py-name" href="#" onclick="return doclink('link-128', 'lineno', 'link-30');">lineno</a></tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L1029"></a><tt class="py-lineno">1029</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">extract_tb</tt><tt class="py-op">(</tt><tt class="py-param">tb</tt><tt class="py-op">,</tt> <tt class="py-param">limit</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1030"></a><tt class="py-lineno">1030</tt> <tt class="py-line"> <tt class="py-name">frames</tt> <tt class="py-op">=</tt> <tt class="py-name">traceback</tt><tt class="py-op">.</tt><tt class="py-name">extract_tb</tt><tt class="py-op">(</tt><tt class="py-name">tb</tt><tt class="py-op">,</tt> <tt class="py-name">limit</tt><tt class="py-op">=</tt><tt class="py-name">limit</tt><tt class="py-op">)</tt> </tt>
-<a name="L1031"></a><tt class="py-lineno">1031</tt> <tt class="py-line"> <tt class="py-name">frame_summary</tt> <tt class="py-op">=</tt> <tt class="py-name">frames</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L1032"></a><tt class="py-lineno">1032</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-op">(</tt><tt class="py-name">frame_summary</tt><tt class="py-op">.</tt><tt class="py-name">filename</tt><tt class="py-op">,</tt> <tt class="py-name">frame_summary</tt><tt class="py-op">.</tt><tt id="link-129" class="py-name"><a title="pyparsing.lineno" class="py-name" href="#" onclick="return doclink('link-129', 'lineno', 'link-30');">lineno</a></tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L1033"></a><tt class="py-lineno">1033</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1034"></a><tt class="py-lineno">1034</tt> <tt class="py-line"> <tt class="py-name">extract_stack</tt> <tt class="py-op">=</tt> <tt class="py-name">traceback</tt><tt class="py-op">.</tt><tt class="py-name">extract_stack</tt> </tt>
-<a name="L1035"></a><tt class="py-lineno">1035</tt> <tt class="py-line"> <tt class="py-name">extract_tb</tt> <tt class="py-op">=</tt> <tt class="py-name">traceback</tt><tt class="py-op">.</tt><tt class="py-name">extract_tb</tt> </tt>
-<a name="L1036"></a><tt class="py-lineno">1036</tt> <tt class="py-line"> </tt>
-<a name="L1037"></a><tt class="py-lineno">1037</tt> <tt class="py-line"> <tt class="py-comment"># synthesize what would be returned by traceback.extract_stack at the call to </tt> </tt>
-<a name="L1038"></a><tt class="py-lineno">1038</tt> <tt class="py-line"> <tt class="py-comment"># user's parse action 'func', so that we don't incur call penalty at parse time</tt> </tt>
-<a name="L1039"></a><tt class="py-lineno">1039</tt> <tt class="py-line"> </tt>
-<a name="L1040"></a><tt class="py-lineno">1040</tt> <tt class="py-line"> <tt class="py-name">LINE_DIFF</tt> <tt class="py-op">=</tt> <tt class="py-number">6</tt> </tt>
-<a name="L1041"></a><tt class="py-lineno">1041</tt> <tt class="py-line"> <tt class="py-comment"># IF ANY CODE CHANGES, EVEN JUST COMMENTS OR BLANK LINES, BETWEEN THE NEXT LINE AND </tt> </tt>
-<a name="L1042"></a><tt class="py-lineno">1042</tt> <tt class="py-line"> <tt class="py-comment"># THE CALL TO FUNC INSIDE WRAPPER, LINE_DIFF MUST BE MODIFIED!!!!</tt> </tt>
-<a name="L1043"></a><tt class="py-lineno">1043</tt> <tt class="py-line"> <tt class="py-name">this_line</tt> <tt class="py-op">=</tt> <tt class="py-name">extract_stack</tt><tt class="py-op">(</tt><tt class="py-name">limit</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L1044"></a><tt class="py-lineno">1044</tt> <tt class="py-line"> <tt class="py-name">pa_call_line_synth</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">this_line</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">this_line</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">+</tt><tt class="py-name">LINE_DIFF</tt><tt class="py-op">)</tt> </tt>
-<a name="L1045"></a><tt class="py-lineno">1045</tt> <tt class="py-line"> </tt>
-<a name="L1046"></a><tt class="py-lineno">1046</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">wrapper</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1047"></a><tt class="py-lineno">1047</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1048"></a><tt class="py-lineno">1048</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1049"></a><tt class="py-lineno">1049</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">func</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-name">limit</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L1050"></a><tt class="py-lineno">1050</tt> <tt class="py-line"> <tt class="py-name">foundArity</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1051"></a><tt class="py-lineno">1051</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-<a name="L1052"></a><tt class="py-lineno">1052</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">TypeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L1053"></a><tt class="py-lineno">1053</tt> <tt class="py-line"> <tt class="py-comment"># re-raise TypeErrors if they did not come from our arity testing</tt> </tt>
-<a name="L1054"></a><tt class="py-lineno">1054</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">foundArity</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L1055"></a><tt class="py-lineno">1055</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1056"></a><tt class="py-lineno">1056</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1057"></a><tt class="py-lineno">1057</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1058"></a><tt class="py-lineno">1058</tt> <tt class="py-line"> <tt class="py-name">tb</tt> <tt class="py-op">=</tt> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">exc_info</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L1059"></a><tt class="py-lineno">1059</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">extract_tb</tt><tt class="py-op">(</tt><tt class="py-name">tb</tt><tt class="py-op">,</tt> <tt class="py-name">limit</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">2</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-name">pa_call_line_synth</tt><tt class="py-op">:</tt> </tt>
-<a name="L1060"></a><tt class="py-lineno">1060</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1061"></a><tt class="py-lineno">1061</tt> <tt class="py-line"> <tt class="py-keyword">finally</tt><tt class="py-op">:</tt> </tt>
-<a name="L1062"></a><tt class="py-lineno">1062</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">tb</tt> </tt>
-<a name="L1063"></a><tt class="py-lineno">1063</tt> <tt class="py-line"> </tt>
-<a name="L1064"></a><tt class="py-lineno">1064</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">limit</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op"><=</tt> <tt class="py-name">maxargs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1065"></a><tt class="py-lineno">1065</tt> <tt class="py-line"> <tt class="py-name">limit</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1066"></a><tt class="py-lineno">1066</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L1067"></a><tt class="py-lineno">1067</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-</div><a name="L1068"></a><tt class="py-lineno">1068</tt> <tt class="py-line"> </tt>
-<a name="L1069"></a><tt class="py-lineno">1069</tt> <tt class="py-line"> <tt class="py-comment"># copy func name to wrapper for sensible debug output</tt> </tt>
-<a name="L1070"></a><tt class="py-lineno">1070</tt> <tt class="py-line"> <tt class="py-name">func_name</tt> <tt class="py-op">=</tt> <tt class="py-string">"<parse action>"</tt> </tt>
-<a name="L1071"></a><tt class="py-lineno">1071</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1072"></a><tt class="py-lineno">1072</tt> <tt class="py-line"> <tt class="py-name">func_name</tt> <tt class="py-op">=</tt> <tt class="py-name">getattr</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">,</tt> <tt class="py-string">'__name__'</tt><tt class="py-op">,</tt> </tt>
-<a name="L1073"></a><tt class="py-lineno">1073</tt> <tt class="py-line"> <tt class="py-name">getattr</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">,</tt> <tt class="py-string">'__class__'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt><tt class="py-op">)</tt> </tt>
-<a name="L1074"></a><tt class="py-lineno">1074</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L1075"></a><tt class="py-lineno">1075</tt> <tt class="py-line"> <tt class="py-name">func_name</tt> <tt class="py-op">=</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">)</tt> </tt>
-<a name="L1076"></a><tt class="py-lineno">1076</tt> <tt class="py-line"> <tt class="py-name">wrapper</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">=</tt> <tt class="py-name">func_name</tt> </tt>
-<a name="L1077"></a><tt class="py-lineno">1077</tt> <tt class="py-line"> </tt>
-<a name="L1078"></a><tt class="py-lineno">1078</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wrapper</tt> </tt>
-</div><a name="L1079"></a><tt class="py-lineno">1079</tt> <tt class="py-line"> </tt>
-<a name="ParserElement"></a><div id="ParserElement-def"><a name="L1080"></a><tt class="py-lineno">1080</tt> <a class="py-toggle" href="#" id="ParserElement-toggle" onclick="return toggle('ParserElement');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html">ParserElement</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParserElement-expanded"><a name="L1081"></a><tt class="py-lineno">1081</tt> <tt class="py-line"> <tt class="py-docstring">"""Abstract base level parser element class."""</tt> </tt>
-<a name="L1082"></a><tt class="py-lineno">1082</tt> <tt class="py-line"> <tt id="link-130" class="py-name" targets="Variable pyparsing.ParserElement.DEFAULT_WHITE_CHARS=pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-130', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt> <tt class="py-op">=</tt> <tt class="py-string">" \n\t\r"</tt> </tt>
-<a name="L1083"></a><tt class="py-lineno">1083</tt> <tt class="py-line"> <tt id="link-131" class="py-name" targets="Variable pyparsing.ParserElement.verbose_stacktrace=pyparsing.ParserElement-class.html#verbose_stacktrace"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-131', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1084"></a><tt class="py-lineno">1084</tt> <tt class="py-line"> </tt>
-<a name="L1085"></a><tt class="py-lineno">1085</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="ParserElement.setDefaultWhitespaceChars"></a><div id="ParserElement.setDefaultWhitespaceChars-def"><a name="L1086"></a><tt class="py-lineno">1086</tt> <a class="py-toggle" href="#" id="ParserElement.setDefaultWhitespaceChars-toggle" onclick="return toggle('ParserElement.setDefaultWhitespaceChars');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a><tt class="py-op">(</tt> <tt class="py-param">chars</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setDefaultWhitespaceChars-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setDefaultWhitespaceChars-expanded"><a name="L1087"></a><tt class="py-lineno">1087</tt> <tt class="py-line"> <tt class="py-docstring">r"""</tt> </tt>
-<a name="L1088"></a><tt class="py-lineno">1088</tt> <tt class="py-line"><tt class="py-docstring"> Overrides the default whitespace chars</tt> </tt>
-<a name="L1089"></a><tt class="py-lineno">1089</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1090"></a><tt class="py-lineno">1090</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1091"></a><tt class="py-lineno">1091</tt> <tt class="py-line"><tt class="py-docstring"> # default whitespace chars are space, <TAB> and newline</tt> </tt>
-<a name="L1092"></a><tt class="py-lineno">1092</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def', 'ghi', 'jkl']</tt> </tt>
-<a name="L1093"></a><tt class="py-lineno">1093</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1094"></a><tt class="py-lineno">1094</tt> <tt class="py-line"><tt class="py-docstring"> # change to just treat newline as significant</tt> </tt>
-<a name="L1095"></a><tt class="py-lineno">1095</tt> <tt class="py-line"><tt class="py-docstring"> ParserElement.setDefaultWhitespaceChars(" \t")</tt> </tt>
-<a name="L1096"></a><tt class="py-lineno">1096</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def']</tt> </tt>
-<a name="L1097"></a><tt class="py-lineno">1097</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1098"></a><tt class="py-lineno">1098</tt> <tt class="py-line"> <tt id="link-132" class="py-name" targets="Class pyparsing.ParserElement=pyparsing.ParserElement-class.html"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-132', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-133" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-133', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt> <tt class="py-op">=</tt> <tt class="py-name">chars</tt> </tt>
-</div><a name="L1099"></a><tt class="py-lineno">1099</tt> <tt class="py-line"> </tt>
-<a name="L1100"></a><tt class="py-lineno">1100</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="ParserElement.inlineLiteralsUsing"></a><div id="ParserElement.inlineLiteralsUsing-def"><a name="L1101"></a><tt class="py-lineno">1101</tt> <a class="py-toggle" href="#" id="ParserElement.inlineLiteralsUsing-toggle" onclick="return toggle('ParserElement.inlineLiteralsUsing');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a><tt class="py-op">(</tt><tt class="py-param">cls</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.inlineLiteralsUsing-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.inlineLiteralsUsing-expanded"><a name="L1102"></a><tt class="py-lineno">1102</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1103"></a><tt class="py-lineno">1103</tt> <tt class="py-line"><tt class="py-docstring"> Set class to be used for inclusion of string literals into a parser.</tt> </tt>
-<a name="L1104"></a><tt class="py-lineno">1104</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1105"></a><tt class="py-lineno">1105</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1106"></a><tt class="py-lineno">1106</tt> <tt class="py-line"><tt class="py-docstring"> # default literal class used is Literal</tt> </tt>
-<a name="L1107"></a><tt class="py-lineno">1107</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L1108"></a><tt class="py-lineno">1108</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day") </tt> </tt>
-<a name="L1109"></a><tt class="py-lineno">1109</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1110"></a><tt class="py-lineno">1110</tt> <tt class="py-line"><tt class="py-docstring"> date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31']</tt> </tt>
-<a name="L1111"></a><tt class="py-lineno">1111</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1112"></a><tt class="py-lineno">1112</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1113"></a><tt class="py-lineno">1113</tt> <tt class="py-line"><tt class="py-docstring"> # change to Suppress</tt> </tt>
-<a name="L1114"></a><tt class="py-lineno">1114</tt> <tt class="py-line"><tt class="py-docstring"> ParserElement.inlineLiteralsUsing(Suppress)</tt> </tt>
-<a name="L1115"></a><tt class="py-lineno">1115</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day") </tt> </tt>
-<a name="L1116"></a><tt class="py-lineno">1116</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1117"></a><tt class="py-lineno">1117</tt> <tt class="py-line"><tt class="py-docstring"> date_str.parseString("1999/12/31") # -> ['1999', '12', '31']</tt> </tt>
-<a name="L1118"></a><tt class="py-lineno">1118</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1119"></a><tt class="py-lineno">1119</tt> <tt class="py-line"> <tt id="link-134" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-134', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt> <tt class="py-op">=</tt> <tt class="py-name">cls</tt> </tt>
-</div><a name="L1120"></a><tt class="py-lineno">1120</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__init__"></a><div id="ParserElement.__init__-def"><a name="L1121"></a><tt class="py-lineno">1121</tt> <a class="py-toggle" href="#" id="ParserElement.__init__-toggle" onclick="return toggle('ParserElement.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__init__-expanded"><a name="L1122"></a><tt class="py-lineno">1122</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1123"></a><tt class="py-lineno">1123</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failAction</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1124"></a><tt class="py-lineno">1124</tt> <tt class="py-line"> <tt class="py-comment">#~ self.name = "<unknown>" # don't define self.name, let subclasses try/except upcall</tt> </tt>
-<a name="L1125"></a><tt class="py-lineno">1125</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1126"></a><tt class="py-lineno">1126</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1127"></a><tt class="py-lineno">1127</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">savelist</tt> </tt>
-<a name="L1128"></a><tt class="py-lineno">1128</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1129"></a><tt class="py-lineno">1129</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">=</tt> <tt id="link-135" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-135', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-136" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-136', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt> </tt>
-<a name="L1130"></a><tt class="py-lineno">1130</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">copyDefaultWhiteChars</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1131"></a><tt class="py-lineno">1131</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> <tt class="py-comment"># used when checking for left-recursion</tt> </tt>
-<a name="L1132"></a><tt class="py-lineno">1132</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">keepTabs</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1133"></a><tt class="py-lineno">1133</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1134"></a><tt class="py-lineno">1134</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1135"></a><tt class="py-lineno">1135</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1136"></a><tt class="py-lineno">1136</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> <tt class="py-comment"># used to optimize exception handling for subclasses that don't advance parse index</tt> </tt>
-<a name="L1137"></a><tt class="py-lineno">1137</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt> </tt>
-<a name="L1138"></a><tt class="py-lineno">1138</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> <tt class="py-comment"># used to mark results names as modal (report only last) or cumulative (list all)</tt> </tt>
-<a name="L1139"></a><tt class="py-lineno">1139</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-name">None</tt> <tt class="py-op">)</tt> <tt class="py-comment">#custom debug actions</tt> </tt>
-<a name="L1140"></a><tt class="py-lineno">1140</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1141"></a><tt class="py-lineno">1141</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> <tt class="py-comment"># used to avoid redundant calls to preParse</tt> </tt>
-<a name="L1142"></a><tt class="py-lineno">1142</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L1143"></a><tt class="py-lineno">1143</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.copy"></a><div id="ParserElement.copy-def"><a name="L1144"></a><tt class="py-lineno">1144</tt> <a class="py-toggle" href="#" id="ParserElement.copy-toggle" onclick="return toggle('ParserElement.copy');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#copy">copy</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.copy-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.copy-expanded"><a name="L1145"></a><tt class="py-lineno">1145</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1146"></a><tt class="py-lineno">1146</tt> <tt class="py-line"><tt class="py-docstring"> Make a copy of this C{ParserElement}. Useful for defining different parse actions</tt> </tt>
-<a name="L1147"></a><tt class="py-lineno">1147</tt> <tt class="py-line"><tt class="py-docstring"> for the same parsing pattern, using copies of the original parse element.</tt> </tt>
-<a name="L1148"></a><tt class="py-lineno">1148</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1149"></a><tt class="py-lineno">1149</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1150"></a><tt class="py-lineno">1150</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums).setParseAction(lambda toks: int(toks[0]))</tt> </tt>
-<a name="L1151"></a><tt class="py-lineno">1151</tt> <tt class="py-line"><tt class="py-docstring"> integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")</tt> </tt>
-<a name="L1152"></a><tt class="py-lineno">1152</tt> <tt class="py-line"><tt class="py-docstring"> integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")</tt> </tt>
-<a name="L1153"></a><tt class="py-lineno">1153</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1154"></a><tt class="py-lineno">1154</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))</tt> </tt>
-<a name="L1155"></a><tt class="py-lineno">1155</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L1156"></a><tt class="py-lineno">1156</tt> <tt class="py-line"><tt class="py-docstring"> [5120, 100, 655360, 268435456]</tt> </tt>
-<a name="L1157"></a><tt class="py-lineno">1157</tt> <tt class="py-line"><tt class="py-docstring"> Equivalent form of C{expr.copy()} is just C{expr()}::</tt> </tt>
-<a name="L1158"></a><tt class="py-lineno">1158</tt> <tt class="py-line"><tt class="py-docstring"> integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")</tt> </tt>
-<a name="L1159"></a><tt class="py-lineno">1159</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1160"></a><tt class="py-lineno">1160</tt> <tt class="py-line"> <tt class="py-name">cpy</tt> <tt class="py-op">=</tt> <tt id="link-137" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-137', 'copy', 'link-2');">copy</a></tt><tt class="py-op">.</tt><tt id="link-138" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-138', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1161"></a><tt class="py-lineno">1161</tt> <tt class="py-line"> <tt class="py-name">cpy</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L1162"></a><tt class="py-lineno">1162</tt> <tt class="py-line"> <tt class="py-name">cpy</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L1163"></a><tt class="py-lineno">1163</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">copyDefaultWhiteChars</tt><tt class="py-op">:</tt> </tt>
-<a name="L1164"></a><tt class="py-lineno">1164</tt> <tt class="py-line"> <tt class="py-name">cpy</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">=</tt> <tt id="link-139" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-139', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-140" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-140', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt> </tt>
-<a name="L1165"></a><tt class="py-lineno">1165</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cpy</tt> </tt>
-</div><a name="L1166"></a><tt class="py-lineno">1166</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setName"></a><div id="ParserElement.setName-def"><a name="L1167"></a><tt class="py-lineno">1167</tt> <a class="py-toggle" href="#" id="ParserElement.setName-toggle" onclick="return toggle('ParserElement.setName');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setName">setName</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setName-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setName-expanded"><a name="L1168"></a><tt class="py-lineno">1168</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1169"></a><tt class="py-lineno">1169</tt> <tt class="py-line"><tt class="py-docstring"> Define name for this expression, makes debugging and exception messages clearer.</tt> </tt>
-<a name="L1170"></a><tt class="py-lineno">1170</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1171"></a><tt class="py-lineno">1171</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1172"></a><tt class="py-lineno">1172</tt> <tt class="py-line"><tt class="py-docstring"> Word(nums).parseString("ABC") # -> Exception: Expected W:(0123...) (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L1173"></a><tt class="py-lineno">1173</tt> <tt class="py-line"><tt class="py-docstring"> Word(nums).setName("integer").parseString("ABC") # -> Exception: Expected integer (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L1174"></a><tt class="py-lineno">1174</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1175"></a><tt class="py-lineno">1175</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">name</tt> </tt>
-<a name="L1176"></a><tt class="py-lineno">1176</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L1177"></a><tt class="py-lineno">1177</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"exception"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1178"></a><tt class="py-lineno">1178</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exception</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> </tt>
-<a name="L1179"></a><tt class="py-lineno">1179</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1180"></a><tt class="py-lineno">1180</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setResultsName"></a><div id="ParserElement.setResultsName-def"><a name="L1181"></a><tt class="py-lineno">1181</tt> <a class="py-toggle" href="#" id="ParserElement.setResultsName-toggle" onclick="return toggle('ParserElement.setResultsName');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt><tt class="py-op">,</tt> <tt class="py-param">listAllMatches</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setResultsName-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setResultsName-expanded"><a name="L1182"></a><tt class="py-lineno">1182</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1183"></a><tt class="py-lineno">1183</tt> <tt class="py-line"><tt class="py-docstring"> Define name for referencing matching tokens as a nested attribute</tt> </tt>
-<a name="L1184"></a><tt class="py-lineno">1184</tt> <tt class="py-line"><tt class="py-docstring"> of the returned parse results.</tt> </tt>
-<a name="L1185"></a><tt class="py-lineno">1185</tt> <tt class="py-line"><tt class="py-docstring"> NOTE: this returns a *copy* of the original C{ParserElement} object;</tt> </tt>
-<a name="L1186"></a><tt class="py-lineno">1186</tt> <tt class="py-line"><tt class="py-docstring"> this is so that the client can define a basic element, such as an</tt> </tt>
-<a name="L1187"></a><tt class="py-lineno">1187</tt> <tt class="py-line"><tt class="py-docstring"> integer, and reference it in multiple places with different names.</tt> </tt>
-<a name="L1188"></a><tt class="py-lineno">1188</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1189"></a><tt class="py-lineno">1189</tt> <tt class="py-line"><tt class="py-docstring"> You can also set results names using the abbreviated syntax,</tt> </tt>
-<a name="L1190"></a><tt class="py-lineno">1190</tt> <tt class="py-line"><tt class="py-docstring"> C{expr("name")} in place of C{expr.setResultsName("name")} - </tt> </tt>
-<a name="L1191"></a><tt class="py-lineno">1191</tt> <tt class="py-line"><tt class="py-docstring"> see L{I{__call__}<__call__>}.</tt> </tt>
-<a name="L1192"></a><tt class="py-lineno">1192</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1193"></a><tt class="py-lineno">1193</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1194"></a><tt class="py-lineno">1194</tt> <tt class="py-line"><tt class="py-docstring"> date_str = (integer.setResultsName("year") + '/' </tt> </tt>
-<a name="L1195"></a><tt class="py-lineno">1195</tt> <tt class="py-line"><tt class="py-docstring"> + integer.setResultsName("month") + '/' </tt> </tt>
-<a name="L1196"></a><tt class="py-lineno">1196</tt> <tt class="py-line"><tt class="py-docstring"> + integer.setResultsName("day"))</tt> </tt>
-<a name="L1197"></a><tt class="py-lineno">1197</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1198"></a><tt class="py-lineno">1198</tt> <tt class="py-line"><tt class="py-docstring"> # equivalent form:</tt> </tt>
-<a name="L1199"></a><tt class="py-lineno">1199</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer("year") + '/' + integer("month") + '/' + integer("day")</tt> </tt>
-<a name="L1200"></a><tt class="py-lineno">1200</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1201"></a><tt class="py-lineno">1201</tt> <tt class="py-line"> <tt class="py-name">newself</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-141" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-141', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1202"></a><tt class="py-lineno">1202</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">name</tt><tt class="py-op">.</tt><tt class="py-name">endswith</tt><tt class="py-op">(</tt><tt class="py-string">"*"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1203"></a><tt class="py-lineno">1203</tt> <tt class="py-line"> <tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">name</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L1204"></a><tt class="py-lineno">1204</tt> <tt class="py-line"> <tt class="py-name">listAllMatches</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> </tt>
-<a name="L1205"></a><tt class="py-lineno">1205</tt> <tt class="py-line"> <tt class="py-name">newself</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt> <tt class="py-op">=</tt> <tt class="py-name">name</tt> </tt>
-<a name="L1206"></a><tt class="py-lineno">1206</tt> <tt class="py-line"> <tt class="py-name">newself</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt> <tt class="py-op">=</tt> <tt class="py-keyword">not</tt> <tt class="py-name">listAllMatches</tt> </tt>
-<a name="L1207"></a><tt class="py-lineno">1207</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">newself</tt> </tt>
-</div><a name="L1208"></a><tt class="py-lineno">1208</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setBreak"></a><div id="ParserElement.setBreak-def"><a name="L1209"></a><tt class="py-lineno">1209</tt> <a class="py-toggle" href="#" id="ParserElement.setBreak-toggle" onclick="return toggle('ParserElement.setBreak');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setBreak">setBreak</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">breakFlag</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setBreak-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setBreak-expanded"><a name="L1210"></a><tt class="py-lineno">1210</tt> <tt class="py-line"> <tt class="py-docstring">"""Method to invoke the Python pdb debugger when this element is</tt> </tt>
-<a name="L1211"></a><tt class="py-lineno">1211</tt> <tt class="py-line"><tt class="py-docstring"> about to be parsed. Set C{breakFlag} to True to enable, False to</tt> </tt>
-<a name="L1212"></a><tt class="py-lineno">1212</tt> <tt class="py-line"><tt class="py-docstring"> disable.</tt> </tt>
-<a name="L1213"></a><tt class="py-lineno">1213</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1214"></a><tt class="py-lineno">1214</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">breakFlag</tt><tt class="py-op">:</tt> </tt>
-<a name="L1215"></a><tt class="py-lineno">1215</tt> <tt class="py-line"> <tt class="py-name">_parseMethod</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> </tt>
-<a name="L1216"></a><tt class="py-lineno">1216</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">breaker</tt><tt class="py-op">(</tt><tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1217"></a><tt class="py-lineno">1217</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">pdb</tt> </tt>
-<a name="L1218"></a><tt class="py-lineno">1218</tt> <tt class="py-line"> <tt class="py-name">pdb</tt><tt class="py-op">.</tt><tt class="py-name">set_trace</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1219"></a><tt class="py-lineno">1219</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_parseMethod</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L1220"></a><tt class="py-lineno">1220</tt> <tt class="py-line"> <tt class="py-name">breaker</tt><tt class="py-op">.</tt><tt class="py-name">_originalParseMethod</tt> <tt class="py-op">=</tt> <tt class="py-name">_parseMethod</tt> </tt>
-<a name="L1221"></a><tt class="py-lineno">1221</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> <tt class="py-op">=</tt> <tt class="py-name">breaker</tt> </tt>
-<a name="L1222"></a><tt class="py-lineno">1222</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1223"></a><tt class="py-lineno">1223</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">,</tt><tt class="py-string">"_originalParseMethod"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1224"></a><tt class="py-lineno">1224</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">.</tt><tt class="py-name">_originalParseMethod</tt> </tt>
-<a name="L1225"></a><tt class="py-lineno">1225</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1226"></a><tt class="py-lineno">1226</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setParseAction"></a><div id="ParserElement.setParseAction-def"><a name="L1227"></a><tt class="py-lineno">1227</tt> <a class="py-toggle" href="#" id="ParserElement.setParseAction-toggle" onclick="return toggle('ParserElement.setParseAction');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">fns</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setParseAction-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setParseAction-expanded"><a name="L1228"></a><tt class="py-lineno">1228</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1229"></a><tt class="py-lineno">1229</tt> <tt class="py-line"><tt class="py-docstring"> Define one or more actions to perform when successfully matching parse element definition.</tt> </tt>
-<a name="L1230"></a><tt class="py-lineno">1230</tt> <tt class="py-line"><tt class="py-docstring"> Parse action fn is a callable method with 0-3 arguments, called as C{fn(s,loc,toks)},</tt> </tt>
-<a name="L1231"></a><tt class="py-lineno">1231</tt> <tt class="py-line"><tt class="py-docstring"> C{fn(loc,toks)}, C{fn(toks)}, or just C{fn()}, where:</tt> </tt>
-<a name="L1232"></a><tt class="py-lineno">1232</tt> <tt class="py-line"><tt class="py-docstring"> - s = the original string being parsed (see note below)</tt> </tt>
-<a name="L1233"></a><tt class="py-lineno">1233</tt> <tt class="py-line"><tt class="py-docstring"> - loc = the location of the matching substring</tt> </tt>
-<a name="L1234"></a><tt class="py-lineno">1234</tt> <tt class="py-line"><tt class="py-docstring"> - toks = a list of the matched tokens, packaged as a C{L{ParseResults}} object</tt> </tt>
-<a name="L1235"></a><tt class="py-lineno">1235</tt> <tt class="py-line"><tt class="py-docstring"> If the functions in fns modify the tokens, they can return them as the return</tt> </tt>
-<a name="L1236"></a><tt class="py-lineno">1236</tt> <tt class="py-line"><tt class="py-docstring"> value from fn, and the modified list of tokens will replace the original.</tt> </tt>
-<a name="L1237"></a><tt class="py-lineno">1237</tt> <tt class="py-line"><tt class="py-docstring"> Otherwise, fn does not need to return any value.</tt> </tt>
-<a name="L1238"></a><tt class="py-lineno">1238</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1239"></a><tt class="py-lineno">1239</tt> <tt class="py-line"><tt class="py-docstring"> Optional keyword arguments:</tt> </tt>
-<a name="L1240"></a><tt class="py-lineno">1240</tt> <tt class="py-line"><tt class="py-docstring"> - callDuringTry = (default=C{False}) indicate if parse action should be run during lookaheads and alternate testing</tt> </tt>
-<a name="L1241"></a><tt class="py-lineno">1241</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1242"></a><tt class="py-lineno">1242</tt> <tt class="py-line"><tt class="py-docstring"> Note: the default parsing behavior is to expand tabs in the input string</tt> </tt>
-<a name="L1243"></a><tt class="py-lineno">1243</tt> <tt class="py-line"><tt class="py-docstring"> before starting the parsing process. See L{I{parseString}<parseString>} for more information</tt> </tt>
-<a name="L1244"></a><tt class="py-lineno">1244</tt> <tt class="py-line"><tt class="py-docstring"> on parsing strings containing C{<TAB>}s, and suggested methods to maintain a</tt> </tt>
-<a name="L1245"></a><tt class="py-lineno">1245</tt> <tt class="py-line"><tt class="py-docstring"> consistent view of the parsed string, the parse location, and line and column</tt> </tt>
-<a name="L1246"></a><tt class="py-lineno">1246</tt> <tt class="py-line"><tt class="py-docstring"> positions within the parsed string.</tt> </tt>
-<a name="L1247"></a><tt class="py-lineno">1247</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1248"></a><tt class="py-lineno">1248</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1249"></a><tt class="py-lineno">1249</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L1250"></a><tt class="py-lineno">1250</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer + '/' + integer + '/' + integer</tt> </tt>
-<a name="L1251"></a><tt class="py-lineno">1251</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1252"></a><tt class="py-lineno">1252</tt> <tt class="py-line"><tt class="py-docstring"> date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31']</tt> </tt>
-<a name="L1253"></a><tt class="py-lineno">1253</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1254"></a><tt class="py-lineno">1254</tt> <tt class="py-line"><tt class="py-docstring"> # use parse action to convert to ints at parse time</tt> </tt>
-<a name="L1255"></a><tt class="py-lineno">1255</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums).setParseAction(lambda toks: int(toks[0]))</tt> </tt>
-<a name="L1256"></a><tt class="py-lineno">1256</tt> <tt class="py-line"><tt class="py-docstring"> date_str = integer + '/' + integer + '/' + integer</tt> </tt>
-<a name="L1257"></a><tt class="py-lineno">1257</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1258"></a><tt class="py-lineno">1258</tt> <tt class="py-line"><tt class="py-docstring"> # note that integer fields are now ints, not strings</tt> </tt>
-<a name="L1259"></a><tt class="py-lineno">1259</tt> <tt class="py-line"><tt class="py-docstring"> date_str.parseString("1999/12/31") # -> [1999, '/', 12, '/', 31]</tt> </tt>
-<a name="L1260"></a><tt class="py-lineno">1260</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1261"></a><tt class="py-lineno">1261</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">map</tt><tt class="py-op">(</tt><tt class="py-name">_trim_arity</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">fns</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1262"></a><tt class="py-lineno">1262</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-op">=</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-142" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-142', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-string">"callDuringTry"</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L1263"></a><tt class="py-lineno">1263</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1264"></a><tt class="py-lineno">1264</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.addParseAction"></a><div id="ParserElement.addParseAction-def"><a name="L1265"></a><tt class="py-lineno">1265</tt> <a class="py-toggle" href="#" id="ParserElement.addParseAction-toggle" onclick="return toggle('ParserElement.addParseAction');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">fns</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.addParseAction-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.addParseAction-expanded"><a name="L1266"></a><tt class="py-lineno">1266</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1267"></a><tt class="py-lineno">1267</tt> <tt class="py-line"><tt class="py-docstring"> Add one or more parse actions to expression's list of parse actions. See L{I{setParseAction}<setParseAction>}.</tt> </tt>
-<a name="L1268"></a><tt class="py-lineno">1268</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1269"></a><tt class="py-lineno">1269</tt> <tt class="py-line"><tt class="py-docstring"> See examples in L{I{copy}<copy>}.</tt> </tt>
-<a name="L1270"></a><tt class="py-lineno">1270</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1271"></a><tt class="py-lineno">1271</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt> <tt class="py-op">+=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">map</tt><tt class="py-op">(</tt><tt class="py-name">_trim_arity</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">fns</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1272"></a><tt class="py-lineno">1272</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-keyword">or</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-143" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-143', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-string">"callDuringTry"</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L1273"></a><tt class="py-lineno">1273</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1274"></a><tt class="py-lineno">1274</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.addCondition"></a><div id="ParserElement.addCondition-def"><a name="L1275"></a><tt class="py-lineno">1275</tt> <a class="py-toggle" href="#" id="ParserElement.addCondition-toggle" onclick="return toggle('ParserElement.addCondition');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#addCondition">addCondition</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">fns</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.addCondition-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.addCondition-expanded"><a name="L1276"></a><tt class="py-lineno">1276</tt> <tt class="py-line"> <tt class="py-docstring">"""Add a boolean predicate function to expression's list of parse actions. See </tt> </tt>
-<a name="L1277"></a><tt class="py-lineno">1277</tt> <tt class="py-line"><tt class="py-docstring"> L{I{setParseAction}<setParseAction>} for function call signatures. Unlike C{setParseAction}, </tt> </tt>
-<a name="L1278"></a><tt class="py-lineno">1278</tt> <tt class="py-line"><tt class="py-docstring"> functions passed to C{addCondition} need to return boolean success/fail of the condition.</tt> </tt>
-<a name="L1279"></a><tt class="py-lineno">1279</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1280"></a><tt class="py-lineno">1280</tt> <tt class="py-line"><tt class="py-docstring"> Optional keyword arguments:</tt> </tt>
-<a name="L1281"></a><tt class="py-lineno">1281</tt> <tt class="py-line"><tt class="py-docstring"> - message = define a custom message to be used in the raised exception</tt> </tt>
-<a name="L1282"></a><tt class="py-lineno">1282</tt> <tt class="py-line"><tt class="py-docstring"> - fatal = if True, will raise ParseFatalException to stop parsing immediately; otherwise will raise ParseException</tt> </tt>
-<a name="L1283"></a><tt class="py-lineno">1283</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1284"></a><tt class="py-lineno">1284</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1285"></a><tt class="py-lineno">1285</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums).setParseAction(lambda toks: int(toks[0]))</tt> </tt>
-<a name="L1286"></a><tt class="py-lineno">1286</tt> <tt class="py-line"><tt class="py-docstring"> year_int = integer.copy()</tt> </tt>
-<a name="L1287"></a><tt class="py-lineno">1287</tt> <tt class="py-line"><tt class="py-docstring"> year_int.addCondition(lambda toks: toks[0] >= 2000, message="Only support years 2000 and later")</tt> </tt>
-<a name="L1288"></a><tt class="py-lineno">1288</tt> <tt class="py-line"><tt class="py-docstring"> date_str = year_int + '/' + integer + '/' + integer</tt> </tt>
-<a name="L1289"></a><tt class="py-lineno">1289</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1290"></a><tt class="py-lineno">1290</tt> <tt class="py-line"><tt class="py-docstring"> result = date_str.parseString("1999/12/31") # -> Exception: Only support years 2000 and later (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L1291"></a><tt class="py-lineno">1291</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1292"></a><tt class="py-lineno">1292</tt> <tt class="py-line"> <tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-144" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-144', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-string">"message"</tt><tt class="py-op">,</tt> <tt class="py-string">"failed user-defined condition"</tt><tt class="py-op">)</tt> </tt>
-<a name="L1293"></a><tt class="py-lineno">1293</tt> <tt class="py-line"> <tt class="py-name">exc_type</tt> <tt class="py-op">=</tt> <tt id="link-145" class="py-name" targets="Class pyparsing.ParseFatalException=pyparsing.ParseFatalException-class.html"><a title="pyparsing.ParseFatalException" class="py-name" href="#" onclick="return doclink('link-145', 'ParseFatalException', 'link-145');">ParseFatalException</a></tt> <tt class="py-keyword">if</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-146" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-146', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-string">"fatal"</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt id="link-147" class="py-name" targets="Class pyparsing.ParseException=pyparsing.ParseException-class.html"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-147', 'ParseException', 'link-147');">ParseException</a></tt> </tt>
-<a name="L1294"></a><tt class="py-lineno">1294</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">fn</tt> <tt class="py-keyword">in</tt> <tt class="py-name">fns</tt><tt class="py-op">:</tt> </tt>
-<a name="L1295"></a><tt class="py-lineno">1295</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">pa</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1296"></a><tt class="py-lineno">1296</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">bool</tt><tt class="py-op">(</tt><tt class="py-name">_trim_arity</tt><tt class="py-op">(</tt><tt class="py-name">fn</tt><tt class="py-op">)</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1297"></a><tt class="py-lineno">1297</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc_type</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">msg</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1298"></a><tt class="py-lineno">1298</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">.</tt><tt id="link-148" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-148', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">pa</tt><tt class="py-op">)</tt> </tt>
-<a name="L1299"></a><tt class="py-lineno">1299</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt> <tt class="py-keyword">or</tt> <tt class="py-name">kwargs</tt><tt class="py-op">.</tt><tt id="link-149" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-149', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-string">"callDuringTry"</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L1300"></a><tt class="py-lineno">1300</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1301"></a><tt class="py-lineno">1301</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setFailAction"></a><div id="ParserElement.setFailAction-def"><a name="L1302"></a><tt class="py-lineno">1302</tt> <a class="py-toggle" href="#" id="ParserElement.setFailAction-toggle" onclick="return toggle('ParserElement.setFailAction');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">fn</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setFailAction-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setFailAction-expanded"><a name="L1303"></a><tt class="py-lineno">1303</tt> <tt class="py-line"> <tt class="py-docstring">"""Define action to perform if parsing fails at this expression.</tt> </tt>
-<a name="L1304"></a><tt class="py-lineno">1304</tt> <tt class="py-line"><tt class="py-docstring"> Fail acton fn is a callable function that takes the arguments</tt> </tt>
-<a name="L1305"></a><tt class="py-lineno">1305</tt> <tt class="py-line"><tt class="py-docstring"> C{fn(s,loc,expr,err)} where:</tt> </tt>
-<a name="L1306"></a><tt class="py-lineno">1306</tt> <tt class="py-line"><tt class="py-docstring"> - s = string being parsed</tt> </tt>
-<a name="L1307"></a><tt class="py-lineno">1307</tt> <tt class="py-line"><tt class="py-docstring"> - loc = location where expression match was attempted and failed</tt> </tt>
-<a name="L1308"></a><tt class="py-lineno">1308</tt> <tt class="py-line"><tt class="py-docstring"> - expr = the parse expression that failed</tt> </tt>
-<a name="L1309"></a><tt class="py-lineno">1309</tt> <tt class="py-line"><tt class="py-docstring"> - err = the exception thrown</tt> </tt>
-<a name="L1310"></a><tt class="py-lineno">1310</tt> <tt class="py-line"><tt class="py-docstring"> The function returns no value. It may throw C{L{ParseFatalException}}</tt> </tt>
-<a name="L1311"></a><tt class="py-lineno">1311</tt> <tt class="py-line"><tt class="py-docstring"> if it is desired to stop parsing immediately."""</tt> </tt>
-<a name="L1312"></a><tt class="py-lineno">1312</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failAction</tt> <tt class="py-op">=</tt> <tt class="py-name">fn</tt> </tt>
-<a name="L1313"></a><tt class="py-lineno">1313</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1314"></a><tt class="py-lineno">1314</tt> <tt class="py-line"> </tt>
-<a name="ParserElement._skipIgnorables"></a><div id="ParserElement._skipIgnorables-def"><a name="L1315"></a><tt class="py-lineno">1315</tt> <a class="py-toggle" href="#" id="ParserElement._skipIgnorables-toggle" onclick="return toggle('ParserElement._skipIgnorables');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#_skipIgnorables">_skipIgnorables</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._skipIgnorables-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement._skipIgnorables-expanded"><a name="L1316"></a><tt class="py-lineno">1316</tt> <tt class="py-line"> <tt class="py-name">exprsFound</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1317"></a><tt class="py-lineno">1317</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">exprsFound</tt><tt class="py-op">:</tt> </tt>
-<a name="L1318"></a><tt class="py-lineno">1318</tt> <tt class="py-line"> <tt class="py-name">exprsFound</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1319"></a><tt class="py-lineno">1319</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1320"></a><tt class="py-lineno">1320</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1321"></a><tt class="py-lineno">1321</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1322"></a><tt class="py-lineno">1322</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">dummy</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1323"></a><tt class="py-lineno">1323</tt> <tt class="py-line"> <tt class="py-name">exprsFound</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1324"></a><tt class="py-lineno">1324</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-150" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-150', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1325"></a><tt class="py-lineno">1325</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L1326"></a><tt class="py-lineno">1326</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt> </tt>
-</div><a name="L1327"></a><tt class="py-lineno">1327</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.preParse"></a><div id="ParserElement.preParse-def"><a name="L1328"></a><tt class="py-lineno">1328</tt> <a class="py-toggle" href="#" id="ParserElement.preParse-toggle" onclick="return toggle('ParserElement.preParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#preParse">preParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.preParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.preParse-expanded"><a name="L1329"></a><tt class="py-lineno">1329</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1330"></a><tt class="py-lineno">1330</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_skipIgnorables</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1331"></a><tt class="py-lineno">1331</tt> <tt class="py-line"> </tt>
-<a name="L1332"></a><tt class="py-lineno">1332</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt><tt class="py-op">:</tt> </tt>
-<a name="L1333"></a><tt class="py-lineno">1333</tt> <tt class="py-line"> <tt class="py-name">wt</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> </tt>
-<a name="L1334"></a><tt class="py-lineno">1334</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L1335"></a><tt class="py-lineno">1335</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">instrlen</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">wt</tt><tt class="py-op">:</tt> </tt>
-<a name="L1336"></a><tt class="py-lineno">1336</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1337"></a><tt class="py-lineno">1337</tt> <tt class="py-line"> </tt>
-<a name="L1338"></a><tt class="py-lineno">1338</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt> </tt>
-</div><a name="L1339"></a><tt class="py-lineno">1339</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.parseImpl"></a><div id="ParserElement.parseImpl-def"><a name="L1340"></a><tt class="py-lineno">1340</tt> <a class="py-toggle" href="#" id="ParserElement.parseImpl-toggle" onclick="return toggle('ParserElement.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.parseImpl-expanded"><a name="L1341"></a><tt class="py-lineno">1341</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L1342"></a><tt class="py-lineno">1342</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.postParse"></a><div id="ParserElement.postParse-def"><a name="L1343"></a><tt class="py-lineno">1343</tt> <a class="py-toggle" href="#" id="ParserElement.postParse-toggle" onclick="return toggle('ParserElement.postParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#postParse">postParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">tokenlist</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.postParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.postParse-expanded"><a name="L1344"></a><tt class="py-lineno">1344</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">tokenlist</tt> </tt>
-</div><a name="L1345"></a><tt class="py-lineno">1345</tt> <tt class="py-line"> </tt>
-<a name="L1346"></a><tt class="py-lineno">1346</tt> <tt class="py-line"> <tt class="py-comment">#~ @profile</tt> </tt>
-<a name="ParserElement._parseNoCache"></a><div id="ParserElement._parseNoCache-def"><a name="L1347"></a><tt class="py-lineno">1347</tt> <a class="py-toggle" href="#" id="ParserElement._parseNoCache-toggle" onclick="return toggle('ParserElement._parseNoCache');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#_parseNoCache">_parseNoCache</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._parseNoCache-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement._parseNoCache-expanded"><a name="L1348"></a><tt class="py-lineno">1348</tt> <tt class="py-line"> <tt class="py-name">debugging</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">)</tt> <tt class="py-comment">#and doActions )</tt> </tt>
-<a name="L1349"></a><tt class="py-lineno">1349</tt> <tt class="py-line"> </tt>
-<a name="L1350"></a><tt class="py-lineno">1350</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">debugging</tt> <tt class="py-keyword">or</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failAction</tt><tt class="py-op">:</tt> </tt>
-<a name="L1351"></a><tt class="py-lineno">1351</tt> <tt class="py-line"> <tt class="py-comment">#~ print ("Match",self,"at loc",loc,"(%d,%d)" % ( lineno(loc,instring), col(loc,instring) ))</tt> </tt>
-<a name="L1352"></a><tt class="py-lineno">1352</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1353"></a><tt class="py-lineno">1353</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1354"></a><tt class="py-lineno">1354</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">callPreParse</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt><tt class="py-op">:</tt> </tt>
-<a name="L1355"></a><tt class="py-lineno">1355</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-151" class="py-name" targets="Method pyparsing.GoToColumn.preParse()=pyparsing.GoToColumn-class.html#preParse,Method pyparsing.ParserElement.preParse()=pyparsing.ParserElement-class.html#preParse"><a title="pyparsing.GoToColumn.preParse
-pyparsing.ParserElement.preParse" class="py-name" href="#" onclick="return doclink('link-151', 'preParse', 'link-151');">preParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1356"></a><tt class="py-lineno">1356</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1357"></a><tt class="py-lineno">1357</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L1358"></a><tt class="py-lineno">1358</tt> <tt class="py-line"> <tt class="py-name">tokensStart</tt> <tt class="py-op">=</tt> <tt class="py-name">preloc</tt> </tt>
-<a name="L1359"></a><tt class="py-lineno">1359</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1360"></a><tt class="py-lineno">1360</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1361"></a><tt class="py-lineno">1361</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-152" class="py-name" targets="Method pyparsing.And.parseImpl()=pyparsing.And-class.html#parseImpl,Method pyparsing.CaselessKeyword.parseImpl()=pyparsing.CaselessKeyword-class.html#parseImpl,Method pyparsing.CaselessLiteral.parseImpl()=pyparsing.CaselessLiteral-class.html#parseImpl,Method pyparsing.CharsNotIn.parseImpl()=pyparsing.CharsNotIn-class.html#parseImpl,Method pyparsing.CloseMatch.parseImpl()=pyparsing.CloseMatch-class.html#parseImpl,Method pyparsing.Each.parseImpl()=pyparsing.Each-class.html#parseImpl,Method pyparsing.FollowedBy.parseImpl()=pyparsing.FollowedBy-class.html#parseImpl,Method pyparsing.GoToColumn.parseImpl()=pyparsing.GoToColumn-class.html#parseImpl,Method pyparsing.Keyword.parseImpl()=pyparsing.Keyword-class.html#parseImpl,Method pyparsing.LineEnd.parseImpl()=pyparsing.LineEnd-class.html#parseImpl,Method pyparsing.LineStart.parseImpl()=pyparsing.LineStart-class.html#parseImpl,Method pyparsing.Literal.parseImpl()=pyparsing.Literal-class.html#parseImpl,Method pyparsing.MatchFirst.parseImpl()=pyparsing.MatchFirst-class.html#parseImpl,Method pyparsing.NoMatch.parseImpl()=pyparsing.NoMatch-class.html#parseImpl,Method pyparsing.NotAny.parseImpl()=pyparsing.NotAny-class.html#parseImpl,Method pyparsing.Optional.parseImpl()=pyparsing.Optional-class.html#parseImpl,Method pyparsing.Or.parseImpl()=pyparsing.Or-class.html#parseImpl,Method pyparsing.ParseElementEnhance.parseImpl()=pyparsing.ParseElementEnhance-class.html#parseImpl,Method pyparsing.ParserElement.parseImpl()=pyparsing.ParserElement-class.html#parseImpl,Method pyparsing.QuotedString.parseImpl()=pyparsing.QuotedString-class.html#parseImpl,Method pyparsing.Regex.parseImpl()=pyparsing.Regex-class.html#parseImpl,Method pyparsing.SkipTo.parseImpl()=pyparsing.SkipTo-class.html#parseImpl,Method pyparsing.StringEnd.parseImpl()=pyparsing.StringEnd-class.html#parseImpl,Method pyparsing.StringStart.parseImpl()=pyparsing.StringStart-class.html#parseImpl,Method pyparsing.White.parseImpl()=pyparsing.White-class.html#parseImpl,Method pyparsing.Word.parseImpl()=pyparsing.Word-class.html#parseImpl,Method pyparsing.WordEnd.parseImpl()=pyparsing.WordEnd-class.html#parseImpl,Method pyparsing.WordStart.parseImpl()=pyparsing.WordStart-class.html#parseImpl,Method pyparsing.ZeroOrMore.parseImpl()=pyparsing.ZeroOrMore-class.html#parseImpl"><a title="pyparsing.And.parseImpl
-pyparsing.CaselessKeyword.parseImpl
-pyparsing.CaselessLiteral.parseImpl
-pyparsing.CharsNotIn.parseImpl
-pyparsing.CloseMatch.parseImpl
-pyparsing.Each.parseImpl
-pyparsing.FollowedBy.parseImpl
-pyparsing.GoToColumn.parseImpl
-pyparsing.Keyword.parseImpl
-pyparsing.LineEnd.parseImpl
-pyparsing.LineStart.parseImpl
-pyparsing.Literal.parseImpl
-pyparsing.MatchFirst.parseImpl
-pyparsing.NoMatch.parseImpl
-pyparsing.NotAny.parseImpl
-pyparsing.Optional.parseImpl
-pyparsing.Or.parseImpl
-pyparsing.ParseElementEnhance.parseImpl
-pyparsing.ParserElement.parseImpl
-pyparsing.QuotedString.parseImpl
-pyparsing.Regex.parseImpl
-pyparsing.SkipTo.parseImpl
-pyparsing.StringEnd.parseImpl
-pyparsing.StringStart.parseImpl
-pyparsing.White.parseImpl
-pyparsing.Word.parseImpl
-pyparsing.WordEnd.parseImpl
-pyparsing.WordStart.parseImpl
-pyparsing.ZeroOrMore.parseImpl" class="py-name" href="#" onclick="return doclink('link-152', 'parseImpl', 'link-152');">parseImpl</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1362"></a><tt class="py-lineno">1362</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L1363"></a><tt class="py-lineno">1363</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-153" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-153', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1364"></a><tt class="py-lineno">1364</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-154" class="py-name" targets="Class pyparsing.ParseBaseException=pyparsing.ParseBaseException-class.html"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-154', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">err</tt><tt class="py-op">:</tt> </tt>
-<a name="L1365"></a><tt class="py-lineno">1365</tt> <tt class="py-line"> <tt class="py-comment">#~ print ("Exception raised:", err)</tt> </tt>
-<a name="L1366"></a><tt class="py-lineno">1366</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L1367"></a><tt class="py-lineno">1367</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">]</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">err</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1368"></a><tt class="py-lineno">1368</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failAction</tt><tt class="py-op">:</tt> </tt>
-<a name="L1369"></a><tt class="py-lineno">1369</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failAction</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">err</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1370"></a><tt class="py-lineno">1370</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1371"></a><tt class="py-lineno">1371</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1372"></a><tt class="py-lineno">1372</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">callPreParse</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt><tt class="py-op">:</tt> </tt>
-<a name="L1373"></a><tt class="py-lineno">1373</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-155" class="py-name"><a title="pyparsing.GoToColumn.preParse
-pyparsing.ParserElement.preParse" class="py-name" href="#" onclick="return doclink('link-155', 'preParse', 'link-151');">preParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1374"></a><tt class="py-lineno">1374</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1375"></a><tt class="py-lineno">1375</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L1376"></a><tt class="py-lineno">1376</tt> <tt class="py-line"> <tt class="py-name">tokensStart</tt> <tt class="py-op">=</tt> <tt class="py-name">preloc</tt> </tt>
-<a name="L1377"></a><tt class="py-lineno">1377</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-keyword">or</tt> <tt class="py-name">loc</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1378"></a><tt class="py-lineno">1378</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1379"></a><tt class="py-lineno">1379</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-156" class="py-name"><a title="pyparsing.And.parseImpl
-pyparsing.CaselessKeyword.parseImpl
-pyparsing.CaselessLiteral.parseImpl
-pyparsing.CharsNotIn.parseImpl
-pyparsing.CloseMatch.parseImpl
-pyparsing.Each.parseImpl
-pyparsing.FollowedBy.parseImpl
-pyparsing.GoToColumn.parseImpl
-pyparsing.Keyword.parseImpl
-pyparsing.LineEnd.parseImpl
-pyparsing.LineStart.parseImpl
-pyparsing.Literal.parseImpl
-pyparsing.MatchFirst.parseImpl
-pyparsing.NoMatch.parseImpl
-pyparsing.NotAny.parseImpl
-pyparsing.Optional.parseImpl
-pyparsing.Or.parseImpl
-pyparsing.ParseElementEnhance.parseImpl
-pyparsing.ParserElement.parseImpl
-pyparsing.QuotedString.parseImpl
-pyparsing.Regex.parseImpl
-pyparsing.SkipTo.parseImpl
-pyparsing.StringEnd.parseImpl
-pyparsing.StringStart.parseImpl
-pyparsing.White.parseImpl
-pyparsing.Word.parseImpl
-pyparsing.WordEnd.parseImpl
-pyparsing.WordStart.parseImpl
-pyparsing.ZeroOrMore.parseImpl" class="py-name" href="#" onclick="return doclink('link-156', 'parseImpl', 'link-152');">parseImpl</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1380"></a><tt class="py-lineno">1380</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L1381"></a><tt class="py-lineno">1381</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-157" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-157', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1382"></a><tt class="py-lineno">1382</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1383"></a><tt class="py-lineno">1383</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-158" class="py-name"><a title="pyparsing.And.parseImpl
-pyparsing.CaselessKeyword.parseImpl
-pyparsing.CaselessLiteral.parseImpl
-pyparsing.CharsNotIn.parseImpl
-pyparsing.CloseMatch.parseImpl
-pyparsing.Each.parseImpl
-pyparsing.FollowedBy.parseImpl
-pyparsing.GoToColumn.parseImpl
-pyparsing.Keyword.parseImpl
-pyparsing.LineEnd.parseImpl
-pyparsing.LineStart.parseImpl
-pyparsing.Literal.parseImpl
-pyparsing.MatchFirst.parseImpl
-pyparsing.NoMatch.parseImpl
-pyparsing.NotAny.parseImpl
-pyparsing.Optional.parseImpl
-pyparsing.Or.parseImpl
-pyparsing.ParseElementEnhance.parseImpl
-pyparsing.ParserElement.parseImpl
-pyparsing.QuotedString.parseImpl
-pyparsing.Regex.parseImpl
-pyparsing.SkipTo.parseImpl
-pyparsing.StringEnd.parseImpl
-pyparsing.StringStart.parseImpl
-pyparsing.White.parseImpl
-pyparsing.Word.parseImpl
-pyparsing.WordEnd.parseImpl
-pyparsing.WordStart.parseImpl
-pyparsing.ZeroOrMore.parseImpl" class="py-name" href="#" onclick="return doclink('link-158', 'parseImpl', 'link-152');">parseImpl</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1384"></a><tt class="py-lineno">1384</tt> <tt class="py-line"> </tt>
-<a name="L1385"></a><tt class="py-lineno">1385</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-159" class="py-name" targets="Method pyparsing.Combine.postParse()=pyparsing.Combine-class.html#postParse,Method pyparsing.Dict.postParse()=pyparsing.Dict-class.html#postParse,Method pyparsing.Group.postParse()=pyparsing.Group-class.html#postParse,Method pyparsing.ParserElement.postParse()=pyparsing.ParserElement-class.html#postParse,Method pyparsing.Suppress.postParse()=pyparsing.Suppress-class.html#postParse"><a title="pyparsing.Combine.postParse
-pyparsing.Dict.postParse
-pyparsing.Group.postParse
-pyparsing.ParserElement.postParse
-pyparsing.Suppress.postParse" class="py-name" href="#" onclick="return doclink('link-159', 'postParse', 'link-159');">postParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1386"></a><tt class="py-lineno">1386</tt> <tt class="py-line"> </tt>
-<a name="L1387"></a><tt class="py-lineno">1387</tt> <tt class="py-line"> <tt class="py-name">retTokens</tt> <tt class="py-op">=</tt> <tt id="link-160" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-160', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt> <tt class="py-name">tokens</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">,</tt> <tt id="link-161" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-161', 'asList', 'link-37');">asList</a></tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt><tt class="py-op">,</tt> <tt class="py-name">modal</tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1388"></a><tt class="py-lineno">1388</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt> <tt class="py-keyword">and</tt> <tt class="py-op">(</tt><tt class="py-name">doActions</tt> <tt class="py-keyword">or</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callDuringTry</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1389"></a><tt class="py-lineno">1389</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">debugging</tt><tt class="py-op">:</tt> </tt>
-<a name="L1390"></a><tt class="py-lineno">1390</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1391"></a><tt class="py-lineno">1391</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">fn</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">:</tt> </tt>
-<a name="L1392"></a><tt class="py-lineno">1392</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">fn</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">retTokens</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1393"></a><tt class="py-lineno">1393</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">tokens</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L1394"></a><tt class="py-lineno">1394</tt> <tt class="py-line"> <tt class="py-name">retTokens</tt> <tt class="py-op">=</tt> <tt id="link-162" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-162', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt> <tt class="py-name">tokens</tt><tt class="py-op">,</tt> </tt>
-<a name="L1395"></a><tt class="py-lineno">1395</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">,</tt> </tt>
-<a name="L1396"></a><tt class="py-lineno">1396</tt> <tt class="py-line"> <tt id="link-163" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-163', 'asList', 'link-37');">asList</a></tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-keyword">and</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">tokens</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt id="link-164" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-164', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1397"></a><tt class="py-lineno">1397</tt> <tt class="py-line"> <tt class="py-name">modal</tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1398"></a><tt class="py-lineno">1398</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-165" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-165', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">err</tt><tt class="py-op">:</tt> </tt>
-<a name="L1399"></a><tt class="py-lineno">1399</tt> <tt class="py-line"> <tt class="py-comment">#~ print "Exception raised in user parse action:", err</tt> </tt>
-<a name="L1400"></a><tt class="py-lineno">1400</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1401"></a><tt class="py-lineno">1401</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">2</tt><tt class="py-op">]</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">err</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1402"></a><tt class="py-lineno">1402</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1403"></a><tt class="py-lineno">1403</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1404"></a><tt class="py-lineno">1404</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">fn</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">:</tt> </tt>
-<a name="L1405"></a><tt class="py-lineno">1405</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">fn</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">retTokens</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1406"></a><tt class="py-lineno">1406</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">tokens</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L1407"></a><tt class="py-lineno">1407</tt> <tt class="py-line"> <tt class="py-name">retTokens</tt> <tt class="py-op">=</tt> <tt id="link-166" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-166', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt> <tt class="py-name">tokens</tt><tt class="py-op">,</tt> </tt>
-<a name="L1408"></a><tt class="py-lineno">1408</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">,</tt> </tt>
-<a name="L1409"></a><tt class="py-lineno">1409</tt> <tt class="py-line"> <tt id="link-167" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-167', 'asList', 'link-37');">asList</a></tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-keyword">and</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">tokens</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt id="link-168" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-168', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1410"></a><tt class="py-lineno">1410</tt> <tt class="py-line"> <tt class="py-name">modal</tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1411"></a><tt class="py-lineno">1411</tt> <tt class="py-line"> </tt>
-<a name="L1412"></a><tt class="py-lineno">1412</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">debugging</tt><tt class="py-op">:</tt> </tt>
-<a name="L1413"></a><tt class="py-lineno">1413</tt> <tt class="py-line"> <tt class="py-comment">#~ print ("Matched",self,"->",retTokens.asList())</tt> </tt>
-<a name="L1414"></a><tt class="py-lineno">1414</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1415"></a><tt class="py-lineno">1415</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tokensStart</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">retTokens</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1416"></a><tt class="py-lineno">1416</tt> <tt class="py-line"> </tt>
-<a name="L1417"></a><tt class="py-lineno">1417</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">retTokens</tt> </tt>
-</div><a name="L1418"></a><tt class="py-lineno">1418</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.tryParse"></a><div id="ParserElement.tryParse-def"><a name="L1419"></a><tt class="py-lineno">1419</tt> <a class="py-toggle" href="#" id="ParserElement.tryParse-toggle" onclick="return toggle('ParserElement.tryParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#tryParse">tryParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.tryParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.tryParse-expanded"><a name="L1420"></a><tt class="py-lineno">1420</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1421"></a><tt class="py-lineno">1421</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L1422"></a><tt class="py-lineno">1422</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-169" class="py-name"><a title="pyparsing.ParseFatalException" class="py-name" href="#" onclick="return doclink('link-169', 'ParseFatalException', 'link-145');">ParseFatalException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1423"></a><tt class="py-lineno">1423</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-170" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-170', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1424"></a><tt class="py-lineno">1424</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.canParseNext"></a><div id="ParserElement.canParseNext-def"><a name="L1425"></a><tt class="py-lineno">1425</tt> <a class="py-toggle" href="#" id="ParserElement.canParseNext-toggle" onclick="return toggle('ParserElement.canParseNext');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.canParseNext-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.canParseNext-expanded"><a name="L1426"></a><tt class="py-lineno">1426</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1427"></a><tt class="py-lineno">1427</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-171" class="py-name" targets="Method pyparsing.ParserElement.tryParse()=pyparsing.ParserElement-class.html#tryParse"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-171', 'tryParse', 'link-171');">tryParse</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L1428"></a><tt class="py-lineno">1428</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt id="link-172" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-172', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">,</tt> <tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1429"></a><tt class="py-lineno">1429</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1430"></a><tt class="py-lineno">1430</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1431"></a><tt class="py-lineno">1431</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L1432"></a><tt class="py-lineno">1432</tt> <tt class="py-line"> </tt>
-<a name="ParserElement._UnboundedCache"></a><div id="ParserElement._UnboundedCache-def"><a name="L1433"></a><tt class="py-lineno">1433</tt> <a class="py-toggle" href="#" id="ParserElement._UnboundedCache-toggle" onclick="return toggle('ParserElement._UnboundedCache');">-</a><tt class="py-line"> <tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParserElement._UnboundedCache-class.html">_UnboundedCache</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._UnboundedCache-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement._UnboundedCache-expanded"><a name="ParserElement._UnboundedCache.__init__"></a><div id="ParserElement._UnboundedCache.__init__-def"><a name="L1434"></a><tt class="py-lineno">1434</tt> <a class="py-toggle" href="#" id="ParserElement._UnboundedCache.__init__-toggle" onclick="return toggle('ParserElement._UnboundedCache.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement._UnboundedCache-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._UnboundedCache.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParserElement._UnboundedCache.__init__-expanded"><a name="L1435"></a><tt class="py-lineno">1435</tt> <tt class="py-line"> <tt class="py-name">cache</tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt><tt class="py-op">}</tt> </tt>
-<a name="L1436"></a><tt class="py-lineno">1436</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1437"></a><tt class="py-lineno">1437</tt> <tt class="py-line"> </tt>
-<a name="L1438"></a><tt class="py-lineno">1438</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">get</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1439"></a><tt class="py-lineno">1439</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-173" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-173', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">key</tt><tt class="py-op">,</tt> <tt class="py-name">not_in_cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1440"></a><tt class="py-lineno">1440</tt> <tt class="py-line"> </tt>
-<a name="L1441"></a><tt class="py-lineno">1441</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">set</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">,</tt> <tt class="py-param">value</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1442"></a><tt class="py-lineno">1442</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">[</tt><tt class="py-name">key</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">value</tt> </tt>
-</div><a name="L1443"></a><tt class="py-lineno">1443</tt> <tt class="py-line"> </tt>
-<a name="L1444"></a><tt class="py-lineno">1444</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">clear</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1445"></a><tt class="py-lineno">1445</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-174" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-174', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1446"></a><tt class="py-lineno">1446</tt> <tt class="py-line"> </tt>
-<a name="L1447"></a><tt class="py-lineno">1447</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">cache_len</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1448"></a><tt class="py-lineno">1448</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1449"></a><tt class="py-lineno">1449</tt> <tt class="py-line"> </tt>
-<a name="L1450"></a><tt class="py-lineno">1450</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-175" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-175', 'get', 'link-43');">get</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-176" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-176', 'get', 'link-43');">get</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1451"></a><tt class="py-lineno">1451</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">set</tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">set</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1452"></a><tt class="py-lineno">1452</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-177" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-177', 'clear', 'link-71');">clear</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-178" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-178', 'clear', 'link-71');">clear</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1453"></a><tt class="py-lineno">1453</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-179" class="py-name" targets="Method pyparsing.ParseResults.__len__()=pyparsing.ParseResults-class.html#__len__"><a title="pyparsing.ParseResults.__len__" class="py-name" href="#" onclick="return doclink('link-179', '__len__', 'link-179');">__len__</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">cache_len</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L1454"></a><tt class="py-lineno">1454</tt> <tt class="py-line"> </tt>
-<a name="L1455"></a><tt class="py-lineno">1455</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">_OrderedDict</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="ParserElement._FifoCache"></a><div id="ParserElement._FifoCache-def"><a name="L1456"></a><tt class="py-lineno">1456</tt> <a class="py-toggle" href="#" id="ParserElement._FifoCache-toggle" onclick="return toggle('ParserElement._FifoCache');">-</a><tt class="py-line"> <tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParserElement._FifoCache-class.html">_FifoCache</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._FifoCache-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParserElement._FifoCache-expanded"><a name="ParserElement._FifoCache.__init__"></a><div id="ParserElement._FifoCache.__init__-def"><a name="L1457"></a><tt class="py-lineno">1457</tt> <a class="py-toggle" href="#" id="ParserElement._FifoCache.__init__-toggle" onclick="return toggle('ParserElement._FifoCache.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement._FifoCache-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">size</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._FifoCache.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++++++++++++++"></div><div id="ParserElement._FifoCache.__init__-expanded"><a name="L1458"></a><tt class="py-lineno">1458</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1459"></a><tt class="py-lineno">1459</tt> <tt class="py-line"> </tt>
-<a name="L1460"></a><tt class="py-lineno">1460</tt> <tt class="py-line"> <tt class="py-name">cache</tt> <tt class="py-op">=</tt> <tt class="py-name">_OrderedDict</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1461"></a><tt class="py-lineno">1461</tt> <tt class="py-line"> </tt>
-<a name="L1462"></a><tt class="py-lineno">1462</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">get</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1463"></a><tt class="py-lineno">1463</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-180" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-180', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">key</tt><tt class="py-op">,</tt> <tt class="py-name">not_in_cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1464"></a><tt class="py-lineno">1464</tt> <tt class="py-line"> </tt>
-<a name="L1465"></a><tt class="py-lineno">1465</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">set</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">,</tt> <tt class="py-param">value</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1466"></a><tt class="py-lineno">1466</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">[</tt><tt class="py-name">key</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">value</tt> </tt>
-<a name="L1467"></a><tt class="py-lineno">1467</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">cache</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-name">size</tt><tt class="py-op">:</tt> </tt>
-<a name="L1468"></a><tt class="py-lineno">1468</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1469"></a><tt class="py-lineno">1469</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt class="py-name">popitem</tt><tt class="py-op">(</tt><tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L1470"></a><tt class="py-lineno">1470</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">KeyError</tt><tt class="py-op">:</tt> </tt>
-<a name="L1471"></a><tt class="py-lineno">1471</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L1472"></a><tt class="py-lineno">1472</tt> <tt class="py-line"> </tt>
-<a name="L1473"></a><tt class="py-lineno">1473</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">clear</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1474"></a><tt class="py-lineno">1474</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-181" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-181', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1475"></a><tt class="py-lineno">1475</tt> <tt class="py-line"> </tt>
-<a name="L1476"></a><tt class="py-lineno">1476</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">cache_len</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1477"></a><tt class="py-lineno">1477</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1478"></a><tt class="py-lineno">1478</tt> <tt class="py-line"> </tt>
-<a name="L1479"></a><tt class="py-lineno">1479</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-182" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-182', 'get', 'link-43');">get</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-183" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-183', 'get', 'link-43');">get</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1480"></a><tt class="py-lineno">1480</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">set</tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">set</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1481"></a><tt class="py-lineno">1481</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-184" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-184', 'clear', 'link-71');">clear</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-185" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-185', 'clear', 'link-71');">clear</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1482"></a><tt class="py-lineno">1482</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-186" class="py-name"><a title="pyparsing.ParseResults.__len__" class="py-name" href="#" onclick="return doclink('link-186', '__len__', 'link-179');">__len__</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">cache_len</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L1483"></a><tt class="py-lineno">1483</tt> <tt class="py-line"> </tt>
-<a name="L1484"></a><tt class="py-lineno">1484</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="ParserElement._FifoCache"></a><div id="ParserElement._FifoCache-def"><a name="L1485"></a><tt class="py-lineno">1485</tt> <a class="py-toggle" href="#" id="ParserElement._FifoCache-toggle" onclick="return toggle('ParserElement._FifoCache');">-</a><tt class="py-line"> <tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParserElement._FifoCache-class.html">_FifoCache</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._FifoCache-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="ParserElement._FifoCache-expanded"><a name="ParserElement._FifoCache.__init__"></a><div id="ParserElement._FifoCache.__init__-def"><a name="L1486"></a><tt class="py-lineno">1486</tt> <a class="py-toggle" href="#" id="ParserElement._FifoCache.__init__-toggle" onclick="return toggle('ParserElement._FifoCache.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement._FifoCache-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">size</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._FifoCache.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++++++++++++++"></div><div id="ParserElement._FifoCache.__init__-expanded"><a name="L1487"></a><tt class="py-lineno">1487</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">not_in_cache</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1488"></a><tt class="py-lineno">1488</tt> <tt class="py-line"> </tt>
-<a name="L1489"></a><tt class="py-lineno">1489</tt> <tt class="py-line"> <tt class="py-name">cache</tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt><tt class="py-op">}</tt> </tt>
-<a name="L1490"></a><tt class="py-lineno">1490</tt> <tt class="py-line"> <tt class="py-name">key_fifo</tt> <tt class="py-op">=</tt> <tt class="py-name">collections</tt><tt class="py-op">.</tt><tt class="py-name">deque</tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">size</tt><tt class="py-op">)</tt> </tt>
-<a name="L1491"></a><tt class="py-lineno">1491</tt> <tt class="py-line"> </tt>
-<a name="L1492"></a><tt class="py-lineno">1492</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">get</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1493"></a><tt class="py-lineno">1493</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-187" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-187', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">key</tt><tt class="py-op">,</tt> <tt class="py-name">not_in_cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1494"></a><tt class="py-lineno">1494</tt> <tt class="py-line"> </tt>
-<a name="L1495"></a><tt class="py-lineno">1495</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">set</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">key</tt><tt class="py-op">,</tt> <tt class="py-param">value</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1496"></a><tt class="py-lineno">1496</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">[</tt><tt class="py-name">key</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">value</tt> </tt>
-<a name="L1497"></a><tt class="py-lineno">1497</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">key_fifo</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-name">size</tt><tt class="py-op">:</tt> </tt>
-<a name="L1498"></a><tt class="py-lineno">1498</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-188" class="py-name" targets="Method pyparsing.ParseResults.pop()=pyparsing.ParseResults-class.html#pop"><a title="pyparsing.ParseResults.pop" class="py-name" href="#" onclick="return doclink('link-188', 'pop', 'link-188');">pop</a></tt><tt class="py-op">(</tt><tt class="py-name">key_fifo</tt><tt class="py-op">.</tt><tt class="py-name">popleft</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">None</tt><tt class="py-op">)</tt> </tt>
-<a name="L1499"></a><tt class="py-lineno">1499</tt> <tt class="py-line"> <tt class="py-name">key_fifo</tt><tt class="py-op">.</tt><tt id="link-189" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-189', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">key</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1500"></a><tt class="py-lineno">1500</tt> <tt class="py-line"> </tt>
-<a name="L1501"></a><tt class="py-lineno">1501</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">clear</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1502"></a><tt class="py-lineno">1502</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-190" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-190', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1503"></a><tt class="py-lineno">1503</tt> <tt class="py-line"> <tt class="py-name">key_fifo</tt><tt class="py-op">.</tt><tt id="link-191" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-191', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1504"></a><tt class="py-lineno">1504</tt> <tt class="py-line"> </tt>
-<a name="L1505"></a><tt class="py-lineno">1505</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">cache_len</tt><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1506"></a><tt class="py-lineno">1506</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">cache</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1507"></a><tt class="py-lineno">1507</tt> <tt class="py-line"> </tt>
-<a name="L1508"></a><tt class="py-lineno">1508</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-192" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-192', 'get', 'link-43');">get</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-193" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-193', 'get', 'link-43');">get</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1509"></a><tt class="py-lineno">1509</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">set</tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">set</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1510"></a><tt class="py-lineno">1510</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-194" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-194', 'clear', 'link-71');">clear</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt id="link-195" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-195', 'clear', 'link-71');">clear</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1511"></a><tt class="py-lineno">1511</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-196" class="py-name"><a title="pyparsing.ParseResults.__len__" class="py-name" href="#" onclick="return doclink('link-196', '__len__', 'link-179');">__len__</a></tt> <tt class="py-op">=</tt> <tt class="py-name">types</tt><tt class="py-op">.</tt><tt class="py-name">MethodType</tt><tt class="py-op">(</tt><tt class="py-name">cache_len</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L1512"></a><tt class="py-lineno">1512</tt> <tt class="py-line"> </tt>
-<a name="L1513"></a><tt class="py-lineno">1513</tt> <tt class="py-line"> <tt class="py-comment"># argument cache for optimizing repeated calls when backtracking through recursive expressions</tt> </tt>
-<a name="L1514"></a><tt class="py-lineno">1514</tt> <tt class="py-line"> <tt id="link-197" class="py-name" targets="Variable pyparsing.ParserElement.packrat_cache=pyparsing.ParserElement-class.html#packrat_cache"><a title="pyparsing.ParserElement.packrat_cache" class="py-name" href="#" onclick="return doclink('link-197', 'packrat_cache', 'link-197');">packrat_cache</a></tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt><tt class="py-op">}</tt> <tt class="py-comment"># this is set later by enabledPackrat(); this is here so that resetCache() doesn't fail</tt> </tt>
-<a name="L1515"></a><tt class="py-lineno">1515</tt> <tt class="py-line"> <tt id="link-198" class="py-name" targets="Variable pyparsing.ParserElement.packrat_cache_lock=pyparsing.ParserElement-class.html#packrat_cache_lock"><a title="pyparsing.ParserElement.packrat_cache_lock" class="py-name" href="#" onclick="return doclink('link-198', 'packrat_cache_lock', 'link-198');">packrat_cache_lock</a></tt> <tt class="py-op">=</tt> <tt class="py-name">RLock</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1516"></a><tt class="py-lineno">1516</tt> <tt class="py-line"> <tt id="link-199" class="py-name" targets="Variable pyparsing.ParserElement.packrat_cache_stats=pyparsing.ParserElement-class.html#packrat_cache_stats"><a title="pyparsing.ParserElement.packrat_cache_stats" class="py-name" href="#" onclick="return doclink('link-199', 'packrat_cache_stats', 'link-199');">packrat_cache_stats</a></tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L1517"></a><tt class="py-lineno">1517</tt> <tt class="py-line"> </tt>
-<a name="L1518"></a><tt class="py-lineno">1518</tt> <tt class="py-line"> <tt class="py-comment"># this method gets repeatedly called during backtracking with the same arguments -</tt> </tt>
-<a name="L1519"></a><tt class="py-lineno">1519</tt> <tt class="py-line"> <tt class="py-comment"># we can cache these arguments and save ourselves the trouble of re-parsing the contained expression</tt> </tt>
-<a name="ParserElement._parseCache"></a><div id="ParserElement._parseCache-def"><a name="L1520"></a><tt class="py-lineno">1520</tt> <a class="py-toggle" href="#" id="ParserElement._parseCache-toggle" onclick="return toggle('ParserElement._parseCache');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#_parseCache">_parseCache</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement._parseCache-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement._parseCache-expanded"><a name="L1521"></a><tt class="py-lineno">1521</tt> <tt class="py-line"> <tt class="py-name">HIT</tt><tt class="py-op">,</tt> <tt class="py-name">MISS</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1522"></a><tt class="py-lineno">1522</tt> <tt class="py-line"> <tt class="py-name">lookup</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">)</tt> </tt>
-<a name="L1523"></a><tt class="py-lineno">1523</tt> <tt class="py-line"> <tt class="py-keyword">with</tt> <tt id="link-200" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-200', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-201" class="py-name"><a title="pyparsing.ParserElement.packrat_cache_lock" class="py-name" href="#" onclick="return doclink('link-201', 'packrat_cache_lock', 'link-198');">packrat_cache_lock</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1524"></a><tt class="py-lineno">1524</tt> <tt class="py-line"> <tt class="py-name">cache</tt> <tt class="py-op">=</tt> <tt id="link-202" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-202', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-203" class="py-name"><a title="pyparsing.ParserElement.packrat_cache" class="py-name" href="#" onclick="return doclink('link-203', 'packrat_cache', 'link-197');">packrat_cache</a></tt> </tt>
-<a name="L1525"></a><tt class="py-lineno">1525</tt> <tt class="py-line"> <tt class="py-name">value</tt> <tt class="py-op">=</tt> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt id="link-204" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-204', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">lookup</tt><tt class="py-op">)</tt> </tt>
-<a name="L1526"></a><tt class="py-lineno">1526</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">value</tt> <tt class="py-keyword">is</tt> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt class="py-name">not_in_cache</tt><tt class="py-op">:</tt> </tt>
-<a name="L1527"></a><tt class="py-lineno">1527</tt> <tt class="py-line"> <tt id="link-205" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-205', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-206" class="py-name"><a title="pyparsing.ParserElement.packrat_cache_stats" class="py-name" href="#" onclick="return doclink('link-206', 'packrat_cache_stats', 'link-199');">packrat_cache_stats</a></tt><tt class="py-op">[</tt><tt class="py-name">MISS</tt><tt class="py-op">]</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1528"></a><tt class="py-lineno">1528</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1529"></a><tt class="py-lineno">1529</tt> <tt class="py-line"> <tt class="py-name">value</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parseNoCache</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">)</tt> </tt>
-<a name="L1530"></a><tt class="py-lineno">1530</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-207" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-207', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">pe</tt><tt class="py-op">:</tt> </tt>
-<a name="L1531"></a><tt class="py-lineno">1531</tt> <tt class="py-line"> <tt class="py-comment"># cache a copy of the exception, without the traceback</tt> </tt>
-<a name="L1532"></a><tt class="py-lineno">1532</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">lookup</tt><tt class="py-op">,</tt> <tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">args</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1533"></a><tt class="py-lineno">1533</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1534"></a><tt class="py-lineno">1534</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1535"></a><tt class="py-lineno">1535</tt> <tt class="py-line"> <tt class="py-name">cache</tt><tt class="py-op">.</tt><tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">lookup</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">value</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt id="link-208" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-208', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1536"></a><tt class="py-lineno">1536</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">value</tt> </tt>
-<a name="L1537"></a><tt class="py-lineno">1537</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1538"></a><tt class="py-lineno">1538</tt> <tt class="py-line"> <tt id="link-209" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-209', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-210" class="py-name"><a title="pyparsing.ParserElement.packrat_cache_stats" class="py-name" href="#" onclick="return doclink('link-210', 'packrat_cache_stats', 'link-199');">packrat_cache_stats</a></tt><tt class="py-op">[</tt><tt class="py-name">HIT</tt><tt class="py-op">]</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1539"></a><tt class="py-lineno">1539</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">,</tt> <tt class="py-name">Exception</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1540"></a><tt class="py-lineno">1540</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">value</tt> </tt>
-<a name="L1541"></a><tt class="py-lineno">1541</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt><tt class="py-name">value</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">value</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt id="link-211" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-211', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1542"></a><tt class="py-lineno">1542</tt> <tt class="py-line"> </tt>
-<a name="L1543"></a><tt class="py-lineno">1543</tt> <tt class="py-line"> <tt class="py-name">_parse</tt> <tt class="py-op">=</tt> <tt class="py-name">_parseNoCache</tt> </tt>
-<a name="L1544"></a><tt class="py-lineno">1544</tt> <tt class="py-line"> </tt>
-<a name="L1545"></a><tt class="py-lineno">1545</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="ParserElement.resetCache"></a><div id="ParserElement.resetCache-def"><a name="L1546"></a><tt class="py-lineno">1546</tt> <a class="py-toggle" href="#" id="ParserElement.resetCache-toggle" onclick="return toggle('ParserElement.resetCache');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#resetCache">resetCache</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.resetCache-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.resetCache-expanded"><a name="L1547"></a><tt class="py-lineno">1547</tt> <tt class="py-line"> <tt id="link-212" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-212', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-213" class="py-name"><a title="pyparsing.ParserElement.packrat_cache" class="py-name" href="#" onclick="return doclink('link-213', 'packrat_cache', 'link-197');">packrat_cache</a></tt><tt class="py-op">.</tt><tt id="link-214" class="py-name"><a title="pyparsing.ParseResults.clear" class="py-name" href="#" onclick="return doclink('link-214', 'clear', 'link-71');">clear</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1548"></a><tt class="py-lineno">1548</tt> <tt class="py-line"> <tt id="link-215" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-215', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-216" class="py-name"><a title="pyparsing.ParserElement.packrat_cache_stats" class="py-name" href="#" onclick="return doclink('link-216', 'packrat_cache_stats', 'link-199');">packrat_cache_stats</a></tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">*</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt id="link-217" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-217', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-218" class="py-name"><a title="pyparsing.ParserElement.packrat_cache_stats" class="py-name" href="#" onclick="return doclink('link-218', 'packrat_cache_stats', 'link-199');">packrat_cache_stats</a></tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1549"></a><tt class="py-lineno">1549</tt> <tt class="py-line"> </tt>
-<a name="L1550"></a><tt class="py-lineno">1550</tt> <tt class="py-line"> <tt id="link-219" class="py-name" targets="Variable pyparsing.ParserElement._packratEnabled=pyparsing.ParserElement-class.html#_packratEnabled"><a title="pyparsing.ParserElement._packratEnabled" class="py-name" href="#" onclick="return doclink('link-219', '_packratEnabled', 'link-219');">_packratEnabled</a></tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L1551"></a><tt class="py-lineno">1551</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="ParserElement.enablePackrat"></a><div id="ParserElement.enablePackrat-def"><a name="L1552"></a><tt class="py-lineno">1552</tt> <a class="py-toggle" href="#" id="ParserElement.enablePackrat-toggle" onclick="return toggle('ParserElement.enablePackrat');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a><tt class="py-op">(</tt><tt class="py-param">cache_size_limit</tt><tt class="py-op">=</tt><tt class="py-number">128</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.enablePackrat-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.enablePackrat-expanded"><a name="L1553"></a><tt class="py-lineno">1553</tt> <tt class="py-line"> <tt class="py-docstring">"""Enables "packrat" parsing, which adds memoizing to the parsing logic.</tt> </tt>
-<a name="L1554"></a><tt class="py-lineno">1554</tt> <tt class="py-line"><tt class="py-docstring"> Repeated parse attempts at the same string location (which happens</tt> </tt>
-<a name="L1555"></a><tt class="py-lineno">1555</tt> <tt class="py-line"><tt class="py-docstring"> often in many complex grammars) can immediately return a cached value,</tt> </tt>
-<a name="L1556"></a><tt class="py-lineno">1556</tt> <tt class="py-line"><tt class="py-docstring"> instead of re-executing parsing/validating code. Memoizing is done of</tt> </tt>
-<a name="L1557"></a><tt class="py-lineno">1557</tt> <tt class="py-line"><tt class="py-docstring"> both valid results and parsing exceptions.</tt> </tt>
-<a name="L1558"></a><tt class="py-lineno">1558</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1559"></a><tt class="py-lineno">1559</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L1560"></a><tt class="py-lineno">1560</tt> <tt class="py-line"><tt class="py-docstring"> - cache_size_limit - (default=C{128}) - if an integer value is provided</tt> </tt>
-<a name="L1561"></a><tt class="py-lineno">1561</tt> <tt class="py-line"><tt class="py-docstring"> will limit the size of the packrat cache; if None is passed, then</tt> </tt>
-<a name="L1562"></a><tt class="py-lineno">1562</tt> <tt class="py-line"><tt class="py-docstring"> the cache size will be unbounded; if 0 is passed, the cache will</tt> </tt>
-<a name="L1563"></a><tt class="py-lineno">1563</tt> <tt class="py-line"><tt class="py-docstring"> be effectively disabled.</tt> </tt>
-<a name="L1564"></a><tt class="py-lineno">1564</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1565"></a><tt class="py-lineno">1565</tt> <tt class="py-line"><tt class="py-docstring"> This speedup may break existing programs that use parse actions that</tt> </tt>
-<a name="L1566"></a><tt class="py-lineno">1566</tt> <tt class="py-line"><tt class="py-docstring"> have side-effects. For this reason, packrat parsing is disabled when</tt> </tt>
-<a name="L1567"></a><tt class="py-lineno">1567</tt> <tt class="py-line"><tt class="py-docstring"> you first import pyparsing. To activate the packrat feature, your</tt> </tt>
-<a name="L1568"></a><tt class="py-lineno">1568</tt> <tt class="py-line"><tt class="py-docstring"> program must call the class method C{ParserElement.enablePackrat()}. If</tt> </tt>
-<a name="L1569"></a><tt class="py-lineno">1569</tt> <tt class="py-line"><tt class="py-docstring"> your program uses C{psyco} to "compile as you go", you must call</tt> </tt>
-<a name="L1570"></a><tt class="py-lineno">1570</tt> <tt class="py-line"><tt class="py-docstring"> C{enablePackrat} before calling C{psyco.full()}. If you do not do this,</tt> </tt>
-<a name="L1571"></a><tt class="py-lineno">1571</tt> <tt class="py-line"><tt class="py-docstring"> Python will crash. For best results, call C{enablePackrat()} immediately</tt> </tt>
-<a name="L1572"></a><tt class="py-lineno">1572</tt> <tt class="py-line"><tt class="py-docstring"> after importing pyparsing.</tt> </tt>
-<a name="L1573"></a><tt class="py-lineno">1573</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1574"></a><tt class="py-lineno">1574</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1575"></a><tt class="py-lineno">1575</tt> <tt class="py-line"><tt class="py-docstring"> import pyparsing</tt> </tt>
-<a name="L1576"></a><tt class="py-lineno">1576</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing.ParserElement.enablePackrat()</tt> </tt>
-<a name="L1577"></a><tt class="py-lineno">1577</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1578"></a><tt class="py-lineno">1578</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt id="link-220" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-220', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-221" class="py-name"><a title="pyparsing.ParserElement._packratEnabled" class="py-name" href="#" onclick="return doclink('link-221', '_packratEnabled', 'link-219');">_packratEnabled</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1579"></a><tt class="py-lineno">1579</tt> <tt class="py-line"> <tt id="link-222" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-222', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-223" class="py-name"><a title="pyparsing.ParserElement._packratEnabled" class="py-name" href="#" onclick="return doclink('link-223', '_packratEnabled', 'link-219');">_packratEnabled</a></tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1580"></a><tt class="py-lineno">1580</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">cache_size_limit</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L1581"></a><tt class="py-lineno">1581</tt> <tt class="py-line"> <tt id="link-224" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-224', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-225" class="py-name"><a title="pyparsing.ParserElement.packrat_cache" class="py-name" href="#" onclick="return doclink('link-225', 'packrat_cache', 'link-197');">packrat_cache</a></tt> <tt class="py-op">=</tt> <tt id="link-226" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-226', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_UnboundedCache</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1582"></a><tt class="py-lineno">1582</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1583"></a><tt class="py-lineno">1583</tt> <tt class="py-line"> <tt id="link-227" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-227', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-228" class="py-name"><a title="pyparsing.ParserElement.packrat_cache" class="py-name" href="#" onclick="return doclink('link-228', 'packrat_cache', 'link-197');">packrat_cache</a></tt> <tt class="py-op">=</tt> <tt id="link-229" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-229', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_FifoCache</tt><tt class="py-op">(</tt><tt class="py-name">cache_size_limit</tt><tt class="py-op">)</tt> </tt>
-<a name="L1584"></a><tt class="py-lineno">1584</tt> <tt class="py-line"> <tt id="link-230" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-230', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> <tt class="py-op">=</tt> <tt id="link-231" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-231', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_parseCache</tt> </tt>
-</div><a name="L1585"></a><tt class="py-lineno">1585</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.parseString"></a><div id="ParserElement.parseString-def"><a name="L1586"></a><tt class="py-lineno">1586</tt> <a class="py-toggle" href="#" id="ParserElement.parseString-toggle" onclick="return toggle('ParserElement.parseString');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#parseString">parseString</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.parseString-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.parseString-expanded"><a name="L1587"></a><tt class="py-lineno">1587</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1588"></a><tt class="py-lineno">1588</tt> <tt class="py-line"><tt class="py-docstring"> Execute the parse expression with the given string.</tt> </tt>
-<a name="L1589"></a><tt class="py-lineno">1589</tt> <tt class="py-line"><tt class="py-docstring"> This is the main interface to the client code, once the complete</tt> </tt>
-<a name="L1590"></a><tt class="py-lineno">1590</tt> <tt class="py-line"><tt class="py-docstring"> expression has been built.</tt> </tt>
-<a name="L1591"></a><tt class="py-lineno">1591</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1592"></a><tt class="py-lineno">1592</tt> <tt class="py-line"><tt class="py-docstring"> If you want the grammar to require that the entire input string be</tt> </tt>
-<a name="L1593"></a><tt class="py-lineno">1593</tt> <tt class="py-line"><tt class="py-docstring"> successfully parsed, then set C{parseAll} to True (equivalent to ending</tt> </tt>
-<a name="L1594"></a><tt class="py-lineno">1594</tt> <tt class="py-line"><tt class="py-docstring"> the grammar with C{L{StringEnd()}}).</tt> </tt>
-<a name="L1595"></a><tt class="py-lineno">1595</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1596"></a><tt class="py-lineno">1596</tt> <tt class="py-line"><tt class="py-docstring"> Note: C{parseString} implicitly calls C{expandtabs()} on the input string,</tt> </tt>
-<a name="L1597"></a><tt class="py-lineno">1597</tt> <tt class="py-line"><tt class="py-docstring"> in order to report proper column numbers in parse actions.</tt> </tt>
-<a name="L1598"></a><tt class="py-lineno">1598</tt> <tt class="py-line"><tt class="py-docstring"> If the input string contains tabs and</tt> </tt>
-<a name="L1599"></a><tt class="py-lineno">1599</tt> <tt class="py-line"><tt class="py-docstring"> the grammar uses parse actions that use the C{loc} argument to index into the</tt> </tt>
-<a name="L1600"></a><tt class="py-lineno">1600</tt> <tt class="py-line"><tt class="py-docstring"> string being parsed, you can ensure you have a consistent view of the input</tt> </tt>
-<a name="L1601"></a><tt class="py-lineno">1601</tt> <tt class="py-line"><tt class="py-docstring"> string by:</tt> </tt>
-<a name="L1602"></a><tt class="py-lineno">1602</tt> <tt class="py-line"><tt class="py-docstring"> - calling C{parseWithTabs} on your grammar before calling C{parseString}</tt> </tt>
-<a name="L1603"></a><tt class="py-lineno">1603</tt> <tt class="py-line"><tt class="py-docstring"> (see L{I{parseWithTabs}<parseWithTabs>})</tt> </tt>
-<a name="L1604"></a><tt class="py-lineno">1604</tt> <tt class="py-line"><tt class="py-docstring"> - define your parse action using the full C{(s,loc,toks)} signature, and</tt> </tt>
-<a name="L1605"></a><tt class="py-lineno">1605</tt> <tt class="py-line"><tt class="py-docstring"> reference the input string using the parse action's C{s} argument</tt> </tt>
-<a name="L1606"></a><tt class="py-lineno">1606</tt> <tt class="py-line"><tt class="py-docstring"> - explictly expand the tabs in your input string before calling</tt> </tt>
-<a name="L1607"></a><tt class="py-lineno">1607</tt> <tt class="py-line"><tt class="py-docstring"> C{parseString}</tt> </tt>
-<a name="L1608"></a><tt class="py-lineno">1608</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1609"></a><tt class="py-lineno">1609</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1610"></a><tt class="py-lineno">1610</tt> <tt class="py-line"><tt class="py-docstring"> Word('a').parseString('aaaaabaaa') # -> ['aaaaa']</tt> </tt>
-<a name="L1611"></a><tt class="py-lineno">1611</tt> <tt class="py-line"><tt class="py-docstring"> Word('a').parseString('aaaaabaaa', parseAll=True) # -> Exception: Expected end of text</tt> </tt>
-<a name="L1612"></a><tt class="py-lineno">1612</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1613"></a><tt class="py-lineno">1613</tt> <tt class="py-line"> <tt id="link-232" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-232', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-233" class="py-name" targets="Static Method pyparsing.ParserElement.resetCache()=pyparsing.ParserElement-class.html#resetCache"><a title="pyparsing.ParserElement.resetCache" class="py-name" href="#" onclick="return doclink('link-233', 'resetCache', 'link-233');">resetCache</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1614"></a><tt class="py-lineno">1614</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt><tt class="py-op">:</tt> </tt>
-<a name="L1615"></a><tt class="py-lineno">1615</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-234" class="py-name" targets="Method pyparsing.Forward.streamline()=pyparsing.Forward-class.html#streamline,Method pyparsing.ParseElementEnhance.streamline()=pyparsing.ParseElementEnhance-class.html#streamline,Method pyparsing.ParseExpression.streamline()=pyparsing.ParseExpression-class.html#streamline,Method pyparsing.ParserElement.streamline()=pyparsing.ParserElement-class.html#streamline"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-234', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1616"></a><tt class="py-lineno">1616</tt> <tt class="py-line"> <tt class="py-comment">#~ self.saveAsList = True</tt> </tt>
-<a name="L1617"></a><tt class="py-lineno">1617</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1618"></a><tt class="py-lineno">1618</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-235" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-235', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1619"></a><tt class="py-lineno">1619</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">keepTabs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1620"></a><tt class="py-lineno">1620</tt> <tt class="py-line"> <tt class="py-name">instring</tt> <tt class="py-op">=</tt> <tt class="py-name">instring</tt><tt class="py-op">.</tt><tt class="py-name">expandtabs</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1621"></a><tt class="py-lineno">1621</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1622"></a><tt class="py-lineno">1622</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-number">0</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1623"></a><tt class="py-lineno">1623</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">parseAll</tt><tt class="py-op">:</tt> </tt>
-<a name="L1624"></a><tt class="py-lineno">1624</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-236" class="py-name"><a title="pyparsing.GoToColumn.preParse
-pyparsing.ParserElement.preParse" class="py-name" href="#" onclick="return doclink('link-236', 'preParse', 'link-151');">preParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1625"></a><tt class="py-lineno">1625</tt> <tt class="py-line"> <tt class="py-name">se</tt> <tt class="py-op">=</tt> <tt id="link-237" class="py-name" targets="Class pyparsing.Empty=pyparsing.Empty-class.html"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-237', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-238" class="py-name" targets="Class pyparsing.StringEnd=pyparsing.StringEnd-class.html"><a title="pyparsing.StringEnd" class="py-name" href="#" onclick="return doclink('link-238', 'StringEnd', 'link-238');">StringEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1626"></a><tt class="py-lineno">1626</tt> <tt class="py-line"> <tt class="py-name">se</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1627"></a><tt class="py-lineno">1627</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-239" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-239', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1628"></a><tt class="py-lineno">1628</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-240" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-240', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-241" class="py-name"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-241', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1629"></a><tt class="py-lineno">1629</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1630"></a><tt class="py-lineno">1630</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1631"></a><tt class="py-lineno">1631</tt> <tt class="py-line"> <tt class="py-comment"># catch and re-raise exception from here, clears out pyparsing internal stack trace</tt> </tt>
-<a name="L1632"></a><tt class="py-lineno">1632</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc</tt> </tt>
-<a name="L1633"></a><tt class="py-lineno">1633</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1634"></a><tt class="py-lineno">1634</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">tokens</tt> </tt>
-</div><a name="L1635"></a><tt class="py-lineno">1635</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.scanString"></a><div id="ParserElement.scanString-def"><a name="L1636"></a><tt class="py-lineno">1636</tt> <a class="py-toggle" href="#" id="ParserElement.scanString-toggle" onclick="return toggle('ParserElement.scanString');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#scanString">scanString</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">maxMatches</tt><tt class="py-op">=</tt><tt id="link-242" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-242', '_MAX_INT', 'link-8');">_MAX_INT</a></tt><tt class="py-op">,</tt> <tt class="py-param">overlap</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.scanString-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.scanString-expanded"><a name="L1637"></a><tt class="py-lineno">1637</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1638"></a><tt class="py-lineno">1638</tt> <tt class="py-line"><tt class="py-docstring"> Scan the input string for expression matches. Each match will return the</tt> </tt>
-<a name="L1639"></a><tt class="py-lineno">1639</tt> <tt class="py-line"><tt class="py-docstring"> matching tokens, start location, and end location. May be called with optional</tt> </tt>
-<a name="L1640"></a><tt class="py-lineno">1640</tt> <tt class="py-line"><tt class="py-docstring"> C{maxMatches} argument, to clip scanning after 'n' matches are found. If</tt> </tt>
-<a name="L1641"></a><tt class="py-lineno">1641</tt> <tt class="py-line"><tt class="py-docstring"> C{overlap} is specified, then overlapping matches will be reported.</tt> </tt>
-<a name="L1642"></a><tt class="py-lineno">1642</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1643"></a><tt class="py-lineno">1643</tt> <tt class="py-line"><tt class="py-docstring"> Note that the start and end locations are reported relative to the string</tt> </tt>
-<a name="L1644"></a><tt class="py-lineno">1644</tt> <tt class="py-line"><tt class="py-docstring"> being parsed. See L{I{parseString}<parseString>} for more information on parsing</tt> </tt>
-<a name="L1645"></a><tt class="py-lineno">1645</tt> <tt class="py-line"><tt class="py-docstring"> strings with embedded tabs.</tt> </tt>
-<a name="L1646"></a><tt class="py-lineno">1646</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1647"></a><tt class="py-lineno">1647</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1648"></a><tt class="py-lineno">1648</tt> <tt class="py-line"><tt class="py-docstring"> source = "sldjf123lsdjjkf345sldkjf879lkjsfd987"</tt> </tt>
-<a name="L1649"></a><tt class="py-lineno">1649</tt> <tt class="py-line"><tt class="py-docstring"> print(source)</tt> </tt>
-<a name="L1650"></a><tt class="py-lineno">1650</tt> <tt class="py-line"><tt class="py-docstring"> for tokens,start,end in Word(alphas).scanString(source):</tt> </tt>
-<a name="L1651"></a><tt class="py-lineno">1651</tt> <tt class="py-line"><tt class="py-docstring"> print(' '*start + '^'*(end-start))</tt> </tt>
-<a name="L1652"></a><tt class="py-lineno">1652</tt> <tt class="py-line"><tt class="py-docstring"> print(' '*start + tokens[0])</tt> </tt>
-<a name="L1653"></a><tt class="py-lineno">1653</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1654"></a><tt class="py-lineno">1654</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L1655"></a><tt class="py-lineno">1655</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1656"></a><tt class="py-lineno">1656</tt> <tt class="py-line"><tt class="py-docstring"> sldjf123lsdjjkf345sldkjf879lkjsfd987</tt> </tt>
-<a name="L1657"></a><tt class="py-lineno">1657</tt> <tt class="py-line"><tt class="py-docstring"> ^^^^^</tt> </tt>
-<a name="L1658"></a><tt class="py-lineno">1658</tt> <tt class="py-line"><tt class="py-docstring"> sldjf</tt> </tt>
-<a name="L1659"></a><tt class="py-lineno">1659</tt> <tt class="py-line"><tt class="py-docstring"> ^^^^^^^</tt> </tt>
-<a name="L1660"></a><tt class="py-lineno">1660</tt> <tt class="py-line"><tt class="py-docstring"> lsdjjkf</tt> </tt>
-<a name="L1661"></a><tt class="py-lineno">1661</tt> <tt class="py-line"><tt class="py-docstring"> ^^^^^^</tt> </tt>
-<a name="L1662"></a><tt class="py-lineno">1662</tt> <tt class="py-line"><tt class="py-docstring"> sldkjf</tt> </tt>
-<a name="L1663"></a><tt class="py-lineno">1663</tt> <tt class="py-line"><tt class="py-docstring"> ^^^^^^</tt> </tt>
-<a name="L1664"></a><tt class="py-lineno">1664</tt> <tt class="py-line"><tt class="py-docstring"> lkjsfd</tt> </tt>
-<a name="L1665"></a><tt class="py-lineno">1665</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1666"></a><tt class="py-lineno">1666</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt><tt class="py-op">:</tt> </tt>
-<a name="L1667"></a><tt class="py-lineno">1667</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-243" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-243', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1668"></a><tt class="py-lineno">1668</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1669"></a><tt class="py-lineno">1669</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-244" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-244', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1670"></a><tt class="py-lineno">1670</tt> <tt class="py-line"> </tt>
-<a name="L1671"></a><tt class="py-lineno">1671</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">keepTabs</tt><tt class="py-op">:</tt> </tt>
-<a name="L1672"></a><tt class="py-lineno">1672</tt> <tt class="py-line"> <tt class="py-name">instring</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">expandtabs</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1673"></a><tt class="py-lineno">1673</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L1674"></a><tt class="py-lineno">1674</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L1675"></a><tt class="py-lineno">1675</tt> <tt class="py-line"> <tt class="py-name">preparseFn</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-245" class="py-name"><a title="pyparsing.GoToColumn.preParse
-pyparsing.ParserElement.preParse" class="py-name" href="#" onclick="return doclink('link-245', 'preParse', 'link-151');">preParse</a></tt> </tt>
-<a name="L1676"></a><tt class="py-lineno">1676</tt> <tt class="py-line"> <tt class="py-name">parseFn</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> </tt>
-<a name="L1677"></a><tt class="py-lineno">1677</tt> <tt class="py-line"> <tt id="link-246" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-246', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-247" class="py-name"><a title="pyparsing.ParserElement.resetCache" class="py-name" href="#" onclick="return doclink('link-247', 'resetCache', 'link-233');">resetCache</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1678"></a><tt class="py-lineno">1678</tt> <tt class="py-line"> <tt id="link-248" class="py-name" targets="Method pyparsing.ParserElement.matches()=pyparsing.ParserElement-class.html#matches"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-248', 'matches', 'link-248');">matches</a></tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L1679"></a><tt class="py-lineno">1679</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1680"></a><tt class="py-lineno">1680</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><=</tt> <tt class="py-name">instrlen</tt> <tt class="py-keyword">and</tt> <tt id="link-249" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-249', 'matches', 'link-248');">matches</a></tt> <tt class="py-op"><</tt> <tt class="py-name">maxMatches</tt><tt class="py-op">:</tt> </tt>
-<a name="L1681"></a><tt class="py-lineno">1681</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1682"></a><tt class="py-lineno">1682</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">preparseFn</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1683"></a><tt class="py-lineno">1683</tt> <tt class="py-line"> <tt class="py-name">nextLoc</tt><tt class="py-op">,</tt><tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">parseFn</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1684"></a><tt class="py-lineno">1684</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-250" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-250', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1685"></a><tt class="py-lineno">1685</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">preloc</tt><tt class="py-op">+</tt><tt class="py-number">1</tt> </tt>
-<a name="L1686"></a><tt class="py-lineno">1686</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1687"></a><tt class="py-lineno">1687</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">nextLoc</tt> <tt class="py-op">></tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1688"></a><tt class="py-lineno">1688</tt> <tt class="py-line"> <tt id="link-251" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-251', 'matches', 'link-248');">matches</a></tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1689"></a><tt class="py-lineno">1689</tt> <tt class="py-line"> <tt class="py-keyword">yield</tt> <tt class="py-name">tokens</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">nextLoc</tt> </tt>
-<a name="L1690"></a><tt class="py-lineno">1690</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">overlap</tt><tt class="py-op">:</tt> </tt>
-<a name="L1691"></a><tt class="py-lineno">1691</tt> <tt class="py-line"> <tt class="py-name">nextloc</tt> <tt class="py-op">=</tt> <tt class="py-name">preparseFn</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1692"></a><tt class="py-lineno">1692</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">nextloc</tt> <tt class="py-op">></tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1693"></a><tt class="py-lineno">1693</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">nextLoc</tt> </tt>
-<a name="L1694"></a><tt class="py-lineno">1694</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1695"></a><tt class="py-lineno">1695</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L1696"></a><tt class="py-lineno">1696</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1697"></a><tt class="py-lineno">1697</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">nextLoc</tt> </tt>
-<a name="L1698"></a><tt class="py-lineno">1698</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1699"></a><tt class="py-lineno">1699</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">preloc</tt><tt class="py-op">+</tt><tt class="py-number">1</tt> </tt>
-<a name="L1700"></a><tt class="py-lineno">1700</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-252" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-252', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1701"></a><tt class="py-lineno">1701</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-253" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-253', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-254" class="py-name"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-254', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1702"></a><tt class="py-lineno">1702</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1703"></a><tt class="py-lineno">1703</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1704"></a><tt class="py-lineno">1704</tt> <tt class="py-line"> <tt class="py-comment"># catch and re-raise exception from here, clears out pyparsing internal stack trace</tt> </tt>
-<a name="L1705"></a><tt class="py-lineno">1705</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc</tt> </tt>
-</div><a name="L1706"></a><tt class="py-lineno">1706</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.transformString"></a><div id="ParserElement.transformString-def"><a name="L1707"></a><tt class="py-lineno">1707</tt> <a class="py-toggle" href="#" id="ParserElement.transformString-toggle" onclick="return toggle('ParserElement.transformString');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#transformString">transformString</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.transformString-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.transformString-expanded"><a name="L1708"></a><tt class="py-lineno">1708</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1709"></a><tt class="py-lineno">1709</tt> <tt class="py-line"><tt class="py-docstring"> Extension to C{L{scanString}}, to modify matching text with modified tokens that may</tt> </tt>
-<a name="L1710"></a><tt class="py-lineno">1710</tt> <tt class="py-line"><tt class="py-docstring"> be returned from a parse action. To use C{transformString}, define a grammar and</tt> </tt>
-<a name="L1711"></a><tt class="py-lineno">1711</tt> <tt class="py-line"><tt class="py-docstring"> attach a parse action to it that modifies the returned token list.</tt> </tt>
-<a name="L1712"></a><tt class="py-lineno">1712</tt> <tt class="py-line"><tt class="py-docstring"> Invoking C{transformString()} on a target string will then scan for matches,</tt> </tt>
-<a name="L1713"></a><tt class="py-lineno">1713</tt> <tt class="py-line"><tt class="py-docstring"> and replace the matched text patterns according to the logic in the parse</tt> </tt>
-<a name="L1714"></a><tt class="py-lineno">1714</tt> <tt class="py-line"><tt class="py-docstring"> action. C{transformString()} returns the resulting transformed string.</tt> </tt>
-<a name="L1715"></a><tt class="py-lineno">1715</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1716"></a><tt class="py-lineno">1716</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1717"></a><tt class="py-lineno">1717</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas)</tt> </tt>
-<a name="L1718"></a><tt class="py-lineno">1718</tt> <tt class="py-line"><tt class="py-docstring"> wd.setParseAction(lambda toks: toks[0].title())</tt> </tt>
-<a name="L1719"></a><tt class="py-lineno">1719</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1720"></a><tt class="py-lineno">1720</tt> <tt class="py-line"><tt class="py-docstring"> print(wd.transformString("now is the winter of our discontent made glorious summer by this sun of york."))</tt> </tt>
-<a name="L1721"></a><tt class="py-lineno">1721</tt> <tt class="py-line"><tt class="py-docstring"> Prints::</tt> </tt>
-<a name="L1722"></a><tt class="py-lineno">1722</tt> <tt class="py-line"><tt class="py-docstring"> Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York.</tt> </tt>
-<a name="L1723"></a><tt class="py-lineno">1723</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1724"></a><tt class="py-lineno">1724</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L1725"></a><tt class="py-lineno">1725</tt> <tt class="py-line"> <tt class="py-name">lastE</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L1726"></a><tt class="py-lineno">1726</tt> <tt class="py-line"> <tt class="py-comment"># force preservation of <TAB>s, to minimize unwanted transformation of string, and to</tt> </tt>
-<a name="L1727"></a><tt class="py-lineno">1727</tt> <tt class="py-line"> <tt class="py-comment"># keep string locs straight between transformString and scanString</tt> </tt>
-<a name="L1728"></a><tt class="py-lineno">1728</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">keepTabs</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L1729"></a><tt class="py-lineno">1729</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1730"></a><tt class="py-lineno">1730</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">t</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-255" class="py-name" targets="Method pyparsing.ParserElement.scanString()=pyparsing.ParserElement-class.html#scanString"><a title="pyparsing.ParserElement.scanString" class="py-name" href="#" onclick="return doclink('link-255', 'scanString', 'link-255');">scanString</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1731"></a><tt class="py-lineno">1731</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-256" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-256', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">lastE</tt><tt class="py-op">:</tt><tt class="py-name">s</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1732"></a><tt class="py-lineno">1732</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> </tt>
-<a name="L1733"></a><tt class="py-lineno">1733</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">,</tt><tt id="link-257" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-257', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1734"></a><tt class="py-lineno">1734</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-258" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-258', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L1735"></a><tt class="py-lineno">1735</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1736"></a><tt class="py-lineno">1736</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">+=</tt> <tt class="py-name">t</tt> </tt>
-<a name="L1737"></a><tt class="py-lineno">1737</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1738"></a><tt class="py-lineno">1738</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-259" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-259', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> </tt>
-<a name="L1739"></a><tt class="py-lineno">1739</tt> <tt class="py-line"> <tt class="py-name">lastE</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt> </tt>
-<a name="L1740"></a><tt class="py-lineno">1740</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-260" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-260', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">lastE</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L1741"></a><tt class="py-lineno">1741</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">o</tt> <tt class="py-keyword">for</tt> <tt class="py-name">o</tt> <tt class="py-keyword">in</tt> <tt class="py-name">out</tt> <tt class="py-keyword">if</tt> <tt class="py-name">o</tt><tt class="py-op">]</tt> </tt>
-<a name="L1742"></a><tt class="py-lineno">1742</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">map</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">,</tt><tt class="py-name">_flatten</tt><tt class="py-op">(</tt><tt class="py-name">out</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1743"></a><tt class="py-lineno">1743</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-261" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-261', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1744"></a><tt class="py-lineno">1744</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-262" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-262', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-263" class="py-name"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-263', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1745"></a><tt class="py-lineno">1745</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1746"></a><tt class="py-lineno">1746</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1747"></a><tt class="py-lineno">1747</tt> <tt class="py-line"> <tt class="py-comment"># catch and re-raise exception from here, clears out pyparsing internal stack trace</tt> </tt>
-<a name="L1748"></a><tt class="py-lineno">1748</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc</tt> </tt>
-</div><a name="L1749"></a><tt class="py-lineno">1749</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.searchString"></a><div id="ParserElement.searchString-def"><a name="L1750"></a><tt class="py-lineno">1750</tt> <a class="py-toggle" href="#" id="ParserElement.searchString-toggle" onclick="return toggle('ParserElement.searchString');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#searchString">searchString</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">maxMatches</tt><tt class="py-op">=</tt><tt id="link-264" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-264', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.searchString-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.searchString-expanded"><a name="L1751"></a><tt class="py-lineno">1751</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1752"></a><tt class="py-lineno">1752</tt> <tt class="py-line"><tt class="py-docstring"> Another extension to C{L{scanString}}, simplifying the access to the tokens found</tt> </tt>
-<a name="L1753"></a><tt class="py-lineno">1753</tt> <tt class="py-line"><tt class="py-docstring"> to match the given parse expression. May be called with optional</tt> </tt>
-<a name="L1754"></a><tt class="py-lineno">1754</tt> <tt class="py-line"><tt class="py-docstring"> C{maxMatches} argument, to clip searching after 'n' matches are found.</tt> </tt>
-<a name="L1755"></a><tt class="py-lineno">1755</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1756"></a><tt class="py-lineno">1756</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1757"></a><tt class="py-lineno">1757</tt> <tt class="py-line"><tt class="py-docstring"> # a capitalized word starts with an uppercase letter, followed by zero or more lowercase letters</tt> </tt>
-<a name="L1758"></a><tt class="py-lineno">1758</tt> <tt class="py-line"><tt class="py-docstring"> cap_word = Word(alphas.upper(), alphas.lower())</tt> </tt>
-<a name="L1759"></a><tt class="py-lineno">1759</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1760"></a><tt class="py-lineno">1760</tt> <tt class="py-line"><tt class="py-docstring"> print(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity"))</tt> </tt>
-<a name="L1761"></a><tt class="py-lineno">1761</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1762"></a><tt class="py-lineno">1762</tt> <tt class="py-line"><tt class="py-docstring"> # the sum() builtin can be used to merge results into a single ParseResults object</tt> </tt>
-<a name="L1763"></a><tt class="py-lineno">1763</tt> <tt class="py-line"><tt class="py-docstring"> print(sum(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity")))</tt> </tt>
-<a name="L1764"></a><tt class="py-lineno">1764</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L1765"></a><tt class="py-lineno">1765</tt> <tt class="py-line"><tt class="py-docstring"> [['More'], ['Iron'], ['Lead'], ['Gold'], ['I'], ['Electricity']]</tt> </tt>
-<a name="L1766"></a><tt class="py-lineno">1766</tt> <tt class="py-line"><tt class="py-docstring"> ['More', 'Iron', 'Lead', 'Gold', 'I', 'Electricity']</tt> </tt>
-<a name="L1767"></a><tt class="py-lineno">1767</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1768"></a><tt class="py-lineno">1768</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L1769"></a><tt class="py-lineno">1769</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-265" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-265', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt> <tt class="py-name">t</tt> <tt class="py-keyword">for</tt> <tt class="py-name">t</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-266" class="py-name"><a title="pyparsing.ParserElement.scanString" class="py-name" href="#" onclick="return doclink('link-266', 'scanString', 'link-255');">scanString</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">maxMatches</tt> <tt class="py-op">)</tt> <tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L1770"></a><tt class="py-lineno">1770</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-267" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-267', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L1771"></a><tt class="py-lineno">1771</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-268" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-268', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-269" class="py-name"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-269', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L1772"></a><tt class="py-lineno">1772</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L1773"></a><tt class="py-lineno">1773</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1774"></a><tt class="py-lineno">1774</tt> <tt class="py-line"> <tt class="py-comment"># catch and re-raise exception from here, clears out pyparsing internal stack trace</tt> </tt>
-<a name="L1775"></a><tt class="py-lineno">1775</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc</tt> </tt>
-</div><a name="L1776"></a><tt class="py-lineno">1776</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.split"></a><div id="ParserElement.split-def"><a name="L1777"></a><tt class="py-lineno">1777</tt> <a class="py-toggle" href="#" id="ParserElement.split-toggle" onclick="return toggle('ParserElement.split');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#split">split</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">maxsplit</tt><tt class="py-op">=</tt><tt id="link-270" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-270', '_MAX_INT', 'link-8');">_MAX_INT</a></tt><tt class="py-op">,</tt> <tt class="py-param">includeSeparators</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.split-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.split-expanded"><a name="L1778"></a><tt class="py-lineno">1778</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1779"></a><tt class="py-lineno">1779</tt> <tt class="py-line"><tt class="py-docstring"> Generator method to split a string using the given expression as a separator.</tt> </tt>
-<a name="L1780"></a><tt class="py-lineno">1780</tt> <tt class="py-line"><tt class="py-docstring"> May be called with optional C{maxsplit} argument, to limit the number of splits;</tt> </tt>
-<a name="L1781"></a><tt class="py-lineno">1781</tt> <tt class="py-line"><tt class="py-docstring"> and the optional C{includeSeparators} argument (default=C{False}), if the separating</tt> </tt>
-<a name="L1782"></a><tt class="py-lineno">1782</tt> <tt class="py-line"><tt class="py-docstring"> matching text should be included in the split results.</tt> </tt>
-<a name="L1783"></a><tt class="py-lineno">1783</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1784"></a><tt class="py-lineno">1784</tt> <tt class="py-line"><tt class="py-docstring"> Example:: </tt> </tt>
-<a name="L1785"></a><tt class="py-lineno">1785</tt> <tt class="py-line"><tt class="py-docstring"> punc = oneOf(list(".,;:/-!?"))</tt> </tt>
-<a name="L1786"></a><tt class="py-lineno">1786</tt> <tt class="py-line"><tt class="py-docstring"> print(list(punc.split("This, this?, this sentence, is badly punctuated!")))</tt> </tt>
-<a name="L1787"></a><tt class="py-lineno">1787</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L1788"></a><tt class="py-lineno">1788</tt> <tt class="py-line"><tt class="py-docstring"> ['This', ' this', '', ' this sentence', ' is badly punctuated', '']</tt> </tt>
-<a name="L1789"></a><tt class="py-lineno">1789</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1790"></a><tt class="py-lineno">1790</tt> <tt class="py-line"> <tt class="py-name">splits</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L1791"></a><tt class="py-lineno">1791</tt> <tt class="py-line"> <tt class="py-name">last</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L1792"></a><tt class="py-lineno">1792</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">t</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-271" class="py-name"><a title="pyparsing.ParserElement.scanString" class="py-name" href="#" onclick="return doclink('link-271', 'scanString', 'link-255');">scanString</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">maxMatches</tt><tt class="py-op">=</tt><tt class="py-name">maxsplit</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1793"></a><tt class="py-lineno">1793</tt> <tt class="py-line"> <tt class="py-keyword">yield</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">last</tt><tt class="py-op">:</tt><tt class="py-name">s</tt><tt class="py-op">]</tt> </tt>
-<a name="L1794"></a><tt class="py-lineno">1794</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">includeSeparators</tt><tt class="py-op">:</tt> </tt>
-<a name="L1795"></a><tt class="py-lineno">1795</tt> <tt class="py-line"> <tt class="py-keyword">yield</tt> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L1796"></a><tt class="py-lineno">1796</tt> <tt class="py-line"> <tt class="py-name">last</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt> </tt>
-<a name="L1797"></a><tt class="py-lineno">1797</tt> <tt class="py-line"> <tt class="py-keyword">yield</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">last</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L1798"></a><tt class="py-lineno">1798</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__add__"></a><div id="ParserElement.__add__-def"><a name="L1799"></a><tt class="py-lineno">1799</tt> <a class="py-toggle" href="#" id="ParserElement.__add__-toggle" onclick="return toggle('ParserElement.__add__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__add__">__add__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__add__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__add__-expanded"><a name="L1800"></a><tt class="py-lineno">1800</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1801"></a><tt class="py-lineno">1801</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of + operator - returns C{L{And}}. Adding strings to a ParserElement</tt> </tt>
-<a name="L1802"></a><tt class="py-lineno">1802</tt> <tt class="py-line"><tt class="py-docstring"> converts them to L{Literal}s by default.</tt> </tt>
-<a name="L1803"></a><tt class="py-lineno">1803</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L1804"></a><tt class="py-lineno">1804</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L1805"></a><tt class="py-lineno">1805</tt> <tt class="py-line"><tt class="py-docstring"> greet = Word(alphas) + "," + Word(alphas) + "!"</tt> </tt>
-<a name="L1806"></a><tt class="py-lineno">1806</tt> <tt class="py-line"><tt class="py-docstring"> hello = "Hello, World!"</tt> </tt>
-<a name="L1807"></a><tt class="py-lineno">1807</tt> <tt class="py-line"><tt class="py-docstring"> print (hello, "->", greet.parseString(hello))</tt> </tt>
-<a name="L1808"></a><tt class="py-lineno">1808</tt> <tt class="py-line"><tt class="py-docstring"> Prints::</tt> </tt>
-<a name="L1809"></a><tt class="py-lineno">1809</tt> <tt class="py-line"><tt class="py-docstring"> Hello, World! -> ['Hello', ',', 'World', '!']</tt> </tt>
-<a name="L1810"></a><tt class="py-lineno">1810</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1811"></a><tt class="py-lineno">1811</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1812"></a><tt class="py-lineno">1812</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-272" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-272', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1813"></a><tt class="py-lineno">1813</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-273" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-273', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1814"></a><tt class="py-lineno">1814</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1815"></a><tt class="py-lineno">1815</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1816"></a><tt class="py-lineno">1816</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1817"></a><tt class="py-lineno">1817</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-274" class="py-name" targets="Class pyparsing.And=pyparsing.And-class.html"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-274', 'And', 'link-274');">And</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt> <tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L1818"></a><tt class="py-lineno">1818</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__radd__"></a><div id="ParserElement.__radd__-def"><a name="L1819"></a><tt class="py-lineno">1819</tt> <a class="py-toggle" href="#" id="ParserElement.__radd__-toggle" onclick="return toggle('ParserElement.__radd__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__radd__">__radd__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__radd__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__radd__-expanded"><a name="L1820"></a><tt class="py-lineno">1820</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1821"></a><tt class="py-lineno">1821</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of + operator when left operand is not a C{L{ParserElement}}</tt> </tt>
-<a name="L1822"></a><tt class="py-lineno">1822</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1823"></a><tt class="py-lineno">1823</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1824"></a><tt class="py-lineno">1824</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-275" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-275', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1825"></a><tt class="py-lineno">1825</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-276" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-276', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1826"></a><tt class="py-lineno">1826</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1827"></a><tt class="py-lineno">1827</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1828"></a><tt class="py-lineno">1828</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1829"></a><tt class="py-lineno">1829</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1830"></a><tt class="py-lineno">1830</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__sub__"></a><div id="ParserElement.__sub__-def"><a name="L1831"></a><tt class="py-lineno">1831</tt> <a class="py-toggle" href="#" id="ParserElement.__sub__-toggle" onclick="return toggle('ParserElement.__sub__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__sub__">__sub__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__sub__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__sub__-expanded"><a name="L1832"></a><tt class="py-lineno">1832</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1833"></a><tt class="py-lineno">1833</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of - operator, returns C{L{And}} with error stop</tt> </tt>
-<a name="L1834"></a><tt class="py-lineno">1834</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1835"></a><tt class="py-lineno">1835</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1836"></a><tt class="py-lineno">1836</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-277" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-277', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1837"></a><tt class="py-lineno">1837</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-278" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-278', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1838"></a><tt class="py-lineno">1838</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1839"></a><tt class="py-lineno">1839</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1840"></a><tt class="py-lineno">1840</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1841"></a><tt class="py-lineno">1841</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> <tt class="py-op">+</tt> <tt id="link-279" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-279', 'And', 'link-274');">And</a></tt><tt class="py-op">.</tt><tt class="py-name">_ErrorStop</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">other</tt> </tt>
-</div><a name="L1842"></a><tt class="py-lineno">1842</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__rsub__"></a><div id="ParserElement.__rsub__-def"><a name="L1843"></a><tt class="py-lineno">1843</tt> <a class="py-toggle" href="#" id="ParserElement.__rsub__-toggle" onclick="return toggle('ParserElement.__rsub__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__rsub__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__rsub__-expanded"><a name="L1844"></a><tt class="py-lineno">1844</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1845"></a><tt class="py-lineno">1845</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of - operator when left operand is not a C{L{ParserElement}}</tt> </tt>
-<a name="L1846"></a><tt class="py-lineno">1846</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1847"></a><tt class="py-lineno">1847</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1848"></a><tt class="py-lineno">1848</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-280" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-280', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1849"></a><tt class="py-lineno">1849</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-281" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-281', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1850"></a><tt class="py-lineno">1850</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1851"></a><tt class="py-lineno">1851</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1852"></a><tt class="py-lineno">1852</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1853"></a><tt class="py-lineno">1853</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">-</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1854"></a><tt class="py-lineno">1854</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__mul__"></a><div id="ParserElement.__mul__-def"><a name="L1855"></a><tt class="py-lineno">1855</tt> <a class="py-toggle" href="#" id="ParserElement.__mul__-toggle" onclick="return toggle('ParserElement.__mul__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__mul__">__mul__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__mul__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__mul__-expanded"><a name="L1856"></a><tt class="py-lineno">1856</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1857"></a><tt class="py-lineno">1857</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of * operator, allows use of C{expr * 3} in place of</tt> </tt>
-<a name="L1858"></a><tt class="py-lineno">1858</tt> <tt class="py-line"><tt class="py-docstring"> C{expr + expr + expr}. Expressions may also me multiplied by a 2-integer</tt> </tt>
-<a name="L1859"></a><tt class="py-lineno">1859</tt> <tt class="py-line"><tt class="py-docstring"> tuple, similar to C{{min,max}} multipliers in regular expressions. Tuples</tt> </tt>
-<a name="L1860"></a><tt class="py-lineno">1860</tt> <tt class="py-line"><tt class="py-docstring"> may also include C{None} as in:</tt> </tt>
-<a name="L1861"></a><tt class="py-lineno">1861</tt> <tt class="py-line"><tt class="py-docstring"> - C{expr*(n,None)} or C{expr*(n,)} is equivalent</tt> </tt>
-<a name="L1862"></a><tt class="py-lineno">1862</tt> <tt class="py-line"><tt class="py-docstring"> to C{expr*n + L{ZeroOrMore}(expr)}</tt> </tt>
-<a name="L1863"></a><tt class="py-lineno">1863</tt> <tt class="py-line"><tt class="py-docstring"> (read as "at least n instances of C{expr}")</tt> </tt>
-<a name="L1864"></a><tt class="py-lineno">1864</tt> <tt class="py-line"><tt class="py-docstring"> - C{expr*(None,n)} is equivalent to C{expr*(0,n)}</tt> </tt>
-<a name="L1865"></a><tt class="py-lineno">1865</tt> <tt class="py-line"><tt class="py-docstring"> (read as "0 to n instances of C{expr}")</tt> </tt>
-<a name="L1866"></a><tt class="py-lineno">1866</tt> <tt class="py-line"><tt class="py-docstring"> - C{expr*(None,None)} is equivalent to C{L{ZeroOrMore}(expr)}</tt> </tt>
-<a name="L1867"></a><tt class="py-lineno">1867</tt> <tt class="py-line"><tt class="py-docstring"> - C{expr*(1,None)} is equivalent to C{L{OneOrMore}(expr)}</tt> </tt>
-<a name="L1868"></a><tt class="py-lineno">1868</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L1869"></a><tt class="py-lineno">1869</tt> <tt class="py-line"><tt class="py-docstring"> Note that C{expr*(None,n)} does not raise an exception if</tt> </tt>
-<a name="L1870"></a><tt class="py-lineno">1870</tt> <tt class="py-line"><tt class="py-docstring"> more than n exprs exist in the input stream; that is,</tt> </tt>
-<a name="L1871"></a><tt class="py-lineno">1871</tt> <tt class="py-line"><tt class="py-docstring"> C{expr*(None,n)} does not enforce a maximum number of expr</tt> </tt>
-<a name="L1872"></a><tt class="py-lineno">1872</tt> <tt class="py-line"><tt class="py-docstring"> occurrences. If this behavior is desired, then write</tt> </tt>
-<a name="L1873"></a><tt class="py-lineno">1873</tt> <tt class="py-line"><tt class="py-docstring"> C{expr*(None,n) + ~expr}</tt> </tt>
-<a name="L1874"></a><tt class="py-lineno">1874</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1875"></a><tt class="py-lineno">1875</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1876"></a><tt class="py-lineno">1876</tt> <tt class="py-line"> <tt class="py-name">minElements</tt><tt class="py-op">,</tt> <tt class="py-name">optElements</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt><tt class="py-number">0</tt> </tt>
-<a name="L1877"></a><tt class="py-lineno">1877</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt><tt class="py-name">tuple</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1878"></a><tt class="py-lineno">1878</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">other</tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">2</tt><tt class="py-op">]</tt> </tt>
-<a name="L1879"></a><tt class="py-lineno">1879</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L1880"></a><tt class="py-lineno">1880</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L1881"></a><tt class="py-lineno">1881</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L1882"></a><tt class="py-lineno">1882</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L1883"></a><tt class="py-lineno">1883</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-282" class="py-name" targets="Class pyparsing.ZeroOrMore=pyparsing.ZeroOrMore-class.html"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-282', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1884"></a><tt class="py-lineno">1884</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1885"></a><tt class="py-lineno">1885</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-283" class="py-name" targets="Class pyparsing.OneOrMore=pyparsing.OneOrMore-class.html"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-283', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1886"></a><tt class="py-lineno">1886</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1887"></a><tt class="py-lineno">1887</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">*</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt id="link-284" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-284', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L1888"></a><tt class="py-lineno">1888</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1889"></a><tt class="py-lineno">1889</tt> <tt class="py-line"> <tt class="py-name">minElements</tt><tt class="py-op">,</tt> <tt class="py-name">optElements</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt> </tt>
-<a name="L1890"></a><tt class="py-lineno">1890</tt> <tt class="py-line"> <tt class="py-name">optElements</tt> <tt class="py-op">-=</tt> <tt class="py-name">minElements</tt> </tt>
-<a name="L1891"></a><tt class="py-lineno">1891</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1892"></a><tt class="py-lineno">1892</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">TypeError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot multiply 'ParserElement' and ('%s','%s') objects"</tt><tt class="py-op">,</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1893"></a><tt class="py-lineno">1893</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1894"></a><tt class="py-lineno">1894</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">TypeError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot multiply 'ParserElement' and '%s' objects"</tt><tt class="py-op">,</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1895"></a><tt class="py-lineno">1895</tt> <tt class="py-line"> </tt>
-<a name="L1896"></a><tt class="py-lineno">1896</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">minElements</tt> <tt class="py-op"><</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L1897"></a><tt class="py-lineno">1897</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot multiply ParserElement by negative value"</tt><tt class="py-op">)</tt> </tt>
-<a name="L1898"></a><tt class="py-lineno">1898</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">optElements</tt> <tt class="py-op"><</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L1899"></a><tt class="py-lineno">1899</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"second tuple value must be greater or equal to first tuple value"</tt><tt class="py-op">)</tt> </tt>
-<a name="L1900"></a><tt class="py-lineno">1900</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">minElements</tt> <tt class="py-op">==</tt> <tt class="py-name">optElements</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L1901"></a><tt class="py-lineno">1901</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot multiply ParserElement by 0 or (0,0)"</tt><tt class="py-op">)</tt> </tt>
-<a name="L1902"></a><tt class="py-lineno">1902</tt> <tt class="py-line"> </tt>
-<a name="L1903"></a><tt class="py-lineno">1903</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">optElements</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1904"></a><tt class="py-lineno">1904</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">makeOptionalList</tt><tt class="py-op">(</tt><tt class="py-param">n</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1905"></a><tt class="py-lineno">1905</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">n</tt><tt class="py-op">></tt><tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1906"></a><tt class="py-lineno">1906</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-285" class="py-name" targets="Class pyparsing.Optional=pyparsing.Optional-class.html"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-285', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt> <tt class="py-op">+</tt> <tt class="py-name">makeOptionalList</tt><tt class="py-op">(</tt><tt class="py-name">n</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L1907"></a><tt class="py-lineno">1907</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1908"></a><tt class="py-lineno">1908</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-286" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-286', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1909"></a><tt class="py-lineno">1909</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">minElements</tt><tt class="py-op">:</tt> </tt>
-<a name="L1910"></a><tt class="py-lineno">1910</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">minElements</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1911"></a><tt class="py-lineno">1911</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt> <tt class="py-op">+</tt> <tt class="py-name">makeOptionalList</tt><tt class="py-op">(</tt><tt class="py-name">optElements</tt><tt class="py-op">)</tt> </tt>
-<a name="L1912"></a><tt class="py-lineno">1912</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1913"></a><tt class="py-lineno">1913</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-287" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-287', 'And', 'link-274');">And</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt><tt class="py-op">*</tt><tt class="py-name">minElements</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">makeOptionalList</tt><tt class="py-op">(</tt><tt class="py-name">optElements</tt><tt class="py-op">)</tt> </tt>
-<a name="L1914"></a><tt class="py-lineno">1914</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1915"></a><tt class="py-lineno">1915</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">makeOptionalList</tt><tt class="py-op">(</tt><tt class="py-name">optElements</tt><tt class="py-op">)</tt> </tt>
-<a name="L1916"></a><tt class="py-lineno">1916</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1917"></a><tt class="py-lineno">1917</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">minElements</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L1918"></a><tt class="py-lineno">1918</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt> </tt>
-<a name="L1919"></a><tt class="py-lineno">1919</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L1920"></a><tt class="py-lineno">1920</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-288" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-288', 'And', 'link-274');">And</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt><tt class="py-op">*</tt><tt class="py-name">minElements</tt><tt class="py-op">)</tt> </tt>
-<a name="L1921"></a><tt class="py-lineno">1921</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L1922"></a><tt class="py-lineno">1922</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__rmul__"></a><div id="ParserElement.__rmul__-def"><a name="L1923"></a><tt class="py-lineno">1923</tt> <a class="py-toggle" href="#" id="ParserElement.__rmul__-toggle" onclick="return toggle('ParserElement.__rmul__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__rmul__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__rmul__-expanded"><a name="L1924"></a><tt class="py-lineno">1924</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-289" class="py-name" targets="Method pyparsing.ParserElement.__mul__()=pyparsing.ParserElement-class.html#__mul__"><a title="pyparsing.ParserElement.__mul__" class="py-name" href="#" onclick="return doclink('link-289', '__mul__', 'link-289');">__mul__</a></tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L1925"></a><tt class="py-lineno">1925</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__or__"></a><div id="ParserElement.__or__-def"><a name="L1926"></a><tt class="py-lineno">1926</tt> <a class="py-toggle" href="#" id="ParserElement.__or__-toggle" onclick="return toggle('ParserElement.__or__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__or__">__or__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__or__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__or__-expanded"><a name="L1927"></a><tt class="py-lineno">1927</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1928"></a><tt class="py-lineno">1928</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of | operator - returns C{L{MatchFirst}}</tt> </tt>
-<a name="L1929"></a><tt class="py-lineno">1929</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1930"></a><tt class="py-lineno">1930</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1931"></a><tt class="py-lineno">1931</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-290" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-290', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1932"></a><tt class="py-lineno">1932</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-291" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-291', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1933"></a><tt class="py-lineno">1933</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1934"></a><tt class="py-lineno">1934</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1935"></a><tt class="py-lineno">1935</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1936"></a><tt class="py-lineno">1936</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-292" class="py-name" targets="Class pyparsing.MatchFirst=pyparsing.MatchFirst-class.html"><a title="pyparsing.MatchFirst" class="py-name" href="#" onclick="return doclink('link-292', 'MatchFirst', 'link-292');">MatchFirst</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt> <tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L1937"></a><tt class="py-lineno">1937</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__ror__"></a><div id="ParserElement.__ror__-def"><a name="L1938"></a><tt class="py-lineno">1938</tt> <a class="py-toggle" href="#" id="ParserElement.__ror__-toggle" onclick="return toggle('ParserElement.__ror__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__ror__">__ror__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__ror__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__ror__-expanded"><a name="L1939"></a><tt class="py-lineno">1939</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1940"></a><tt class="py-lineno">1940</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of | operator when left operand is not a C{L{ParserElement}}</tt> </tt>
-<a name="L1941"></a><tt class="py-lineno">1941</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1942"></a><tt class="py-lineno">1942</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1943"></a><tt class="py-lineno">1943</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-293" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-293', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1944"></a><tt class="py-lineno">1944</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-294" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-294', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1945"></a><tt class="py-lineno">1945</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1946"></a><tt class="py-lineno">1946</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1947"></a><tt class="py-lineno">1947</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1948"></a><tt class="py-lineno">1948</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">|</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1949"></a><tt class="py-lineno">1949</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__xor__"></a><div id="ParserElement.__xor__-def"><a name="L1950"></a><tt class="py-lineno">1950</tt> <a class="py-toggle" href="#" id="ParserElement.__xor__-toggle" onclick="return toggle('ParserElement.__xor__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__xor__">__xor__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__xor__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__xor__-expanded"><a name="L1951"></a><tt class="py-lineno">1951</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1952"></a><tt class="py-lineno">1952</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of ^ operator - returns C{L{Or}}</tt> </tt>
-<a name="L1953"></a><tt class="py-lineno">1953</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1954"></a><tt class="py-lineno">1954</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1955"></a><tt class="py-lineno">1955</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-295" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-295', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1956"></a><tt class="py-lineno">1956</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-296" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-296', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1957"></a><tt class="py-lineno">1957</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1958"></a><tt class="py-lineno">1958</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1959"></a><tt class="py-lineno">1959</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1960"></a><tt class="py-lineno">1960</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-297" class="py-name" targets="Class pyparsing.Or=pyparsing.Or-class.html"><a title="pyparsing.Or" class="py-name" href="#" onclick="return doclink('link-297', 'Or', 'link-297');">Or</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt> <tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L1961"></a><tt class="py-lineno">1961</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__rxor__"></a><div id="ParserElement.__rxor__-def"><a name="L1962"></a><tt class="py-lineno">1962</tt> <a class="py-toggle" href="#" id="ParserElement.__rxor__-toggle" onclick="return toggle('ParserElement.__rxor__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__rxor__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__rxor__-expanded"><a name="L1963"></a><tt class="py-lineno">1963</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1964"></a><tt class="py-lineno">1964</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of ^ operator when left operand is not a C{L{ParserElement}}</tt> </tt>
-<a name="L1965"></a><tt class="py-lineno">1965</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1966"></a><tt class="py-lineno">1966</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1967"></a><tt class="py-lineno">1967</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-298" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-298', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1968"></a><tt class="py-lineno">1968</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-299" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-299', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1969"></a><tt class="py-lineno">1969</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1970"></a><tt class="py-lineno">1970</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1971"></a><tt class="py-lineno">1971</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1972"></a><tt class="py-lineno">1972</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">^</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1973"></a><tt class="py-lineno">1973</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__and__"></a><div id="ParserElement.__and__-def"><a name="L1974"></a><tt class="py-lineno">1974</tt> <a class="py-toggle" href="#" id="ParserElement.__and__-toggle" onclick="return toggle('ParserElement.__and__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__and__">__and__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__and__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__and__-expanded"><a name="L1975"></a><tt class="py-lineno">1975</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1976"></a><tt class="py-lineno">1976</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of & operator - returns C{L{Each}}</tt> </tt>
-<a name="L1977"></a><tt class="py-lineno">1977</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1978"></a><tt class="py-lineno">1978</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1979"></a><tt class="py-lineno">1979</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-300" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-300', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1980"></a><tt class="py-lineno">1980</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-301" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-301', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1981"></a><tt class="py-lineno">1981</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1982"></a><tt class="py-lineno">1982</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1983"></a><tt class="py-lineno">1983</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1984"></a><tt class="py-lineno">1984</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-302" class="py-name" targets="Class pyparsing.Each=pyparsing.Each-class.html"><a title="pyparsing.Each" class="py-name" href="#" onclick="return doclink('link-302', 'Each', 'link-302');">Each</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt> <tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L1985"></a><tt class="py-lineno">1985</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__rand__"></a><div id="ParserElement.__rand__-def"><a name="L1986"></a><tt class="py-lineno">1986</tt> <a class="py-toggle" href="#" id="ParserElement.__rand__-toggle" onclick="return toggle('ParserElement.__rand__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__rand__">__rand__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__rand__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__rand__-expanded"><a name="L1987"></a><tt class="py-lineno">1987</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L1988"></a><tt class="py-lineno">1988</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of & operator when left operand is not a C{L{ParserElement}}</tt> </tt>
-<a name="L1989"></a><tt class="py-lineno">1989</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L1990"></a><tt class="py-lineno">1990</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1991"></a><tt class="py-lineno">1991</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-303" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-303', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L1992"></a><tt class="py-lineno">1992</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-304" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-304', 'ParserElement', 'link-132');">ParserElement</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L1993"></a><tt class="py-lineno">1993</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Cannot combine element of type %s with ParserElement"</tt> <tt class="py-op">%</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L1994"></a><tt class="py-lineno">1994</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L1995"></a><tt class="py-lineno">1995</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">None</tt> </tt>
-<a name="L1996"></a><tt class="py-lineno">1996</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">other</tt> <tt class="py-op">&</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L1997"></a><tt class="py-lineno">1997</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__invert__"></a><div id="ParserElement.__invert__-def"><a name="L1998"></a><tt class="py-lineno">1998</tt> <a class="py-toggle" href="#" id="ParserElement.__invert__-toggle" onclick="return toggle('ParserElement.__invert__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__invert__">__invert__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__invert__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__invert__-expanded"><a name="L1999"></a><tt class="py-lineno">1999</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2000"></a><tt class="py-lineno">2000</tt> <tt class="py-line"><tt class="py-docstring"> Implementation of ~ operator - returns C{L{NotAny}}</tt> </tt>
-<a name="L2001"></a><tt class="py-lineno">2001</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2002"></a><tt class="py-lineno">2002</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-305" class="py-name" targets="Class pyparsing.NotAny=pyparsing.NotAny-class.html"><a title="pyparsing.NotAny" class="py-name" href="#" onclick="return doclink('link-305', 'NotAny', 'link-305');">NotAny</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L2003"></a><tt class="py-lineno">2003</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__call__"></a><div id="ParserElement.__call__-def"><a name="L2004"></a><tt class="py-lineno">2004</tt> <a class="py-toggle" href="#" id="ParserElement.__call__-toggle" onclick="return toggle('ParserElement.__call__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__call__">__call__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__call__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__call__-expanded"><a name="L2005"></a><tt class="py-lineno">2005</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2006"></a><tt class="py-lineno">2006</tt> <tt class="py-line"><tt class="py-docstring"> Shortcut for C{L{setResultsName}}, with C{listAllMatches=False}.</tt> </tt>
-<a name="L2007"></a><tt class="py-lineno">2007</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2008"></a><tt class="py-lineno">2008</tt> <tt class="py-line"><tt class="py-docstring"> If C{name} is given with a trailing C{'*'} character, then C{listAllMatches} will be</tt> </tt>
-<a name="L2009"></a><tt class="py-lineno">2009</tt> <tt class="py-line"><tt class="py-docstring"> passed as C{True}.</tt> </tt>
-<a name="L2010"></a><tt class="py-lineno">2010</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2011"></a><tt class="py-lineno">2011</tt> <tt class="py-line"><tt class="py-docstring"> If C{name} is omitted, same as calling C{L{copy}}.</tt> </tt>
-<a name="L2012"></a><tt class="py-lineno">2012</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2013"></a><tt class="py-lineno">2013</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2014"></a><tt class="py-lineno">2014</tt> <tt class="py-line"><tt class="py-docstring"> # these are equivalent</tt> </tt>
-<a name="L2015"></a><tt class="py-lineno">2015</tt> <tt class="py-line"><tt class="py-docstring"> userdata = Word(alphas).setResultsName("name") + Word(nums+"-").setResultsName("socsecno")</tt> </tt>
-<a name="L2016"></a><tt class="py-lineno">2016</tt> <tt class="py-line"><tt class="py-docstring"> userdata = Word(alphas)("name") + Word(nums+"-")("socsecno") </tt> </tt>
-<a name="L2017"></a><tt class="py-lineno">2017</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2018"></a><tt class="py-lineno">2018</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">name</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2019"></a><tt class="py-lineno">2019</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-306" class="py-name" targets="Method pyparsing.ParseExpression.setResultsName()=pyparsing.ParseExpression-class.html#setResultsName,Method pyparsing.ParserElement.setResultsName()=pyparsing.ParserElement-class.html#setResultsName"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-306', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-name">name</tt><tt class="py-op">)</tt> </tt>
-<a name="L2020"></a><tt class="py-lineno">2020</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2021"></a><tt class="py-lineno">2021</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-307" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-307', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2022"></a><tt class="py-lineno">2022</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.suppress"></a><div id="ParserElement.suppress-def"><a name="L2023"></a><tt class="py-lineno">2023</tt> <a class="py-toggle" href="#" id="ParserElement.suppress-toggle" onclick="return toggle('ParserElement.suppress');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#suppress">suppress</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.suppress-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.suppress-expanded"><a name="L2024"></a><tt class="py-lineno">2024</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2025"></a><tt class="py-lineno">2025</tt> <tt class="py-line"><tt class="py-docstring"> Suppresses the output of this C{ParserElement}; useful to keep punctuation from</tt> </tt>
-<a name="L2026"></a><tt class="py-lineno">2026</tt> <tt class="py-line"><tt class="py-docstring"> cluttering up returned output.</tt> </tt>
-<a name="L2027"></a><tt class="py-lineno">2027</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2028"></a><tt class="py-lineno">2028</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-308" class="py-name" targets="Class pyparsing.Suppress=pyparsing.Suppress-class.html"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-308', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L2029"></a><tt class="py-lineno">2029</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.leaveWhitespace"></a><div id="ParserElement.leaveWhitespace-def"><a name="L2030"></a><tt class="py-lineno">2030</tt> <a class="py-toggle" href="#" id="ParserElement.leaveWhitespace-toggle" onclick="return toggle('ParserElement.leaveWhitespace');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.leaveWhitespace-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.leaveWhitespace-expanded"><a name="L2031"></a><tt class="py-lineno">2031</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2032"></a><tt class="py-lineno">2032</tt> <tt class="py-line"><tt class="py-docstring"> Disables the skipping of whitespace before matching the characters in the</tt> </tt>
-<a name="L2033"></a><tt class="py-lineno">2033</tt> <tt class="py-line"><tt class="py-docstring"> C{ParserElement}'s defined pattern. This is normally only used internally by</tt> </tt>
-<a name="L2034"></a><tt class="py-lineno">2034</tt> <tt class="py-line"><tt class="py-docstring"> the pyparsing module, but may be needed in some whitespace-sensitive grammars.</tt> </tt>
-<a name="L2035"></a><tt class="py-lineno">2035</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2036"></a><tt class="py-lineno">2036</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2037"></a><tt class="py-lineno">2037</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2038"></a><tt class="py-lineno">2038</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setWhitespaceChars"></a><div id="ParserElement.setWhitespaceChars-def"><a name="L2039"></a><tt class="py-lineno">2039</tt> <a class="py-toggle" href="#" id="ParserElement.setWhitespaceChars-toggle" onclick="return toggle('ParserElement.setWhitespaceChars');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">chars</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setWhitespaceChars-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setWhitespaceChars-expanded"><a name="L2040"></a><tt class="py-lineno">2040</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2041"></a><tt class="py-lineno">2041</tt> <tt class="py-line"><tt class="py-docstring"> Overrides the default whitespace chars</tt> </tt>
-<a name="L2042"></a><tt class="py-lineno">2042</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2043"></a><tt class="py-lineno">2043</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2044"></a><tt class="py-lineno">2044</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">=</tt> <tt class="py-name">chars</tt> </tt>
-<a name="L2045"></a><tt class="py-lineno">2045</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">copyDefaultWhiteChars</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2046"></a><tt class="py-lineno">2046</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2047"></a><tt class="py-lineno">2047</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.parseWithTabs"></a><div id="ParserElement.parseWithTabs-def"><a name="L2048"></a><tt class="py-lineno">2048</tt> <a class="py-toggle" href="#" id="ParserElement.parseWithTabs-toggle" onclick="return toggle('ParserElement.parseWithTabs');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.parseWithTabs-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.parseWithTabs-expanded"><a name="L2049"></a><tt class="py-lineno">2049</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2050"></a><tt class="py-lineno">2050</tt> <tt class="py-line"><tt class="py-docstring"> Overrides default behavior to expand C{<TAB>}s to spaces before parsing the input string.</tt> </tt>
-<a name="L2051"></a><tt class="py-lineno">2051</tt> <tt class="py-line"><tt class="py-docstring"> Must be called before C{parseString} when the input grammar contains elements that</tt> </tt>
-<a name="L2052"></a><tt class="py-lineno">2052</tt> <tt class="py-line"><tt class="py-docstring"> match C{<TAB>} characters.</tt> </tt>
-<a name="L2053"></a><tt class="py-lineno">2053</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2054"></a><tt class="py-lineno">2054</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">keepTabs</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2055"></a><tt class="py-lineno">2055</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2056"></a><tt class="py-lineno">2056</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.ignore"></a><div id="ParserElement.ignore-def"><a name="L2057"></a><tt class="py-lineno">2057</tt> <a class="py-toggle" href="#" id="ParserElement.ignore-toggle" onclick="return toggle('ParserElement.ignore');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#ignore">ignore</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.ignore-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.ignore-expanded"><a name="L2058"></a><tt class="py-lineno">2058</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2059"></a><tt class="py-lineno">2059</tt> <tt class="py-line"><tt class="py-docstring"> Define expression to be ignored (e.g., comments) while doing pattern</tt> </tt>
-<a name="L2060"></a><tt class="py-lineno">2060</tt> <tt class="py-line"><tt class="py-docstring"> matching; may be called repeatedly, to define multiple comment or other</tt> </tt>
-<a name="L2061"></a><tt class="py-lineno">2061</tt> <tt class="py-line"><tt class="py-docstring"> ignorable patterns.</tt> </tt>
-<a name="L2062"></a><tt class="py-lineno">2062</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2063"></a><tt class="py-lineno">2063</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2064"></a><tt class="py-lineno">2064</tt> <tt class="py-line"><tt class="py-docstring"> patt = OneOrMore(Word(alphas))</tt> </tt>
-<a name="L2065"></a><tt class="py-lineno">2065</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']</tt> </tt>
-<a name="L2066"></a><tt class="py-lineno">2066</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2067"></a><tt class="py-lineno">2067</tt> <tt class="py-line"><tt class="py-docstring"> patt.ignore(cStyleComment)</tt> </tt>
-<a name="L2068"></a><tt class="py-lineno">2068</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']</tt> </tt>
-<a name="L2069"></a><tt class="py-lineno">2069</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2070"></a><tt class="py-lineno">2070</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2071"></a><tt class="py-lineno">2071</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-309" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-309', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L2072"></a><tt class="py-lineno">2072</tt> <tt class="py-line"> </tt>
-<a name="L2073"></a><tt class="py-lineno">2073</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-310" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-310', 'Suppress', 'link-308');">Suppress</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2074"></a><tt class="py-lineno">2074</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L2075"></a><tt class="py-lineno">2075</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">.</tt><tt id="link-311" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-311', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L2076"></a><tt class="py-lineno">2076</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2077"></a><tt class="py-lineno">2077</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">.</tt><tt id="link-312" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-312', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt id="link-313" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-313', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt id="link-314" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-314', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2078"></a><tt class="py-lineno">2078</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2079"></a><tt class="py-lineno">2079</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setDebugActions"></a><div id="ParserElement.setDebugActions-def"><a name="L2080"></a><tt class="py-lineno">2080</tt> <a class="py-toggle" href="#" id="ParserElement.setDebugActions-toggle" onclick="return toggle('ParserElement.setDebugActions');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">startAction</tt><tt class="py-op">,</tt> <tt class="py-param">successAction</tt><tt class="py-op">,</tt> <tt class="py-param">exceptionAction</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setDebugActions-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setDebugActions-expanded"><a name="L2081"></a><tt class="py-lineno">2081</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2082"></a><tt class="py-lineno">2082</tt> <tt class="py-line"><tt class="py-docstring"> Enable display of debugging messages while doing pattern matching.</tt> </tt>
-<a name="L2083"></a><tt class="py-lineno">2083</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2084"></a><tt class="py-lineno">2084</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debugActions</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">startAction</tt> <tt class="py-keyword">or</tt> <tt class="py-name">_defaultStartDebugAction</tt><tt class="py-op">,</tt> </tt>
-<a name="L2085"></a><tt class="py-lineno">2085</tt> <tt class="py-line"> <tt class="py-name">successAction</tt> <tt class="py-keyword">or</tt> <tt class="py-name">_defaultSuccessDebugAction</tt><tt class="py-op">,</tt> </tt>
-<a name="L2086"></a><tt class="py-lineno">2086</tt> <tt class="py-line"> <tt class="py-name">exceptionAction</tt> <tt class="py-keyword">or</tt> <tt class="py-name">_defaultExceptionDebugAction</tt><tt class="py-op">)</tt> </tt>
-<a name="L2087"></a><tt class="py-lineno">2087</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2088"></a><tt class="py-lineno">2088</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2089"></a><tt class="py-lineno">2089</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.setDebug"></a><div id="ParserElement.setDebug-def"><a name="L2090"></a><tt class="py-lineno">2090</tt> <a class="py-toggle" href="#" id="ParserElement.setDebug-toggle" onclick="return toggle('ParserElement.setDebug');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#setDebug">setDebug</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">flag</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.setDebug-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.setDebug-expanded"><a name="L2091"></a><tt class="py-lineno">2091</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2092"></a><tt class="py-lineno">2092</tt> <tt class="py-line"><tt class="py-docstring"> Enable display of debugging messages while doing pattern matching.</tt> </tt>
-<a name="L2093"></a><tt class="py-lineno">2093</tt> <tt class="py-line"><tt class="py-docstring"> Set C{flag} to True to enable, False to disable.</tt> </tt>
-<a name="L2094"></a><tt class="py-lineno">2094</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2095"></a><tt class="py-lineno">2095</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2096"></a><tt class="py-lineno">2096</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas).setName("alphaword")</tt> </tt>
-<a name="L2097"></a><tt class="py-lineno">2097</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums).setName("numword")</tt> </tt>
-<a name="L2098"></a><tt class="py-lineno">2098</tt> <tt class="py-line"><tt class="py-docstring"> term = wd | integer</tt> </tt>
-<a name="L2099"></a><tt class="py-lineno">2099</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2100"></a><tt class="py-lineno">2100</tt> <tt class="py-line"><tt class="py-docstring"> # turn on debugging for wd</tt> </tt>
-<a name="L2101"></a><tt class="py-lineno">2101</tt> <tt class="py-line"><tt class="py-docstring"> wd.setDebug()</tt> </tt>
-<a name="L2102"></a><tt class="py-lineno">2102</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2103"></a><tt class="py-lineno">2103</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(term).parseString("abc 123 xyz 890")</tt> </tt>
-<a name="L2104"></a><tt class="py-lineno">2104</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2105"></a><tt class="py-lineno">2105</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L2106"></a><tt class="py-lineno">2106</tt> <tt class="py-line"><tt class="py-docstring"> Match alphaword at loc 0(1,1)</tt> </tt>
-<a name="L2107"></a><tt class="py-lineno">2107</tt> <tt class="py-line"><tt class="py-docstring"> Matched alphaword -> ['abc']</tt> </tt>
-<a name="L2108"></a><tt class="py-lineno">2108</tt> <tt class="py-line"><tt class="py-docstring"> Match alphaword at loc 3(1,4)</tt> </tt>
-<a name="L2109"></a><tt class="py-lineno">2109</tt> <tt class="py-line"><tt class="py-docstring"> Exception raised:Expected alphaword (at char 4), (line:1, col:5)</tt> </tt>
-<a name="L2110"></a><tt class="py-lineno">2110</tt> <tt class="py-line"><tt class="py-docstring"> Match alphaword at loc 7(1,8)</tt> </tt>
-<a name="L2111"></a><tt class="py-lineno">2111</tt> <tt class="py-line"><tt class="py-docstring"> Matched alphaword -> ['xyz']</tt> </tt>
-<a name="L2112"></a><tt class="py-lineno">2112</tt> <tt class="py-line"><tt class="py-docstring"> Match alphaword at loc 11(1,12)</tt> </tt>
-<a name="L2113"></a><tt class="py-lineno">2113</tt> <tt class="py-line"><tt class="py-docstring"> Exception raised:Expected alphaword (at char 12), (line:1, col:13)</tt> </tt>
-<a name="L2114"></a><tt class="py-lineno">2114</tt> <tt class="py-line"><tt class="py-docstring"> Match alphaword at loc 15(1,16)</tt> </tt>
-<a name="L2115"></a><tt class="py-lineno">2115</tt> <tt class="py-line"><tt class="py-docstring"> Exception raised:Expected alphaword (at char 15), (line:1, col:16)</tt> </tt>
-<a name="L2116"></a><tt class="py-lineno">2116</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2117"></a><tt class="py-lineno">2117</tt> <tt class="py-line"><tt class="py-docstring"> The output shown is that produced by the default debug actions - custom debug actions can be</tt> </tt>
-<a name="L2118"></a><tt class="py-lineno">2118</tt> <tt class="py-line"><tt class="py-docstring"> specified using L{setDebugActions}. Prior to attempting</tt> </tt>
-<a name="L2119"></a><tt class="py-lineno">2119</tt> <tt class="py-line"><tt class="py-docstring"> to match the C{wd} expression, the debugging message C{"Match <exprname> at loc <n>(<line>,<col>)"}</tt> </tt>
-<a name="L2120"></a><tt class="py-lineno">2120</tt> <tt class="py-line"><tt class="py-docstring"> is shown. Then if the parse succeeds, a C{"Matched"} message is shown, or an C{"Exception raised"}</tt> </tt>
-<a name="L2121"></a><tt class="py-lineno">2121</tt> <tt class="py-line"><tt class="py-docstring"> message is shown. Also note the use of L{setName} to assign a human-readable name to the expression,</tt> </tt>
-<a name="L2122"></a><tt class="py-lineno">2122</tt> <tt class="py-line"><tt class="py-docstring"> which makes debugging and exception messages easier to understand - for instance, the default</tt> </tt>
-<a name="L2123"></a><tt class="py-lineno">2123</tt> <tt class="py-line"><tt class="py-docstring"> name created for the C{Word} expression without calling C{setName} is C{"W:(ABCD...)"}.</tt> </tt>
-<a name="L2124"></a><tt class="py-lineno">2124</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2125"></a><tt class="py-lineno">2125</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">flag</tt><tt class="py-op">:</tt> </tt>
-<a name="L2126"></a><tt class="py-lineno">2126</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-315" class="py-name" targets="Method pyparsing.ParserElement.setDebugActions()=pyparsing.ParserElement-class.html#setDebugActions"><a title="pyparsing.ParserElement.setDebugActions" class="py-name" href="#" onclick="return doclink('link-315', 'setDebugActions', 'link-315');">setDebugActions</a></tt><tt class="py-op">(</tt> <tt class="py-name">_defaultStartDebugAction</tt><tt class="py-op">,</tt> <tt class="py-name">_defaultSuccessDebugAction</tt><tt class="py-op">,</tt> <tt class="py-name">_defaultExceptionDebugAction</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2127"></a><tt class="py-lineno">2127</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2128"></a><tt class="py-lineno">2128</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2129"></a><tt class="py-lineno">2129</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2130"></a><tt class="py-lineno">2130</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__str__"></a><div id="ParserElement.__str__-def"><a name="L2131"></a><tt class="py-lineno">2131</tt> <a class="py-toggle" href="#" id="ParserElement.__str__-toggle" onclick="return toggle('ParserElement.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__str__-expanded"><a name="L2132"></a><tt class="py-lineno">2132</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-</div><a name="L2133"></a><tt class="py-lineno">2133</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__repr__"></a><div id="ParserElement.__repr__-def"><a name="L2134"></a><tt class="py-lineno">2134</tt> <a class="py-toggle" href="#" id="ParserElement.__repr__-toggle" onclick="return toggle('ParserElement.__repr__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__repr__">__repr__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__repr__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__repr__-expanded"><a name="L2135"></a><tt class="py-lineno">2135</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2136"></a><tt class="py-lineno">2136</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.streamline"></a><div id="ParserElement.streamline-def"><a name="L2137"></a><tt class="py-lineno">2137</tt> <a class="py-toggle" href="#" id="ParserElement.streamline-toggle" onclick="return toggle('ParserElement.streamline');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#streamline">streamline</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.streamline-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.streamline-expanded"><a name="L2138"></a><tt class="py-lineno">2138</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2139"></a><tt class="py-lineno">2139</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L2140"></a><tt class="py-lineno">2140</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L2141"></a><tt class="py-lineno">2141</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.checkRecursion"></a><div id="ParserElement.checkRecursion-def"><a name="L2142"></a><tt class="py-lineno">2142</tt> <a class="py-toggle" href="#" id="ParserElement.checkRecursion-toggle" onclick="return toggle('ParserElement.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.checkRecursion-expanded"><a name="L2143"></a><tt class="py-lineno">2143</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-</div><a name="L2144"></a><tt class="py-lineno">2144</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.validate"></a><div id="ParserElement.validate-def"><a name="L2145"></a><tt class="py-lineno">2145</tt> <a class="py-toggle" href="#" id="ParserElement.validate-toggle" onclick="return toggle('ParserElement.validate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#validate">validate</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">validateTrace</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.validate-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.validate-expanded"><a name="L2146"></a><tt class="py-lineno">2146</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2147"></a><tt class="py-lineno">2147</tt> <tt class="py-line"><tt class="py-docstring"> Check defined expressions for valid structure, check for infinite recursive definitions.</tt> </tt>
-<a name="L2148"></a><tt class="py-lineno">2148</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2149"></a><tt class="py-lineno">2149</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-316" class="py-name" targets="Method pyparsing.And.checkRecursion()=pyparsing.And-class.html#checkRecursion,Method pyparsing.Each.checkRecursion()=pyparsing.Each-class.html#checkRecursion,Method pyparsing.MatchFirst.checkRecursion()=pyparsing.MatchFirst-class.html#checkRecursion,Method pyparsing.Or.checkRecursion()=pyparsing.Or-class.html#checkRecursion,Method pyparsing.ParseElementEnhance.checkRecursion()=pyparsing.ParseElementEnhance-class.html#checkRecursion,Method pyparsing.ParserElement.checkRecursion()=pyparsing.ParserElement-class.html#checkRecursion"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-316', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L2150"></a><tt class="py-lineno">2150</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.parseFile"></a><div id="ParserElement.parseFile-def"><a name="L2151"></a><tt class="py-lineno">2151</tt> <a class="py-toggle" href="#" id="ParserElement.parseFile-toggle" onclick="return toggle('ParserElement.parseFile');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#parseFile">parseFile</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">file_or_filename</tt><tt class="py-op">,</tt> <tt class="py-param">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.parseFile-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.parseFile-expanded"><a name="L2152"></a><tt class="py-lineno">2152</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2153"></a><tt class="py-lineno">2153</tt> <tt class="py-line"><tt class="py-docstring"> Execute the parse expression on the given file or filename.</tt> </tt>
-<a name="L2154"></a><tt class="py-lineno">2154</tt> <tt class="py-line"><tt class="py-docstring"> If a filename is specified (instead of a file object),</tt> </tt>
-<a name="L2155"></a><tt class="py-lineno">2155</tt> <tt class="py-line"><tt class="py-docstring"> the entire file is opened, read, and closed before parsing.</tt> </tt>
-<a name="L2156"></a><tt class="py-lineno">2156</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2157"></a><tt class="py-lineno">2157</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2158"></a><tt class="py-lineno">2158</tt> <tt class="py-line"> <tt class="py-name">file_contents</tt> <tt class="py-op">=</tt> <tt class="py-name">file_or_filename</tt><tt class="py-op">.</tt><tt class="py-name">read</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2159"></a><tt class="py-lineno">2159</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">AttributeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L2160"></a><tt class="py-lineno">2160</tt> <tt class="py-line"> <tt class="py-keyword">with</tt> <tt class="py-name">open</tt><tt class="py-op">(</tt><tt class="py-name">file_or_filename</tt><tt class="py-op">,</tt> <tt class="py-string">"r"</tt><tt class="py-op">)</tt> <tt class="py-keyword">as</tt> <tt class="py-name">f</tt><tt class="py-op">:</tt> </tt>
-<a name="L2161"></a><tt class="py-lineno">2161</tt> <tt class="py-line"> <tt class="py-name">file_contents</tt> <tt class="py-op">=</tt> <tt class="py-name">f</tt><tt class="py-op">.</tt><tt class="py-name">read</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2162"></a><tt class="py-lineno">2162</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2163"></a><tt class="py-lineno">2163</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-317" class="py-name" targets="Method pyparsing.ParserElement.parseString()=pyparsing.ParserElement-class.html#parseString"><a title="pyparsing.ParserElement.parseString" class="py-name" href="#" onclick="return doclink('link-317', 'parseString', 'link-317');">parseString</a></tt><tt class="py-op">(</tt><tt class="py-name">file_contents</tt><tt class="py-op">,</tt> <tt class="py-name">parseAll</tt><tt class="py-op">)</tt> </tt>
-<a name="L2164"></a><tt class="py-lineno">2164</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-318" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-318', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L2165"></a><tt class="py-lineno">2165</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-319" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-319', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-320" class="py-name"><a title="pyparsing.ParserElement.verbose_stacktrace" class="py-name" href="#" onclick="return doclink('link-320', 'verbose_stacktrace', 'link-131');">verbose_stacktrace</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L2166"></a><tt class="py-lineno">2166</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L2167"></a><tt class="py-lineno">2167</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2168"></a><tt class="py-lineno">2168</tt> <tt class="py-line"> <tt class="py-comment"># catch and re-raise exception from here, clears out pyparsing internal stack trace</tt> </tt>
-<a name="L2169"></a><tt class="py-lineno">2169</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">exc</tt> </tt>
-</div><a name="L2170"></a><tt class="py-lineno">2170</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__eq__"></a><div id="ParserElement.__eq__-def"><a name="L2171"></a><tt class="py-lineno">2171</tt> <a class="py-toggle" href="#" id="ParserElement.__eq__-toggle" onclick="return toggle('ParserElement.__eq__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__eq__">__eq__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__eq__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__eq__-expanded"><a name="L2172"></a><tt class="py-lineno">2172</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-321" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-321', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2173"></a><tt class="py-lineno">2173</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> <tt class="py-keyword">is</tt> <tt class="py-name">other</tt> <tt class="py-keyword">or</tt> <tt class="py-name">vars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">vars</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L2174"></a><tt class="py-lineno">2174</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2175"></a><tt class="py-lineno">2175</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-322" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-322', 'matches', 'link-248');">matches</a></tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L2176"></a><tt class="py-lineno">2176</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2177"></a><tt class="py-lineno">2177</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-323" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-323', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">==</tt><tt class="py-name">other</tt> </tt>
-</div><a name="L2178"></a><tt class="py-lineno">2178</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__ne__"></a><div id="ParserElement.__ne__-def"><a name="L2179"></a><tt class="py-lineno">2179</tt> <a class="py-toggle" href="#" id="ParserElement.__ne__-toggle" onclick="return toggle('ParserElement.__ne__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__ne__">__ne__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__ne__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__ne__-expanded"><a name="L2180"></a><tt class="py-lineno">2180</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-keyword">not</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt> <tt class="py-op">==</tt> <tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2181"></a><tt class="py-lineno">2181</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__hash__"></a><div id="ParserElement.__hash__-def"><a name="L2182"></a><tt class="py-lineno">2182</tt> <a class="py-toggle" href="#" id="ParserElement.__hash__-toggle" onclick="return toggle('ParserElement.__hash__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__hash__">__hash__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__hash__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__hash__-expanded"><a name="L2183"></a><tt class="py-lineno">2183</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">hash</tt><tt class="py-op">(</tt><tt class="py-name">id</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2184"></a><tt class="py-lineno">2184</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__req__"></a><div id="ParserElement.__req__-def"><a name="L2185"></a><tt class="py-lineno">2185</tt> <a class="py-toggle" href="#" id="ParserElement.__req__-toggle" onclick="return toggle('ParserElement.__req__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__req__">__req__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__req__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__req__-expanded"><a name="L2186"></a><tt class="py-lineno">2186</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> <tt class="py-op">==</tt> <tt class="py-name">other</tt> </tt>
-</div><a name="L2187"></a><tt class="py-lineno">2187</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.__rne__"></a><div id="ParserElement.__rne__-def"><a name="L2188"></a><tt class="py-lineno">2188</tt> <a class="py-toggle" href="#" id="ParserElement.__rne__-toggle" onclick="return toggle('ParserElement.__rne__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#__rne__">__rne__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.__rne__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.__rne__-expanded"><a name="L2189"></a><tt class="py-lineno">2189</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-keyword">not</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt> <tt class="py-op">==</tt> <tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2190"></a><tt class="py-lineno">2190</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.matches"></a><div id="ParserElement.matches-def"><a name="L2191"></a><tt class="py-lineno">2191</tt> <a class="py-toggle" href="#" id="ParserElement.matches-toggle" onclick="return toggle('ParserElement.matches');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#matches">matches</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">testString</tt><tt class="py-op">,</tt> <tt class="py-param">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.matches-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.matches-expanded"><a name="L2192"></a><tt class="py-lineno">2192</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2193"></a><tt class="py-lineno">2193</tt> <tt class="py-line"><tt class="py-docstring"> Method for quick testing of a parser against a test string. Good for simple </tt> </tt>
-<a name="L2194"></a><tt class="py-lineno">2194</tt> <tt class="py-line"><tt class="py-docstring"> inline microtests of sub expressions while building up larger parser.</tt> </tt>
-<a name="L2195"></a><tt class="py-lineno">2195</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2196"></a><tt class="py-lineno">2196</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L2197"></a><tt class="py-lineno">2197</tt> <tt class="py-line"><tt class="py-docstring"> - testString - to test against this expression for a match</tt> </tt>
-<a name="L2198"></a><tt class="py-lineno">2198</tt> <tt class="py-line"><tt class="py-docstring"> - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests</tt> </tt>
-<a name="L2199"></a><tt class="py-lineno">2199</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2200"></a><tt class="py-lineno">2200</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2201"></a><tt class="py-lineno">2201</tt> <tt class="py-line"><tt class="py-docstring"> expr = Word(nums)</tt> </tt>
-<a name="L2202"></a><tt class="py-lineno">2202</tt> <tt class="py-line"><tt class="py-docstring"> assert expr.matches("100")</tt> </tt>
-<a name="L2203"></a><tt class="py-lineno">2203</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2204"></a><tt class="py-lineno">2204</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2205"></a><tt class="py-lineno">2205</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-324" class="py-name"><a title="pyparsing.ParserElement.parseString" class="py-name" href="#" onclick="return doclink('link-324', 'parseString', 'link-317');">parseString</a></tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">testString</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">parseAll</tt><tt class="py-op">)</tt> </tt>
-<a name="L2206"></a><tt class="py-lineno">2206</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2207"></a><tt class="py-lineno">2207</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-325" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-325', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L2208"></a><tt class="py-lineno">2208</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L2209"></a><tt class="py-lineno">2209</tt> <tt class="py-line"> </tt>
-<a name="ParserElement.runTests"></a><div id="ParserElement.runTests-def"><a name="L2210"></a><tt class="py-lineno">2210</tt> <a class="py-toggle" href="#" id="ParserElement.runTests-toggle" onclick="return toggle('ParserElement.runTests');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParserElement-class.html#runTests">runTests</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">tests</tt><tt class="py-op">,</tt> <tt class="py-param">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">comment</tt><tt class="py-op">=</tt><tt class="py-string">'#'</tt><tt class="py-op">,</tt> <tt class="py-param">fullDump</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">printResults</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">failureTests</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParserElement.runTests-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParserElement.runTests-expanded"><a name="L2211"></a><tt class="py-lineno">2211</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2212"></a><tt class="py-lineno">2212</tt> <tt class="py-line"><tt class="py-docstring"> Execute the parse expression on a series of test strings, showing each</tt> </tt>
-<a name="L2213"></a><tt class="py-lineno">2213</tt> <tt class="py-line"><tt class="py-docstring"> test, the parsed results or where the parse failed. Quick and easy way to</tt> </tt>
-<a name="L2214"></a><tt class="py-lineno">2214</tt> <tt class="py-line"><tt class="py-docstring"> run a parse expression against a list of sample strings.</tt> </tt>
-<a name="L2215"></a><tt class="py-lineno">2215</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2216"></a><tt class="py-lineno">2216</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L2217"></a><tt class="py-lineno">2217</tt> <tt class="py-line"><tt class="py-docstring"> - tests - a list of separate test strings, or a multiline string of test strings</tt> </tt>
-<a name="L2218"></a><tt class="py-lineno">2218</tt> <tt class="py-line"><tt class="py-docstring"> - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests </tt> </tt>
-<a name="L2219"></a><tt class="py-lineno">2219</tt> <tt class="py-line"><tt class="py-docstring"> - comment - (default=C{'#'}) - expression for indicating embedded comments in the test </tt> </tt>
-<a name="L2220"></a><tt class="py-lineno">2220</tt> <tt class="py-line"><tt class="py-docstring"> string; pass None to disable comment filtering</tt> </tt>
-<a name="L2221"></a><tt class="py-lineno">2221</tt> <tt class="py-line"><tt class="py-docstring"> - fullDump - (default=C{True}) - dump results as list followed by results names in nested outline;</tt> </tt>
-<a name="L2222"></a><tt class="py-lineno">2222</tt> <tt class="py-line"><tt class="py-docstring"> if False, only dump nested list</tt> </tt>
-<a name="L2223"></a><tt class="py-lineno">2223</tt> <tt class="py-line"><tt class="py-docstring"> - printResults - (default=C{True}) prints test output to stdout</tt> </tt>
-<a name="L2224"></a><tt class="py-lineno">2224</tt> <tt class="py-line"><tt class="py-docstring"> - failureTests - (default=C{False}) indicates if these tests are expected to fail parsing</tt> </tt>
-<a name="L2225"></a><tt class="py-lineno">2225</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2226"></a><tt class="py-lineno">2226</tt> <tt class="py-line"><tt class="py-docstring"> Returns: a (success, results) tuple, where success indicates that all tests succeeded</tt> </tt>
-<a name="L2227"></a><tt class="py-lineno">2227</tt> <tt class="py-line"><tt class="py-docstring"> (or failed if C{failureTests} is True), and the results contain a list of lines of each </tt> </tt>
-<a name="L2228"></a><tt class="py-lineno">2228</tt> <tt class="py-line"><tt class="py-docstring"> test's output</tt> </tt>
-<a name="L2229"></a><tt class="py-lineno">2229</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2230"></a><tt class="py-lineno">2230</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2231"></a><tt class="py-lineno">2231</tt> <tt class="py-line"><tt class="py-docstring"> number_expr = pyparsing_common.number.copy()</tt> </tt>
-<a name="L2232"></a><tt class="py-lineno">2232</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2233"></a><tt class="py-lineno">2233</tt> <tt class="py-line"><tt class="py-docstring"> result = number_expr.runTests('''</tt> </tt>
-<a name="L2234"></a><tt class="py-lineno">2234</tt> <tt class="py-line"><tt class="py-docstring"> # unsigned integer</tt> </tt>
-<a name="L2235"></a><tt class="py-lineno">2235</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L2236"></a><tt class="py-lineno">2236</tt> <tt class="py-line"><tt class="py-docstring"> # negative integer</tt> </tt>
-<a name="L2237"></a><tt class="py-lineno">2237</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L2238"></a><tt class="py-lineno">2238</tt> <tt class="py-line"><tt class="py-docstring"> # float with scientific notation</tt> </tt>
-<a name="L2239"></a><tt class="py-lineno">2239</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L2240"></a><tt class="py-lineno">2240</tt> <tt class="py-line"><tt class="py-docstring"> # integer with scientific notation</tt> </tt>
-<a name="L2241"></a><tt class="py-lineno">2241</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L2242"></a><tt class="py-lineno">2242</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L2243"></a><tt class="py-lineno">2243</tt> <tt class="py-line"><tt class="py-docstring"> print("Success" if result[0] else "Failed!")</tt> </tt>
-<a name="L2244"></a><tt class="py-lineno">2244</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2245"></a><tt class="py-lineno">2245</tt> <tt class="py-line"><tt class="py-docstring"> result = number_expr.runTests('''</tt> </tt>
-<a name="L2246"></a><tt class="py-lineno">2246</tt> <tt class="py-line"><tt class="py-docstring"> # stray character</tt> </tt>
-<a name="L2247"></a><tt class="py-lineno">2247</tt> <tt class="py-line"><tt class="py-docstring"> 100Z</tt> </tt>
-<a name="L2248"></a><tt class="py-lineno">2248</tt> <tt class="py-line"><tt class="py-docstring"> # missing leading digit before '.'</tt> </tt>
-<a name="L2249"></a><tt class="py-lineno">2249</tt> <tt class="py-line"><tt class="py-docstring"> -.100</tt> </tt>
-<a name="L2250"></a><tt class="py-lineno">2250</tt> <tt class="py-line"><tt class="py-docstring"> # too many '.'</tt> </tt>
-<a name="L2251"></a><tt class="py-lineno">2251</tt> <tt class="py-line"><tt class="py-docstring"> 3.14.159</tt> </tt>
-<a name="L2252"></a><tt class="py-lineno">2252</tt> <tt class="py-line"><tt class="py-docstring"> ''', failureTests=True)</tt> </tt>
-<a name="L2253"></a><tt class="py-lineno">2253</tt> <tt class="py-line"><tt class="py-docstring"> print("Success" if result[0] else "Failed!")</tt> </tt>
-<a name="L2254"></a><tt class="py-lineno">2254</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L2255"></a><tt class="py-lineno">2255</tt> <tt class="py-line"><tt class="py-docstring"> # unsigned integer</tt> </tt>
-<a name="L2256"></a><tt class="py-lineno">2256</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L2257"></a><tt class="py-lineno">2257</tt> <tt class="py-line"><tt class="py-docstring"> [100]</tt> </tt>
-<a name="L2258"></a><tt class="py-lineno">2258</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2259"></a><tt class="py-lineno">2259</tt> <tt class="py-line"><tt class="py-docstring"> # negative integer</tt> </tt>
-<a name="L2260"></a><tt class="py-lineno">2260</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L2261"></a><tt class="py-lineno">2261</tt> <tt class="py-line"><tt class="py-docstring"> [-100]</tt> </tt>
-<a name="L2262"></a><tt class="py-lineno">2262</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2263"></a><tt class="py-lineno">2263</tt> <tt class="py-line"><tt class="py-docstring"> # float with scientific notation</tt> </tt>
-<a name="L2264"></a><tt class="py-lineno">2264</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L2265"></a><tt class="py-lineno">2265</tt> <tt class="py-line"><tt class="py-docstring"> [6.02e+23]</tt> </tt>
-<a name="L2266"></a><tt class="py-lineno">2266</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2267"></a><tt class="py-lineno">2267</tt> <tt class="py-line"><tt class="py-docstring"> # integer with scientific notation</tt> </tt>
-<a name="L2268"></a><tt class="py-lineno">2268</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L2269"></a><tt class="py-lineno">2269</tt> <tt class="py-line"><tt class="py-docstring"> [1e-12]</tt> </tt>
-<a name="L2270"></a><tt class="py-lineno">2270</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2271"></a><tt class="py-lineno">2271</tt> <tt class="py-line"><tt class="py-docstring"> Success</tt> </tt>
-<a name="L2272"></a><tt class="py-lineno">2272</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2273"></a><tt class="py-lineno">2273</tt> <tt class="py-line"><tt class="py-docstring"> # stray character</tt> </tt>
-<a name="L2274"></a><tt class="py-lineno">2274</tt> <tt class="py-line"><tt class="py-docstring"> 100Z</tt> </tt>
-<a name="L2275"></a><tt class="py-lineno">2275</tt> <tt class="py-line"><tt class="py-docstring"> ^</tt> </tt>
-<a name="L2276"></a><tt class="py-lineno">2276</tt> <tt class="py-line"><tt class="py-docstring"> FAIL: Expected end of text (at char 3), (line:1, col:4)</tt> </tt>
-<a name="L2277"></a><tt class="py-lineno">2277</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2278"></a><tt class="py-lineno">2278</tt> <tt class="py-line"><tt class="py-docstring"> # missing leading digit before '.'</tt> </tt>
-<a name="L2279"></a><tt class="py-lineno">2279</tt> <tt class="py-line"><tt class="py-docstring"> -.100</tt> </tt>
-<a name="L2280"></a><tt class="py-lineno">2280</tt> <tt class="py-line"><tt class="py-docstring"> ^</tt> </tt>
-<a name="L2281"></a><tt class="py-lineno">2281</tt> <tt class="py-line"><tt class="py-docstring"> FAIL: Expected {real number with scientific notation | real number | signed integer} (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L2282"></a><tt class="py-lineno">2282</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2283"></a><tt class="py-lineno">2283</tt> <tt class="py-line"><tt class="py-docstring"> # too many '.'</tt> </tt>
-<a name="L2284"></a><tt class="py-lineno">2284</tt> <tt class="py-line"><tt class="py-docstring"> 3.14.159</tt> </tt>
-<a name="L2285"></a><tt class="py-lineno">2285</tt> <tt class="py-line"><tt class="py-docstring"> ^</tt> </tt>
-<a name="L2286"></a><tt class="py-lineno">2286</tt> <tt class="py-line"><tt class="py-docstring"> FAIL: Expected end of text (at char 4), (line:1, col:5)</tt> </tt>
-<a name="L2287"></a><tt class="py-lineno">2287</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2288"></a><tt class="py-lineno">2288</tt> <tt class="py-line"><tt class="py-docstring"> Success</tt> </tt>
-<a name="L2289"></a><tt class="py-lineno">2289</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2290"></a><tt class="py-lineno">2290</tt> <tt class="py-line"><tt class="py-docstring"> Each test string must be on a single line. If you want to test a string that spans multiple</tt> </tt>
-<a name="L2291"></a><tt class="py-lineno">2291</tt> <tt class="py-line"><tt class="py-docstring"> lines, create a test like this::</tt> </tt>
-<a name="L2292"></a><tt class="py-lineno">2292</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2293"></a><tt class="py-lineno">2293</tt> <tt class="py-line"><tt class="py-docstring"> expr.runTest(r"this is a test\\n of strings that spans \\n 3 lines")</tt> </tt>
-<a name="L2294"></a><tt class="py-lineno">2294</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2295"></a><tt class="py-lineno">2295</tt> <tt class="py-line"><tt class="py-docstring"> (Note that this is a raw string literal, you must include the leading 'r'.)</tt> </tt>
-<a name="L2296"></a><tt class="py-lineno">2296</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2297"></a><tt class="py-lineno">2297</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">tests</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2298"></a><tt class="py-lineno">2298</tt> <tt class="py-line"> <tt class="py-name">tests</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">map</tt><tt class="py-op">(</tt><tt class="py-name">str</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">,</tt> <tt class="py-name">tests</tt><tt class="py-op">.</tt><tt class="py-name">rstrip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">splitlines</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2299"></a><tt class="py-lineno">2299</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">comment</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2300"></a><tt class="py-lineno">2300</tt> <tt class="py-line"> <tt class="py-name">comment</tt> <tt class="py-op">=</tt> <tt id="link-326" class="py-name" targets="Class pyparsing.Literal=pyparsing.Literal-class.html"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-326', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">comment</tt><tt class="py-op">)</tt> </tt>
-<a name="L2301"></a><tt class="py-lineno">2301</tt> <tt class="py-line"> <tt class="py-name">allResults</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L2302"></a><tt class="py-lineno">2302</tt> <tt class="py-line"> <tt class="py-name">comments</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L2303"></a><tt class="py-lineno">2303</tt> <tt class="py-line"> <tt class="py-name">success</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2304"></a><tt class="py-lineno">2304</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">t</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tests</tt><tt class="py-op">:</tt> </tt>
-<a name="L2305"></a><tt class="py-lineno">2305</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">comment</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">comment</tt><tt class="py-op">.</tt><tt id="link-327" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-327', 'matches', 'link-248');">matches</a></tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-name">comments</tt> <tt class="py-keyword">and</tt> <tt class="py-keyword">not</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> </tt>
-<a name="L2306"></a><tt class="py-lineno">2306</tt> <tt class="py-line"> <tt class="py-name">comments</tt><tt class="py-op">.</tt><tt id="link-328" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-328', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> </tt>
-<a name="L2307"></a><tt class="py-lineno">2307</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L2308"></a><tt class="py-lineno">2308</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> </tt>
-<a name="L2309"></a><tt class="py-lineno">2309</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L2310"></a><tt class="py-lineno">2310</tt> <tt class="py-line"> <tt class="py-name">out</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-string">'\n'</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">comments</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">t</tt><tt class="py-op">]</tt> </tt>
-<a name="L2311"></a><tt class="py-lineno">2311</tt> <tt class="py-line"> <tt class="py-name">comments</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L2312"></a><tt class="py-lineno">2312</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2313"></a><tt class="py-lineno">2313</tt> <tt class="py-line"> <tt class="py-name">t</tt> <tt class="py-op">=</tt> <tt class="py-name">t</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">r'\n'</tt><tt class="py-op">,</tt><tt class="py-string">'\n'</tt><tt class="py-op">)</tt> </tt>
-<a name="L2314"></a><tt class="py-lineno">2314</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-329" class="py-name"><a title="pyparsing.ParserElement.parseString" class="py-name" href="#" onclick="return doclink('link-329', 'parseString', 'link-317');">parseString</a></tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">,</tt> <tt class="py-name">parseAll</tt><tt class="py-op">=</tt><tt class="py-name">parseAll</tt><tt class="py-op">)</tt> </tt>
-<a name="L2315"></a><tt class="py-lineno">2315</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-330" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-330', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">result</tt><tt class="py-op">.</tt><tt id="link-331" class="py-name"><a title="pyparsing.ParseResults.dump" class="py-name" href="#" onclick="return doclink('link-331', 'dump', 'link-108');">dump</a></tt><tt class="py-op">(</tt><tt class="py-name">full</tt><tt class="py-op">=</tt><tt class="py-name">fullDump</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2316"></a><tt class="py-lineno">2316</tt> <tt class="py-line"> <tt class="py-name">success</tt> <tt class="py-op">=</tt> <tt class="py-name">success</tt> <tt class="py-keyword">and</tt> <tt class="py-keyword">not</tt> <tt class="py-name">failureTests</tt> </tt>
-<a name="L2317"></a><tt class="py-lineno">2317</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-332" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-332', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">pe</tt><tt class="py-op">:</tt> </tt>
-<a name="L2318"></a><tt class="py-lineno">2318</tt> <tt class="py-line"> <tt class="py-name">fatal</tt> <tt class="py-op">=</tt> <tt class="py-string">"(FATAL)"</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">,</tt> <tt id="link-333" class="py-name"><a title="pyparsing.ParseFatalException" class="py-name" href="#" onclick="return doclink('link-333', 'ParseFatalException', 'link-145');">ParseFatalException</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt class="py-string">""</tt> </tt>
-<a name="L2319"></a><tt class="py-lineno">2319</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-string">'\n'</tt> <tt class="py-keyword">in</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> </tt>
-<a name="L2320"></a><tt class="py-lineno">2320</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-334" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-334', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt id="link-335" class="py-name"><a title="pyparsing.line" class="py-name" href="#" onclick="return doclink('link-335', 'line', 'link-32');">line</a></tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2321"></a><tt class="py-lineno">2321</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-336" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-336', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt id="link-337" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-337', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">'^'</tt> <tt class="py-op">+</tt> <tt class="py-name">fatal</tt><tt class="py-op">)</tt> </tt>
-<a name="L2322"></a><tt class="py-lineno">2322</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2323"></a><tt class="py-lineno">2323</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-338" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-338', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">' '</tt><tt class="py-op">*</tt><tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> <tt class="py-op">+</tt> <tt class="py-string">'^'</tt> <tt class="py-op">+</tt> <tt class="py-name">fatal</tt><tt class="py-op">)</tt> </tt>
-<a name="L2324"></a><tt class="py-lineno">2324</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-339" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-339', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">"FAIL: "</tt> <tt class="py-op">+</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2325"></a><tt class="py-lineno">2325</tt> <tt class="py-line"> <tt class="py-name">success</tt> <tt class="py-op">=</tt> <tt class="py-name">success</tt> <tt class="py-keyword">and</tt> <tt class="py-name">failureTests</tt> </tt>
-<a name="L2326"></a><tt class="py-lineno">2326</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">pe</tt> </tt>
-<a name="L2327"></a><tt class="py-lineno">2327</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L2328"></a><tt class="py-lineno">2328</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-340" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-340', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">"FAIL-EXCEPTION: "</tt> <tt class="py-op">+</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">exc</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2329"></a><tt class="py-lineno">2329</tt> <tt class="py-line"> <tt class="py-name">success</tt> <tt class="py-op">=</tt> <tt class="py-name">success</tt> <tt class="py-keyword">and</tt> <tt class="py-name">failureTests</tt> </tt>
-<a name="L2330"></a><tt class="py-lineno">2330</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">exc</tt> </tt>
-<a name="L2331"></a><tt class="py-lineno">2331</tt> <tt class="py-line"> </tt>
-<a name="L2332"></a><tt class="py-lineno">2332</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">printResults</tt><tt class="py-op">:</tt> </tt>
-<a name="L2333"></a><tt class="py-lineno">2333</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">fullDump</tt><tt class="py-op">:</tt> </tt>
-<a name="L2334"></a><tt class="py-lineno">2334</tt> <tt class="py-line"> <tt class="py-name">out</tt><tt class="py-op">.</tt><tt id="link-341" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-341', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-string">''</tt><tt class="py-op">)</tt> </tt>
-<a name="L2335"></a><tt class="py-lineno">2335</tt> <tt class="py-line"> <tt class="py-keyword">print</tt><tt class="py-op">(</tt><tt class="py-string">'\n'</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">out</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2336"></a><tt class="py-lineno">2336</tt> <tt class="py-line"> </tt>
-<a name="L2337"></a><tt class="py-lineno">2337</tt> <tt class="py-line"> <tt class="py-name">allResults</tt><tt class="py-op">.</tt><tt id="link-342" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-342', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">,</tt> <tt class="py-name">result</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2338"></a><tt class="py-lineno">2338</tt> <tt class="py-line"> </tt>
-<a name="L2339"></a><tt class="py-lineno">2339</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">success</tt><tt class="py-op">,</tt> <tt class="py-name">allResults</tt> </tt>
-</div></div><a name="L2340"></a><tt class="py-lineno">2340</tt> <tt class="py-line"> </tt>
-<a name="Token"></a><div id="Token-def"><a name="L2341"></a><tt class="py-lineno">2341</tt> <tt class="py-line"> </tt>
-<a name="L2342"></a><tt class="py-lineno">2342</tt> <a class="py-toggle" href="#" id="Token-toggle" onclick="return toggle('Token');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Token-class.html">Token</a><tt class="py-op">(</tt><tt class="py-base-class">ParserElement</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Token-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Token-expanded"><a name="L2343"></a><tt class="py-lineno">2343</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2344"></a><tt class="py-lineno">2344</tt> <tt class="py-line"><tt class="py-docstring"> Abstract C{ParserElement} subclass, for defining atomic matching patterns.</tt> </tt>
-<a name="L2345"></a><tt class="py-lineno">2345</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Token.__init__"></a><div id="Token.__init__-def"><a name="L2346"></a><tt class="py-lineno">2346</tt> <a class="py-toggle" href="#" id="Token.__init__-toggle" onclick="return toggle('Token.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Token-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Token.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Token.__init__-expanded"><a name="L2347"></a><tt class="py-lineno">2347</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-343" class="py-name" targets="Class pyparsing.Token=pyparsing.Token-class.html"><a title="pyparsing.Token" class="py-name" href="#" onclick="return doclink('link-343', 'Token', 'link-343');">Token</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-344" class="py-name" targets="Method pyparsing.And.__init__()=pyparsing.And-class.html#__init__,Method pyparsing.CaselessKeyword.__init__()=pyparsing.CaselessKeyword-class.html#__init__,Method pyparsing.CaselessLiteral.__init__()=pyparsing.CaselessLiteral-class.html#__init__,Method pyparsing.CharsNotIn.__init__()=pyparsing.CharsNotIn-class.html#__init__,Method pyparsing.CloseMatch.__init__()=pyparsing.CloseMatch-class.html#__init__,Method pyparsing.Combine.__init__()=pyparsing.Combine-class.html#__init__,Method pyparsing.Dict.__init__()=pyparsing.Dict-class.html#__init__,Method pyparsing.Each.__init__()=pyparsing.Each-class.html#__init__,Method pyparsing.Empty.__init__()=pyparsing.Empty-class.html#__init__,Method pyparsing.FollowedBy.__init__()=pyparsing.FollowedBy-class.html#__init__,Method pyparsing.Forward.__init__()=pyparsing.Forward-class.html#__init__,Method pyparsing.GoToColumn.__init__()=pyparsing.GoToColumn-class.html#__init__,Method pyparsing.Group.__init__()=pyparsing.Group-class.html#__init__,Method pyparsing.Keyword.__init__()=pyparsing.Keyword-class.html#__init__,Method pyparsing.LineEnd.__init__()=pyparsing.LineEnd-class.html#__init__,Method pyparsing.LineStart.__init__()=pyparsing.LineStart-class.html#__init__,Method pyparsing.Literal.__init__()=pyparsing.Literal-class.html#__init__,Method pyparsing.MatchFirst.__init__()=pyparsing.MatchFirst-class.html#__init__,Method pyparsing.NoMatch.__init__()=pyparsing.NoMatch-class.html#__init__,Method pyparsing.NotAny.__init__()=pyparsing.NotAny-class.html#__init__,Method pyparsing.OnlyOnce.__init__()=pyparsing.OnlyOnce-class.html#__init__,Method pyparsing.Optional.__init__()=pyparsing.Optional-class.html#__init__,Method pyparsing.Or.__init__()=pyparsing.Or-class.html#__init__,Method pyparsing.ParseBaseException.__init__()=pyparsing.ParseBaseException-class.html#__init__,Method pyparsing.ParseElementEnhance.__init__()=pyparsing.ParseElementEnhance-class.html#__init__,Method pyparsing.ParseExpression.__init__()=pyparsing.ParseExpression-class.html#__init__,Method pyparsing.ParseResults.__init__()=pyparsing.ParseResults-class.html#__init__,Method pyparsing.ParserElement.__init__()=pyparsing.ParserElement-class.html#__init__,Method pyparsing.QuotedString.__init__()=pyparsing.QuotedString-class.html#__init__,Method pyparsing.RecursiveGrammarException.__init__()=pyparsing.RecursiveGrammarException-class.html#__init__,Method pyparsing.Regex.__init__()=pyparsing.Regex-class.html#__init__,Method pyparsing.SkipTo.__init__()=pyparsing.SkipTo-class.html#__init__,Method pyparsing.StringEnd.__init__()=pyparsing.StringEnd-class.html#__init__,Method pyparsing.StringStart.__init__()=pyparsing.StringStart-class.html#__init__,Method pyparsing.Token.__init__()=pyparsing.Token-class.html#__init__,Method pyparsing.TokenConverter.__init__()=pyparsing.TokenConverter-class.html#__init__,Method pyparsing.White.__init__()=pyparsing.White-class.html#__init__,Method pyparsing.Word.__init__()=pyparsing.Word-class.html#__init__,Method pyparsing.WordEnd.__init__()=pyparsing.WordEnd-class.html#__init__,Method pyparsing.WordStart.__init__()=pyparsing.WordStart-class.html#__init__,Method pyparsing.ZeroOrMore.__init__()=pyparsing.ZeroOrMore-class.html#__init__"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-344', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-</div></div><a name="L2348"></a><tt class="py-lineno">2348</tt> <tt class="py-line"> </tt>
-<a name="Empty"></a><div id="Empty-def"><a name="L2349"></a><tt class="py-lineno">2349</tt> <tt class="py-line"> </tt>
-<a name="L2350"></a><tt class="py-lineno">2350</tt> <a class="py-toggle" href="#" id="Empty-toggle" onclick="return toggle('Empty');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Empty-class.html">Empty</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Empty-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Empty-expanded"><a name="L2351"></a><tt class="py-lineno">2351</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2352"></a><tt class="py-lineno">2352</tt> <tt class="py-line"><tt class="py-docstring"> An empty token, will always match.</tt> </tt>
-<a name="L2353"></a><tt class="py-lineno">2353</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Empty.__init__"></a><div id="Empty.__init__-def"><a name="L2354"></a><tt class="py-lineno">2354</tt> <a class="py-toggle" href="#" id="Empty.__init__-toggle" onclick="return toggle('Empty.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Empty-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Empty.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Empty.__init__-expanded"><a name="L2355"></a><tt class="py-lineno">2355</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-345" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-345', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-346" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-346', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2356"></a><tt class="py-lineno">2356</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">"Empty"</tt> </tt>
-<a name="L2357"></a><tt class="py-lineno">2357</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2358"></a><tt class="py-lineno">2358</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div></div><a name="L2359"></a><tt class="py-lineno">2359</tt> <tt class="py-line"> </tt>
-<a name="NoMatch"></a><div id="NoMatch-def"><a name="L2360"></a><tt class="py-lineno">2360</tt> <tt class="py-line"> </tt>
-<a name="L2361"></a><tt class="py-lineno">2361</tt> <a class="py-toggle" href="#" id="NoMatch-toggle" onclick="return toggle('NoMatch');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.NoMatch-class.html">NoMatch</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NoMatch-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="NoMatch-expanded"><a name="L2362"></a><tt class="py-lineno">2362</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2363"></a><tt class="py-lineno">2363</tt> <tt class="py-line"><tt class="py-docstring"> A token that will never match.</tt> </tt>
-<a name="L2364"></a><tt class="py-lineno">2364</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="NoMatch.__init__"></a><div id="NoMatch.__init__-def"><a name="L2365"></a><tt class="py-lineno">2365</tt> <a class="py-toggle" href="#" id="NoMatch.__init__-toggle" onclick="return toggle('NoMatch.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.NoMatch-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NoMatch.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="NoMatch.__init__-expanded"><a name="L2366"></a><tt class="py-lineno">2366</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-347" class="py-name" targets="Class pyparsing.NoMatch=pyparsing.NoMatch-class.html"><a title="pyparsing.NoMatch" class="py-name" href="#" onclick="return doclink('link-347', 'NoMatch', 'link-347');">NoMatch</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-348" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-348', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2367"></a><tt class="py-lineno">2367</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">"NoMatch"</tt> </tt>
-<a name="L2368"></a><tt class="py-lineno">2368</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2369"></a><tt class="py-lineno">2369</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2370"></a><tt class="py-lineno">2370</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Unmatchable token"</tt> </tt>
-</div><a name="L2371"></a><tt class="py-lineno">2371</tt> <tt class="py-line"> </tt>
-<a name="NoMatch.parseImpl"></a><div id="NoMatch.parseImpl-def"><a name="L2372"></a><tt class="py-lineno">2372</tt> <a class="py-toggle" href="#" id="NoMatch.parseImpl-toggle" onclick="return toggle('NoMatch.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.NoMatch-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NoMatch.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="NoMatch.parseImpl-expanded"><a name="L2373"></a><tt class="py-lineno">2373</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-349" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-349', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L2374"></a><tt class="py-lineno">2374</tt> <tt class="py-line"> </tt>
-<a name="Literal"></a><div id="Literal-def"><a name="L2375"></a><tt class="py-lineno">2375</tt> <tt class="py-line"> </tt>
-<a name="L2376"></a><tt class="py-lineno">2376</tt> <a class="py-toggle" href="#" id="Literal-toggle" onclick="return toggle('Literal');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Literal-class.html">Literal</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Literal-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Literal-expanded"><a name="L2377"></a><tt class="py-lineno">2377</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2378"></a><tt class="py-lineno">2378</tt> <tt class="py-line"><tt class="py-docstring"> Token to exactly match a specified string.</tt> </tt>
-<a name="L2379"></a><tt class="py-lineno">2379</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2380"></a><tt class="py-lineno">2380</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2381"></a><tt class="py-lineno">2381</tt> <tt class="py-line"><tt class="py-docstring"> Literal('blah').parseString('blah') # -> ['blah']</tt> </tt>
-<a name="L2382"></a><tt class="py-lineno">2382</tt> <tt class="py-line"><tt class="py-docstring"> Literal('blah').parseString('blahfooblah') # -> ['blah']</tt> </tt>
-<a name="L2383"></a><tt class="py-lineno">2383</tt> <tt class="py-line"><tt class="py-docstring"> Literal('blah').parseString('bla') # -> Exception: Expected "blah"</tt> </tt>
-<a name="L2384"></a><tt class="py-lineno">2384</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2385"></a><tt class="py-lineno">2385</tt> <tt class="py-line"><tt class="py-docstring"> For case-insensitive matching, use L{CaselessLiteral}.</tt> </tt>
-<a name="L2386"></a><tt class="py-lineno">2386</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2387"></a><tt class="py-lineno">2387</tt> <tt class="py-line"><tt class="py-docstring"> For keyword matching (force word break before and after the matched string),</tt> </tt>
-<a name="L2388"></a><tt class="py-lineno">2388</tt> <tt class="py-line"><tt class="py-docstring"> use L{Keyword} or L{CaselessKeyword}.</tt> </tt>
-<a name="L2389"></a><tt class="py-lineno">2389</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Literal.__init__"></a><div id="Literal.__init__-def"><a name="L2390"></a><tt class="py-lineno">2390</tt> <a class="py-toggle" href="#" id="Literal.__init__-toggle" onclick="return toggle('Literal.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Literal-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">matchString</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Literal.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Literal.__init__-expanded"><a name="L2391"></a><tt class="py-lineno">2391</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-350" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-350', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-351" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-351', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2392"></a><tt class="py-lineno">2392</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-352" class="py-name" targets="Method pyparsing.Regex.compiledREtype.match()=pyparsing.Regex.compiledREtype-class.html#match"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-352', 'match', 'link-352');">match</a></tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt> </tt>
-<a name="L2393"></a><tt class="py-lineno">2393</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">matchString</tt><tt class="py-op">)</tt> </tt>
-<a name="L2394"></a><tt class="py-lineno">2394</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2395"></a><tt class="py-lineno">2395</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstMatchChar</tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L2396"></a><tt class="py-lineno">2396</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L2397"></a><tt class="py-lineno">2397</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"null string passed to Literal; use Empty() instead"</tt><tt class="py-op">,</tt> </tt>
-<a name="L2398"></a><tt class="py-lineno">2398</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2399"></a><tt class="py-lineno">2399</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> <tt class="py-op">=</tt> <tt id="link-353" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-353', 'Empty', 'link-237');">Empty</a></tt> </tt>
-<a name="L2400"></a><tt class="py-lineno">2400</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">'"%s"'</tt> <tt class="py-op">%</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-354" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-354', 'match', 'link-352');">match</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L2401"></a><tt class="py-lineno">2401</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2402"></a><tt class="py-lineno">2402</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2403"></a><tt class="py-lineno">2403</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L2404"></a><tt class="py-lineno">2404</tt> <tt class="py-line"> </tt>
-<a name="L2405"></a><tt class="py-lineno">2405</tt> <tt class="py-line"> <tt class="py-comment"># Performance tuning: this routine gets called a *lot*</tt> </tt>
-<a name="L2406"></a><tt class="py-lineno">2406</tt> <tt class="py-line"> <tt class="py-comment"># if this is a single character match string and the first character matches,</tt> </tt>
-<a name="L2407"></a><tt class="py-lineno">2407</tt> <tt class="py-line"> <tt class="py-comment"># short-circuit as quickly as possible, and avoid calling startswith</tt> </tt>
-<a name="L2408"></a><tt class="py-lineno">2408</tt> <tt class="py-line"> <tt class="py-comment">#~ @profile</tt> </tt>
-<a name="Literal.parseImpl"></a><div id="Literal.parseImpl-def"><a name="L2409"></a><tt class="py-lineno">2409</tt> <a class="py-toggle" href="#" id="Literal.parseImpl-toggle" onclick="return toggle('Literal.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Literal-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Literal.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Literal.parseImpl-expanded"><a name="L2410"></a><tt class="py-lineno">2410</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstMatchChar</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2411"></a><tt class="py-lineno">2411</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">==</tt><tt class="py-number">1</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">.</tt><tt class="py-name">startswith</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-355" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-355', 'match', 'link-352');">match</a></tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2412"></a><tt class="py-lineno">2412</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-356" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-356', 'match', 'link-352');">match</a></tt> </tt>
-<a name="L2413"></a><tt class="py-lineno">2413</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-357" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-357', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L2414"></a><tt class="py-lineno">2414</tt> <tt class="py-line"><tt class="py-name">_L</tt> <tt class="py-op">=</tt> <tt id="link-358" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-358', 'Literal', 'link-326');">Literal</a></tt> </tt>
-<a name="L2415"></a><tt class="py-lineno">2415</tt> <tt class="py-line"><tt id="link-359" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-359', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt> <tt class="py-op">=</tt> <tt id="link-360" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-360', 'Literal', 'link-326');">Literal</a></tt> </tt>
-<a name="Keyword"></a><div id="Keyword-def"><a name="L2416"></a><tt class="py-lineno">2416</tt> <tt class="py-line"> </tt>
-<a name="L2417"></a><tt class="py-lineno">2417</tt> <a class="py-toggle" href="#" id="Keyword-toggle" onclick="return toggle('Keyword');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Keyword-class.html">Keyword</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Keyword-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Keyword-expanded"><a name="L2418"></a><tt class="py-lineno">2418</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2419"></a><tt class="py-lineno">2419</tt> <tt class="py-line"><tt class="py-docstring"> Token to exactly match a specified string as a keyword, that is, it must be</tt> </tt>
-<a name="L2420"></a><tt class="py-lineno">2420</tt> <tt class="py-line"><tt class="py-docstring"> immediately followed by a non-keyword character. Compare with C{L{Literal}}:</tt> </tt>
-<a name="L2421"></a><tt class="py-lineno">2421</tt> <tt class="py-line"><tt class="py-docstring"> - C{Literal("if")} will match the leading C{'if'} in C{'ifAndOnlyIf'}.</tt> </tt>
-<a name="L2422"></a><tt class="py-lineno">2422</tt> <tt class="py-line"><tt class="py-docstring"> - C{Keyword("if")} will not; it will only match the leading C{'if'} in C{'if x=1'}, or C{'if(y==2)'}</tt> </tt>
-<a name="L2423"></a><tt class="py-lineno">2423</tt> <tt class="py-line"><tt class="py-docstring"> Accepts two optional constructor arguments in addition to the keyword string:</tt> </tt>
-<a name="L2424"></a><tt class="py-lineno">2424</tt> <tt class="py-line"><tt class="py-docstring"> - C{identChars} is a string of characters that would be valid identifier characters,</tt> </tt>
-<a name="L2425"></a><tt class="py-lineno">2425</tt> <tt class="py-line"><tt class="py-docstring"> defaulting to all alphanumerics + "_" and "$"</tt> </tt>
-<a name="L2426"></a><tt class="py-lineno">2426</tt> <tt class="py-line"><tt class="py-docstring"> - C{caseless} allows case-insensitive matching, default is C{False}.</tt> </tt>
-<a name="L2427"></a><tt class="py-lineno">2427</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2428"></a><tt class="py-lineno">2428</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2429"></a><tt class="py-lineno">2429</tt> <tt class="py-line"><tt class="py-docstring"> Keyword("start").parseString("start") # -> ['start']</tt> </tt>
-<a name="L2430"></a><tt class="py-lineno">2430</tt> <tt class="py-line"><tt class="py-docstring"> Keyword("start").parseString("starting") # -> Exception</tt> </tt>
-<a name="L2431"></a><tt class="py-lineno">2431</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2432"></a><tt class="py-lineno">2432</tt> <tt class="py-line"><tt class="py-docstring"> For case-insensitive matching, use L{CaselessKeyword}.</tt> </tt>
-<a name="L2433"></a><tt class="py-lineno">2433</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2434"></a><tt class="py-lineno">2434</tt> <tt class="py-line"> <tt id="link-361" class="py-name" targets="Variable pyparsing.Keyword.DEFAULT_KEYWORD_CHARS=pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS"><a title="pyparsing.Keyword.DEFAULT_KEYWORD_CHARS" class="py-name" href="#" onclick="return doclink('link-361', 'DEFAULT_KEYWORD_CHARS', 'link-361');">DEFAULT_KEYWORD_CHARS</a></tt> <tt class="py-op">=</tt> <tt id="link-362" class="py-name"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-362', 'alphanums', 'link-25');">alphanums</a></tt><tt class="py-op">+</tt><tt class="py-string">"_$"</tt> </tt>
-<a name="L2435"></a><tt class="py-lineno">2435</tt> <tt class="py-line"> </tt>
-<a name="Keyword.__init__"></a><div id="Keyword.__init__-def"><a name="L2436"></a><tt class="py-lineno">2436</tt> <a class="py-toggle" href="#" id="Keyword.__init__-toggle" onclick="return toggle('Keyword.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Keyword-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">matchString</tt><tt class="py-op">,</tt> <tt class="py-param">identChars</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">caseless</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Keyword.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Keyword.__init__-expanded"><a name="L2437"></a><tt class="py-lineno">2437</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-363" class="py-name" targets="Class pyparsing.Keyword=pyparsing.Keyword-class.html"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-363', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-364" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-364', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2438"></a><tt class="py-lineno">2438</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">identChars</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2439"></a><tt class="py-lineno">2439</tt> <tt class="py-line"> <tt class="py-name">identChars</tt> <tt class="py-op">=</tt> <tt id="link-365" class="py-name"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-365', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">.</tt><tt id="link-366" class="py-name"><a title="pyparsing.Keyword.DEFAULT_KEYWORD_CHARS" class="py-name" href="#" onclick="return doclink('link-366', 'DEFAULT_KEYWORD_CHARS', 'link-361');">DEFAULT_KEYWORD_CHARS</a></tt> </tt>
-<a name="L2440"></a><tt class="py-lineno">2440</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-367" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-367', 'match', 'link-352');">match</a></tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt> </tt>
-<a name="L2441"></a><tt class="py-lineno">2441</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">matchString</tt><tt class="py-op">)</tt> </tt>
-<a name="L2442"></a><tt class="py-lineno">2442</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2443"></a><tt class="py-lineno">2443</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstMatchChar</tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L2444"></a><tt class="py-lineno">2444</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L2445"></a><tt class="py-lineno">2445</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"null string passed to Keyword; use Empty() instead"</tt><tt class="py-op">,</tt> </tt>
-<a name="L2446"></a><tt class="py-lineno">2446</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2447"></a><tt class="py-lineno">2447</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">'"%s"'</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-368" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-368', 'match', 'link-352');">match</a></tt> </tt>
-<a name="L2448"></a><tt class="py-lineno">2448</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2449"></a><tt class="py-lineno">2449</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2450"></a><tt class="py-lineno">2450</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2451"></a><tt class="py-lineno">2451</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">caseless</tt> <tt class="py-op">=</tt> <tt class="py-name">caseless</tt> </tt>
-<a name="L2452"></a><tt class="py-lineno">2452</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">caseless</tt><tt class="py-op">:</tt> </tt>
-<a name="L2453"></a><tt class="py-lineno">2453</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">caselessmatch</tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2454"></a><tt class="py-lineno">2454</tt> <tt class="py-line"> <tt class="py-name">identChars</tt> <tt class="py-op">=</tt> <tt class="py-name">identChars</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2455"></a><tt class="py-lineno">2455</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2456"></a><tt class="py-lineno">2456</tt> <tt class="py-line"> </tt>
-<a name="Keyword.parseImpl"></a><div id="Keyword.parseImpl-def"><a name="L2457"></a><tt class="py-lineno">2457</tt> <a class="py-toggle" href="#" id="Keyword.parseImpl-toggle" onclick="return toggle('Keyword.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Keyword-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Keyword.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Keyword.parseImpl-expanded"><a name="L2458"></a><tt class="py-lineno">2458</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">caseless</tt><tt class="py-op">:</tt> </tt>
-<a name="L2459"></a><tt class="py-lineno">2459</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">caselessmatch</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2460"></a><tt class="py-lineno">2460</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">loc</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2461"></a><tt class="py-lineno">2461</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">loc</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2462"></a><tt class="py-lineno">2462</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-369" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-369', 'match', 'link-352');">match</a></tt> </tt>
-<a name="L2463"></a><tt class="py-lineno">2463</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2464"></a><tt class="py-lineno">2464</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstMatchChar</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2465"></a><tt class="py-lineno">2465</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">==</tt><tt class="py-number">1</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">.</tt><tt class="py-name">startswith</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-370" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-370', 'match', 'link-352');">match</a></tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2466"></a><tt class="py-lineno">2466</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">loc</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">]</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2467"></a><tt class="py-lineno">2467</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">loc</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2468"></a><tt class="py-lineno">2468</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-371" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-371', 'match', 'link-352');">match</a></tt> </tt>
-<a name="L2469"></a><tt class="py-lineno">2469</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-372" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-372', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L2470"></a><tt class="py-lineno">2470</tt> <tt class="py-line"> </tt>
-<a name="Keyword.copy"></a><div id="Keyword.copy-def"><a name="L2471"></a><tt class="py-lineno">2471</tt> <a class="py-toggle" href="#" id="Keyword.copy-toggle" onclick="return toggle('Keyword.copy');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Keyword-class.html#copy">copy</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Keyword.copy-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Keyword.copy-expanded"><a name="L2472"></a><tt class="py-lineno">2472</tt> <tt class="py-line"> <tt class="py-name">c</tt> <tt class="py-op">=</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-373" class="py-name"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-373', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-374" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-374', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2473"></a><tt class="py-lineno">2473</tt> <tt class="py-line"> <tt class="py-name">c</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt> <tt class="py-op">=</tt> <tt id="link-375" class="py-name"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-375', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">.</tt><tt id="link-376" class="py-name"><a title="pyparsing.Keyword.DEFAULT_KEYWORD_CHARS" class="py-name" href="#" onclick="return doclink('link-376', 'DEFAULT_KEYWORD_CHARS', 'link-361');">DEFAULT_KEYWORD_CHARS</a></tt> </tt>
-<a name="L2474"></a><tt class="py-lineno">2474</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">c</tt> </tt>
-</div><a name="L2475"></a><tt class="py-lineno">2475</tt> <tt class="py-line"> </tt>
-<a name="L2476"></a><tt class="py-lineno">2476</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="Keyword.setDefaultKeywordChars"></a><div id="Keyword.setDefaultKeywordChars-def"><a name="L2477"></a><tt class="py-lineno">2477</tt> <a class="py-toggle" href="#" id="Keyword.setDefaultKeywordChars-toggle" onclick="return toggle('Keyword.setDefaultKeywordChars');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Keyword-class.html#setDefaultKeywordChars">setDefaultKeywordChars</a><tt class="py-op">(</tt> <tt class="py-param">chars</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Keyword.setDefaultKeywordChars-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Keyword.setDefaultKeywordChars-expanded"><a name="L2478"></a><tt class="py-lineno">2478</tt> <tt class="py-line"> <tt class="py-docstring">"""Overrides the default Keyword chars</tt> </tt>
-<a name="L2479"></a><tt class="py-lineno">2479</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2480"></a><tt class="py-lineno">2480</tt> <tt class="py-line"> <tt id="link-377" class="py-name"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-377', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">.</tt><tt id="link-378" class="py-name"><a title="pyparsing.Keyword.DEFAULT_KEYWORD_CHARS" class="py-name" href="#" onclick="return doclink('link-378', 'DEFAULT_KEYWORD_CHARS', 'link-361');">DEFAULT_KEYWORD_CHARS</a></tt> <tt class="py-op">=</tt> <tt class="py-name">chars</tt> </tt>
-</div></div><a name="L2481"></a><tt class="py-lineno">2481</tt> <tt class="py-line"> </tt>
-<a name="CaselessLiteral"></a><div id="CaselessLiteral-def"><a name="L2482"></a><tt class="py-lineno">2482</tt> <a class="py-toggle" href="#" id="CaselessLiteral-toggle" onclick="return toggle('CaselessLiteral');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.CaselessLiteral-class.html">CaselessLiteral</a><tt class="py-op">(</tt><tt class="py-base-class">Literal</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessLiteral-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="CaselessLiteral-expanded"><a name="L2483"></a><tt class="py-lineno">2483</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2484"></a><tt class="py-lineno">2484</tt> <tt class="py-line"><tt class="py-docstring"> Token to match a specified string, ignoring case of letters.</tt> </tt>
-<a name="L2485"></a><tt class="py-lineno">2485</tt> <tt class="py-line"><tt class="py-docstring"> Note: the matched results will always be in the case of the given</tt> </tt>
-<a name="L2486"></a><tt class="py-lineno">2486</tt> <tt class="py-line"><tt class="py-docstring"> match string, NOT the case of the input text.</tt> </tt>
-<a name="L2487"></a><tt class="py-lineno">2487</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2488"></a><tt class="py-lineno">2488</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2489"></a><tt class="py-lineno">2489</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(CaselessLiteral("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD', 'CMD']</tt> </tt>
-<a name="L2490"></a><tt class="py-lineno">2490</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2491"></a><tt class="py-lineno">2491</tt> <tt class="py-line"><tt class="py-docstring"> (Contrast with example for L{CaselessKeyword}.)</tt> </tt>
-<a name="L2492"></a><tt class="py-lineno">2492</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="CaselessLiteral.__init__"></a><div id="CaselessLiteral.__init__-def"><a name="L2493"></a><tt class="py-lineno">2493</tt> <a class="py-toggle" href="#" id="CaselessLiteral.__init__-toggle" onclick="return toggle('CaselessLiteral.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CaselessLiteral-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">matchString</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessLiteral.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CaselessLiteral.__init__-expanded"><a name="L2494"></a><tt class="py-lineno">2494</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-379" class="py-name" targets="Class pyparsing.CaselessLiteral=pyparsing.CaselessLiteral-class.html"><a title="pyparsing.CaselessLiteral" class="py-name" href="#" onclick="return doclink('link-379', 'CaselessLiteral', 'link-379');">CaselessLiteral</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-380" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-380', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">matchString</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2495"></a><tt class="py-lineno">2495</tt> <tt class="py-line"> <tt class="py-comment"># Preserve the defining literal.</tt> </tt>
-<a name="L2496"></a><tt class="py-lineno">2496</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">returnString</tt> <tt class="py-op">=</tt> <tt class="py-name">matchString</tt> </tt>
-<a name="L2497"></a><tt class="py-lineno">2497</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">"'%s'"</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">returnString</tt> </tt>
-<a name="L2498"></a><tt class="py-lineno">2498</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-</div><a name="L2499"></a><tt class="py-lineno">2499</tt> <tt class="py-line"> </tt>
-<a name="CaselessLiteral.parseImpl"></a><div id="CaselessLiteral.parseImpl-def"><a name="L2500"></a><tt class="py-lineno">2500</tt> <a class="py-toggle" href="#" id="CaselessLiteral.parseImpl-toggle" onclick="return toggle('CaselessLiteral.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CaselessLiteral-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessLiteral.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CaselessLiteral.parseImpl-expanded"><a name="L2501"></a><tt class="py-lineno">2501</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-381" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-381', 'match', 'link-352');">match</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L2502"></a><tt class="py-lineno">2502</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">returnString</tt> </tt>
-<a name="L2503"></a><tt class="py-lineno">2503</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-382" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-382', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L2504"></a><tt class="py-lineno">2504</tt> <tt class="py-line"> </tt>
-<a name="CaselessKeyword"></a><div id="CaselessKeyword-def"><a name="L2505"></a><tt class="py-lineno">2505</tt> <a class="py-toggle" href="#" id="CaselessKeyword-toggle" onclick="return toggle('CaselessKeyword');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.CaselessKeyword-class.html">CaselessKeyword</a><tt class="py-op">(</tt><tt class="py-base-class">Keyword</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessKeyword-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="CaselessKeyword-expanded"><a name="L2506"></a><tt class="py-lineno">2506</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2507"></a><tt class="py-lineno">2507</tt> <tt class="py-line"><tt class="py-docstring"> Caseless version of L{Keyword}.</tt> </tt>
-<a name="L2508"></a><tt class="py-lineno">2508</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2509"></a><tt class="py-lineno">2509</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2510"></a><tt class="py-lineno">2510</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(CaselessKeyword("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD']</tt> </tt>
-<a name="L2511"></a><tt class="py-lineno">2511</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2512"></a><tt class="py-lineno">2512</tt> <tt class="py-line"><tt class="py-docstring"> (Contrast with example for L{CaselessLiteral}.)</tt> </tt>
-<a name="L2513"></a><tt class="py-lineno">2513</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="CaselessKeyword.__init__"></a><div id="CaselessKeyword.__init__-def"><a name="L2514"></a><tt class="py-lineno">2514</tt> <a class="py-toggle" href="#" id="CaselessKeyword.__init__-toggle" onclick="return toggle('CaselessKeyword.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CaselessKeyword-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">matchString</tt><tt class="py-op">,</tt> <tt class="py-param">identChars</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessKeyword.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CaselessKeyword.__init__-expanded"><a name="L2515"></a><tt class="py-lineno">2515</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-383" class="py-name" targets="Class pyparsing.CaselessKeyword=pyparsing.CaselessKeyword-class.html"><a title="pyparsing.CaselessKeyword" class="py-name" href="#" onclick="return doclink('link-383', 'CaselessKeyword', 'link-383');">CaselessKeyword</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-384" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-384', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">matchString</tt><tt class="py-op">,</tt> <tt class="py-name">identChars</tt><tt class="py-op">,</tt> <tt class="py-name">caseless</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L2516"></a><tt class="py-lineno">2516</tt> <tt class="py-line"> </tt>
-<a name="CaselessKeyword.parseImpl"></a><div id="CaselessKeyword.parseImpl-def"><a name="L2517"></a><tt class="py-lineno">2517</tt> <a class="py-toggle" href="#" id="CaselessKeyword.parseImpl-toggle" onclick="return toggle('CaselessKeyword.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CaselessKeyword-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CaselessKeyword.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CaselessKeyword.parseImpl-expanded"><a name="L2518"></a><tt class="py-lineno">2518</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">caselessmatch</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L2519"></a><tt class="py-lineno">2519</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">loc</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt> <tt class="py-keyword">or</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">identChars</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2520"></a><tt class="py-lineno">2520</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchLen</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-385" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-385', 'match', 'link-352');">match</a></tt> </tt>
-<a name="L2521"></a><tt class="py-lineno">2521</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-386" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-386', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L2522"></a><tt class="py-lineno">2522</tt> <tt class="py-line"> </tt>
-<a name="CloseMatch"></a><div id="CloseMatch-def"><a name="L2523"></a><tt class="py-lineno">2523</tt> <a class="py-toggle" href="#" id="CloseMatch-toggle" onclick="return toggle('CloseMatch');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.CloseMatch-class.html">CloseMatch</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CloseMatch-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="CloseMatch-expanded"><a name="L2524"></a><tt class="py-lineno">2524</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2525"></a><tt class="py-lineno">2525</tt> <tt class="py-line"><tt class="py-docstring"> A variation on L{Literal} which matches "close" matches, that is, </tt> </tt>
-<a name="L2526"></a><tt class="py-lineno">2526</tt> <tt class="py-line"><tt class="py-docstring"> strings with at most 'n' mismatching characters. C{CloseMatch} takes parameters:</tt> </tt>
-<a name="L2527"></a><tt class="py-lineno">2527</tt> <tt class="py-line"><tt class="py-docstring"> - C{match_string} - string to be matched</tt> </tt>
-<a name="L2528"></a><tt class="py-lineno">2528</tt> <tt class="py-line"><tt class="py-docstring"> - C{maxMismatches} - (C{default=1}) maximum number of mismatches allowed to count as a match</tt> </tt>
-<a name="L2529"></a><tt class="py-lineno">2529</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2530"></a><tt class="py-lineno">2530</tt> <tt class="py-line"><tt class="py-docstring"> The results from a successful parse will contain the matched text from the input string and the following named results:</tt> </tt>
-<a name="L2531"></a><tt class="py-lineno">2531</tt> <tt class="py-line"><tt class="py-docstring"> - C{mismatches} - a list of the positions within the match_string where mismatches were found</tt> </tt>
-<a name="L2532"></a><tt class="py-lineno">2532</tt> <tt class="py-line"><tt class="py-docstring"> - C{original} - the original match_string used to compare against the input string</tt> </tt>
-<a name="L2533"></a><tt class="py-lineno">2533</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2534"></a><tt class="py-lineno">2534</tt> <tt class="py-line"><tt class="py-docstring"> If C{mismatches} is an empty list, then the match was an exact match.</tt> </tt>
-<a name="L2535"></a><tt class="py-lineno">2535</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2536"></a><tt class="py-lineno">2536</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2537"></a><tt class="py-lineno">2537</tt> <tt class="py-line"><tt class="py-docstring"> patt = CloseMatch("ATCATCGAATGGA")</tt> </tt>
-<a name="L2538"></a><tt class="py-lineno">2538</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString("ATCATCGAAXGGA") # -> (['ATCATCGAAXGGA'], {'mismatches': [[9]], 'original': ['ATCATCGAATGGA']})</tt> </tt>
-<a name="L2539"></a><tt class="py-lineno">2539</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString("ATCAXCGAAXGGA") # -> Exception: Expected 'ATCATCGAATGGA' (with up to 1 mismatches) (at char 0), (line:1, col:1)</tt> </tt>
-<a name="L2540"></a><tt class="py-lineno">2540</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2541"></a><tt class="py-lineno">2541</tt> <tt class="py-line"><tt class="py-docstring"> # exact match</tt> </tt>
-<a name="L2542"></a><tt class="py-lineno">2542</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString("ATCATCGAATGGA") # -> (['ATCATCGAATGGA'], {'mismatches': [[]], 'original': ['ATCATCGAATGGA']})</tt> </tt>
-<a name="L2543"></a><tt class="py-lineno">2543</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2544"></a><tt class="py-lineno">2544</tt> <tt class="py-line"><tt class="py-docstring"> # close match allowing up to 2 mismatches</tt> </tt>
-<a name="L2545"></a><tt class="py-lineno">2545</tt> <tt class="py-line"><tt class="py-docstring"> patt = CloseMatch("ATCATCGAATGGA", maxMismatches=2)</tt> </tt>
-<a name="L2546"></a><tt class="py-lineno">2546</tt> <tt class="py-line"><tt class="py-docstring"> patt.parseString("ATCAXCGAAXGGA") # -> (['ATCAXCGAAXGGA'], {'mismatches': [[4, 9]], 'original': ['ATCATCGAATGGA']})</tt> </tt>
-<a name="L2547"></a><tt class="py-lineno">2547</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="CloseMatch.__init__"></a><div id="CloseMatch.__init__-def"><a name="L2548"></a><tt class="py-lineno">2548</tt> <a class="py-toggle" href="#" id="CloseMatch.__init__-toggle" onclick="return toggle('CloseMatch.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CloseMatch-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">match_string</tt><tt class="py-op">,</tt> <tt class="py-param">maxMismatches</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CloseMatch.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CloseMatch.__init__-expanded"><a name="L2549"></a><tt class="py-lineno">2549</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-387" class="py-name" targets="Class pyparsing.CloseMatch=pyparsing.CloseMatch-class.html"><a title="pyparsing.CloseMatch" class="py-name" href="#" onclick="return doclink('link-387', 'CloseMatch', 'link-387');">CloseMatch</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-388" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-388', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2550"></a><tt class="py-lineno">2550</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">match_string</tt> </tt>
-<a name="L2551"></a><tt class="py-lineno">2551</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt> <tt class="py-op">=</tt> <tt class="py-name">match_string</tt> </tt>
-<a name="L2552"></a><tt class="py-lineno">2552</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxMismatches</tt> <tt class="py-op">=</tt> <tt class="py-name">maxMismatches</tt> </tt>
-<a name="L2553"></a><tt class="py-lineno">2553</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected %r (with up to %d mismatches)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxMismatches</tt><tt class="py-op">)</tt> </tt>
-<a name="L2554"></a><tt class="py-lineno">2554</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2555"></a><tt class="py-lineno">2555</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L2556"></a><tt class="py-lineno">2556</tt> <tt class="py-line"> </tt>
-<a name="CloseMatch.parseImpl"></a><div id="CloseMatch.parseImpl-def"><a name="L2557"></a><tt class="py-lineno">2557</tt> <a class="py-toggle" href="#" id="CloseMatch.parseImpl-toggle" onclick="return toggle('CloseMatch.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CloseMatch-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CloseMatch.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CloseMatch.parseImpl-expanded"><a name="L2558"></a><tt class="py-lineno">2558</tt> <tt class="py-line"> <tt class="py-name">start</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L2559"></a><tt class="py-lineno">2559</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L2560"></a><tt class="py-lineno">2560</tt> <tt class="py-line"> <tt class="py-name">maxloc</tt> <tt class="py-op">=</tt> <tt class="py-name">start</tt> <tt class="py-op">+</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt><tt class="py-op">)</tt> </tt>
-<a name="L2561"></a><tt class="py-lineno">2561</tt> <tt class="py-line"> </tt>
-<a name="L2562"></a><tt class="py-lineno">2562</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">maxloc</tt> <tt class="py-op"><=</tt> <tt class="py-name">instrlen</tt><tt class="py-op">:</tt> </tt>
-<a name="L2563"></a><tt class="py-lineno">2563</tt> <tt class="py-line"> <tt class="py-name">match_string</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt> </tt>
-<a name="L2564"></a><tt class="py-lineno">2564</tt> <tt class="py-line"> <tt class="py-name">match_stringloc</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L2565"></a><tt class="py-lineno">2565</tt> <tt class="py-line"> <tt class="py-name">mismatches</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L2566"></a><tt class="py-lineno">2566</tt> <tt class="py-line"> <tt class="py-name">maxMismatches</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxMismatches</tt> </tt>
-<a name="L2567"></a><tt class="py-lineno">2567</tt> <tt class="py-line"> </tt>
-<a name="L2568"></a><tt class="py-lineno">2568</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">match_stringloc</tt><tt class="py-op">,</tt><tt class="py-name">s_m</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">zip</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">:</tt><tt class="py-name">maxloc</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2569"></a><tt class="py-lineno">2569</tt> <tt class="py-line"> <tt class="py-name">src</tt><tt class="py-op">,</tt><tt class="py-name">mat</tt> <tt class="py-op">=</tt> <tt class="py-name">s_m</tt> </tt>
-<a name="L2570"></a><tt class="py-lineno">2570</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">src</tt> <tt class="py-op">!=</tt> <tt class="py-name">mat</tt><tt class="py-op">:</tt> </tt>
-<a name="L2571"></a><tt class="py-lineno">2571</tt> <tt class="py-line"> <tt class="py-name">mismatches</tt><tt class="py-op">.</tt><tt id="link-389" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-389', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">match_stringloc</tt><tt class="py-op">)</tt> </tt>
-<a name="L2572"></a><tt class="py-lineno">2572</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">mismatches</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-name">maxMismatches</tt><tt class="py-op">:</tt> </tt>
-<a name="L2573"></a><tt class="py-lineno">2573</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L2574"></a><tt class="py-lineno">2574</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2575"></a><tt class="py-lineno">2575</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">match_stringloc</tt> <tt class="py-op">+</tt> <tt class="py-number">1</tt> </tt>
-<a name="L2576"></a><tt class="py-lineno">2576</tt> <tt class="py-line"> <tt class="py-name">results</tt> <tt class="py-op">=</tt> <tt id="link-390" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-390', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">start</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L2577"></a><tt class="py-lineno">2577</tt> <tt class="py-line"> <tt class="py-name">results</tt><tt class="py-op">[</tt><tt class="py-string">'original'</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">match_string</tt> </tt>
-<a name="L2578"></a><tt class="py-lineno">2578</tt> <tt class="py-line"> <tt class="py-name">results</tt><tt class="py-op">[</tt><tt class="py-string">'mismatches'</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">mismatches</tt> </tt>
-<a name="L2579"></a><tt class="py-lineno">2579</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">results</tt> </tt>
-<a name="L2580"></a><tt class="py-lineno">2580</tt> <tt class="py-line"> </tt>
-<a name="L2581"></a><tt class="py-lineno">2581</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-391" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-391', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L2582"></a><tt class="py-lineno">2582</tt> <tt class="py-line"> </tt>
-<a name="Word"></a><div id="Word-def"><a name="L2583"></a><tt class="py-lineno">2583</tt> <tt class="py-line"> </tt>
-<a name="L2584"></a><tt class="py-lineno">2584</tt> <a class="py-toggle" href="#" id="Word-toggle" onclick="return toggle('Word');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Word-class.html">Word</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Word-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Word-expanded"><a name="L2585"></a><tt class="py-lineno">2585</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2586"></a><tt class="py-lineno">2586</tt> <tt class="py-line"><tt class="py-docstring"> Token for matching words composed of allowed character sets.</tt> </tt>
-<a name="L2587"></a><tt class="py-lineno">2587</tt> <tt class="py-line"><tt class="py-docstring"> Defined with string containing all allowed initial characters,</tt> </tt>
-<a name="L2588"></a><tt class="py-lineno">2588</tt> <tt class="py-line"><tt class="py-docstring"> an optional string containing allowed body characters (if omitted,</tt> </tt>
-<a name="L2589"></a><tt class="py-lineno">2589</tt> <tt class="py-line"><tt class="py-docstring"> defaults to the initial character set), and an optional minimum,</tt> </tt>
-<a name="L2590"></a><tt class="py-lineno">2590</tt> <tt class="py-line"><tt class="py-docstring"> maximum, and/or exact length. The default value for C{min} is 1 (a</tt> </tt>
-<a name="L2591"></a><tt class="py-lineno">2591</tt> <tt class="py-line"><tt class="py-docstring"> minimum value < 1 is not valid); the default values for C{max} and C{exact}</tt> </tt>
-<a name="L2592"></a><tt class="py-lineno">2592</tt> <tt class="py-line"><tt class="py-docstring"> are 0, meaning no maximum or exact length restriction. An optional</tt> </tt>
-<a name="L2593"></a><tt class="py-lineno">2593</tt> <tt class="py-line"><tt class="py-docstring"> C{excludeChars} parameter can list characters that might be found in </tt> </tt>
-<a name="L2594"></a><tt class="py-lineno">2594</tt> <tt class="py-line"><tt class="py-docstring"> the input C{bodyChars} string; useful to define a word of all printables</tt> </tt>
-<a name="L2595"></a><tt class="py-lineno">2595</tt> <tt class="py-line"><tt class="py-docstring"> except for one or two characters, for instance.</tt> </tt>
-<a name="L2596"></a><tt class="py-lineno">2596</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2597"></a><tt class="py-lineno">2597</tt> <tt class="py-line"><tt class="py-docstring"> L{srange} is useful for defining custom character set strings for defining </tt> </tt>
-<a name="L2598"></a><tt class="py-lineno">2598</tt> <tt class="py-line"><tt class="py-docstring"> C{Word} expressions, using range notation from regular expression character sets.</tt> </tt>
-<a name="L2599"></a><tt class="py-lineno">2599</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2600"></a><tt class="py-lineno">2600</tt> <tt class="py-line"><tt class="py-docstring"> A common mistake is to use C{Word} to match a specific literal string, as in </tt> </tt>
-<a name="L2601"></a><tt class="py-lineno">2601</tt> <tt class="py-line"><tt class="py-docstring"> C{Word("Address")}. Remember that C{Word} uses the string argument to define</tt> </tt>
-<a name="L2602"></a><tt class="py-lineno">2602</tt> <tt class="py-line"><tt class="py-docstring"> I{sets} of matchable characters. This expression would match "Add", "AAA",</tt> </tt>
-<a name="L2603"></a><tt class="py-lineno">2603</tt> <tt class="py-line"><tt class="py-docstring"> "dAred", or any other word made up of the characters 'A', 'd', 'r', 'e', and 's'.</tt> </tt>
-<a name="L2604"></a><tt class="py-lineno">2604</tt> <tt class="py-line"><tt class="py-docstring"> To match an exact literal string, use L{Literal} or L{Keyword}.</tt> </tt>
-<a name="L2605"></a><tt class="py-lineno">2605</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2606"></a><tt class="py-lineno">2606</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing includes helper strings for building Words:</tt> </tt>
-<a name="L2607"></a><tt class="py-lineno">2607</tt> <tt class="py-line"><tt class="py-docstring"> - L{alphas}</tt> </tt>
-<a name="L2608"></a><tt class="py-lineno">2608</tt> <tt class="py-line"><tt class="py-docstring"> - L{nums}</tt> </tt>
-<a name="L2609"></a><tt class="py-lineno">2609</tt> <tt class="py-line"><tt class="py-docstring"> - L{alphanums}</tt> </tt>
-<a name="L2610"></a><tt class="py-lineno">2610</tt> <tt class="py-line"><tt class="py-docstring"> - L{hexnums}</tt> </tt>
-<a name="L2611"></a><tt class="py-lineno">2611</tt> <tt class="py-line"><tt class="py-docstring"> - L{alphas8bit} (alphabetic characters in ASCII range 128-255 - accented, tilded, umlauted, etc.)</tt> </tt>
-<a name="L2612"></a><tt class="py-lineno">2612</tt> <tt class="py-line"><tt class="py-docstring"> - L{punc8bit} (non-alphabetic characters in ASCII range 128-255 - currency, symbols, superscripts, diacriticals, etc.)</tt> </tt>
-<a name="L2613"></a><tt class="py-lineno">2613</tt> <tt class="py-line"><tt class="py-docstring"> - L{printables} (any non-whitespace character)</tt> </tt>
-<a name="L2614"></a><tt class="py-lineno">2614</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2615"></a><tt class="py-lineno">2615</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2616"></a><tt class="py-lineno">2616</tt> <tt class="py-line"><tt class="py-docstring"> # a word composed of digits</tt> </tt>
-<a name="L2617"></a><tt class="py-lineno">2617</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums) # equivalent to Word("0123456789") or Word(srange("0-9"))</tt> </tt>
-<a name="L2618"></a><tt class="py-lineno">2618</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2619"></a><tt class="py-lineno">2619</tt> <tt class="py-line"><tt class="py-docstring"> # a word with a leading capital, and zero or more lowercase</tt> </tt>
-<a name="L2620"></a><tt class="py-lineno">2620</tt> <tt class="py-line"><tt class="py-docstring"> capital_word = Word(alphas.upper(), alphas.lower())</tt> </tt>
-<a name="L2621"></a><tt class="py-lineno">2621</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2622"></a><tt class="py-lineno">2622</tt> <tt class="py-line"><tt class="py-docstring"> # hostnames are alphanumeric, with leading alpha, and '-'</tt> </tt>
-<a name="L2623"></a><tt class="py-lineno">2623</tt> <tt class="py-line"><tt class="py-docstring"> hostname = Word(alphas, alphanums+'-')</tt> </tt>
-<a name="L2624"></a><tt class="py-lineno">2624</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2625"></a><tt class="py-lineno">2625</tt> <tt class="py-line"><tt class="py-docstring"> # roman numeral (not a strict parser, accepts invalid mix of characters)</tt> </tt>
-<a name="L2626"></a><tt class="py-lineno">2626</tt> <tt class="py-line"><tt class="py-docstring"> roman = Word("IVXLCDM")</tt> </tt>
-<a name="L2627"></a><tt class="py-lineno">2627</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2628"></a><tt class="py-lineno">2628</tt> <tt class="py-line"><tt class="py-docstring"> # any string of non-whitespace characters, except for ','</tt> </tt>
-<a name="L2629"></a><tt class="py-lineno">2629</tt> <tt class="py-line"><tt class="py-docstring"> csv_value = Word(printables, excludeChars=",")</tt> </tt>
-<a name="L2630"></a><tt class="py-lineno">2630</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Word.__init__"></a><div id="Word.__init__-def"><a name="L2631"></a><tt class="py-lineno">2631</tt> <a class="py-toggle" href="#" id="Word.__init__-toggle" onclick="return toggle('Word.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Word-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">initChars</tt><tt class="py-op">,</tt> <tt class="py-param">bodyChars</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">min</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-param">max</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">exact</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">asKeyword</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-param">excludeChars</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Word.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Word.__init__-expanded"><a name="L2632"></a><tt class="py-lineno">2632</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-392" class="py-name" targets="Class pyparsing.Word=pyparsing.Word-class.html"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-392', 'Word', 'link-392');">Word</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-393" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-393', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2633"></a><tt class="py-lineno">2633</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">:</tt> </tt>
-<a name="L2634"></a><tt class="py-lineno">2634</tt> <tt class="py-line"> <tt class="py-name">initChars</tt> <tt class="py-op">=</tt> <tt class="py-string">''</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">c</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">initChars</tt> <tt class="py-keyword">if</tt> <tt class="py-name">c</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L2635"></a><tt class="py-lineno">2635</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">bodyChars</tt><tt class="py-op">:</tt> </tt>
-<a name="L2636"></a><tt class="py-lineno">2636</tt> <tt class="py-line"> <tt class="py-name">bodyChars</tt> <tt class="py-op">=</tt> <tt class="py-string">''</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">c</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">bodyChars</tt> <tt class="py-keyword">if</tt> <tt class="py-name">c</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L2637"></a><tt class="py-lineno">2637</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt> <tt class="py-op">=</tt> <tt class="py-name">initChars</tt> </tt>
-<a name="L2638"></a><tt class="py-lineno">2638</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">initChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L2639"></a><tt class="py-lineno">2639</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">bodyChars</tt> <tt class="py-op">:</tt> </tt>
-<a name="L2640"></a><tt class="py-lineno">2640</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt> <tt class="py-op">=</tt> <tt class="py-name">bodyChars</tt> </tt>
-<a name="L2641"></a><tt class="py-lineno">2641</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">bodyChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L2642"></a><tt class="py-lineno">2642</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2643"></a><tt class="py-lineno">2643</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt> <tt class="py-op">=</tt> <tt class="py-name">initChars</tt> </tt>
-<a name="L2644"></a><tt class="py-lineno">2644</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">initChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L2645"></a><tt class="py-lineno">2645</tt> <tt class="py-line"> </tt>
-<a name="L2646"></a><tt class="py-lineno">2646</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxSpecified</tt> <tt class="py-op">=</tt> <tt class="py-name">max</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt> </tt>
-<a name="L2647"></a><tt class="py-lineno">2647</tt> <tt class="py-line"> </tt>
-<a name="L2648"></a><tt class="py-lineno">2648</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">min</tt> <tt class="py-op"><</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L2649"></a><tt class="py-lineno">2649</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot specify a minimum length < 1; use Optional(Word()) if zero-length word is permitted"</tt><tt class="py-op">)</tt> </tt>
-<a name="L2650"></a><tt class="py-lineno">2650</tt> <tt class="py-line"> </tt>
-<a name="L2651"></a><tt class="py-lineno">2651</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt> </tt>
-<a name="L2652"></a><tt class="py-lineno">2652</tt> <tt class="py-line"> </tt>
-<a name="L2653"></a><tt class="py-lineno">2653</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">max</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L2654"></a><tt class="py-lineno">2654</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">max</tt> </tt>
-<a name="L2655"></a><tt class="py-lineno">2655</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2656"></a><tt class="py-lineno">2656</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt id="link-394" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-394', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> </tt>
-<a name="L2657"></a><tt class="py-lineno">2657</tt> <tt class="py-line"> </tt>
-<a name="L2658"></a><tt class="py-lineno">2658</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">exact</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L2659"></a><tt class="py-lineno">2659</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-<a name="L2660"></a><tt class="py-lineno">2660</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-<a name="L2661"></a><tt class="py-lineno">2661</tt> <tt class="py-line"> </tt>
-<a name="L2662"></a><tt class="py-lineno">2662</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2663"></a><tt class="py-lineno">2663</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2664"></a><tt class="py-lineno">2664</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2665"></a><tt class="py-lineno">2665</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">asKeyword</tt> <tt class="py-op">=</tt> <tt class="py-name">asKeyword</tt> </tt>
-<a name="L2666"></a><tt class="py-lineno">2666</tt> <tt class="py-line"> </tt>
-<a name="L2667"></a><tt class="py-lineno">2667</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-string">' '</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt> <tt class="py-keyword">and</tt> <tt class="py-op">(</tt><tt class="py-name">min</tt><tt class="py-op">==</tt><tt class="py-number">1</tt> <tt class="py-keyword">and</tt> <tt class="py-name">max</tt><tt class="py-op">==</tt><tt class="py-number">0</tt> <tt class="py-keyword">and</tt> <tt class="py-name">exact</tt><tt class="py-op">==</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2668"></a><tt class="py-lineno">2668</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">:</tt> </tt>
-<a name="L2669"></a><tt class="py-lineno">2669</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-string">"[%s]+"</tt> <tt class="py-op">%</tt> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt> </tt>
-<a name="L2670"></a><tt class="py-lineno">2670</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L2671"></a><tt class="py-lineno">2671</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-string">"%s[%s]*"</tt> <tt class="py-op">%</tt> \ </tt>
-<a name="L2672"></a><tt class="py-lineno">2672</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2673"></a><tt class="py-lineno">2673</tt> <tt class="py-line"> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-op">)</tt> </tt>
-<a name="L2674"></a><tt class="py-lineno">2674</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2675"></a><tt class="py-lineno">2675</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-string">"[%s][%s]*"</tt> <tt class="py-op">%</tt> \ </tt>
-<a name="L2676"></a><tt class="py-lineno">2676</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2677"></a><tt class="py-lineno">2677</tt> <tt class="py-line"> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-op">)</tt> </tt>
-<a name="L2678"></a><tt class="py-lineno">2678</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">asKeyword</tt><tt class="py-op">:</tt> </tt>
-<a name="L2679"></a><tt class="py-lineno">2679</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-string">r"\b"</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt><tt class="py-op">+</tt><tt class="py-string">r"\b"</tt> </tt>
-<a name="L2680"></a><tt class="py-lineno">2680</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2681"></a><tt class="py-lineno">2681</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">compile</tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2682"></a><tt class="py-lineno">2682</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L2683"></a><tt class="py-lineno">2683</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-</div><a name="L2684"></a><tt class="py-lineno">2684</tt> <tt class="py-line"> </tt>
-<a name="Word.parseImpl"></a><div id="Word.parseImpl-def"><a name="L2685"></a><tt class="py-lineno">2685</tt> <a class="py-toggle" href="#" id="Word.parseImpl-toggle" onclick="return toggle('Word.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Word-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Word.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Word.parseImpl-expanded"><a name="L2686"></a><tt class="py-lineno">2686</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt><tt class="py-op">:</tt> </tt>
-<a name="L2687"></a><tt class="py-lineno">2687</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt id="link-395" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-395', 'match', 'link-352');">match</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L2688"></a><tt class="py-lineno">2688</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">result</tt><tt class="py-op">:</tt> </tt>
-<a name="L2689"></a><tt class="py-lineno">2689</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-396" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-396', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2690"></a><tt class="py-lineno">2690</tt> <tt class="py-line"> </tt>
-<a name="L2691"></a><tt class="py-lineno">2691</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">end</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2692"></a><tt class="py-lineno">2692</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">group</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2693"></a><tt class="py-lineno">2693</tt> <tt class="py-line"> </tt>
-<a name="L2694"></a><tt class="py-lineno">2694</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt> <tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initChars</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2695"></a><tt class="py-lineno">2695</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-397" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-397', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2696"></a><tt class="py-lineno">2696</tt> <tt class="py-line"> </tt>
-<a name="L2697"></a><tt class="py-lineno">2697</tt> <tt class="py-line"> <tt class="py-name">start</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L2698"></a><tt class="py-lineno">2698</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L2699"></a><tt class="py-lineno">2699</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L2700"></a><tt class="py-lineno">2700</tt> <tt class="py-line"> <tt class="py-name">bodychars</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyChars</tt> </tt>
-<a name="L2701"></a><tt class="py-lineno">2701</tt> <tt class="py-line"> <tt class="py-name">maxloc</tt> <tt class="py-op">=</tt> <tt class="py-name">start</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> </tt>
-<a name="L2702"></a><tt class="py-lineno">2702</tt> <tt class="py-line"> <tt class="py-name">maxloc</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt><tt class="py-op">(</tt> <tt class="py-name">maxloc</tt><tt class="py-op">,</tt> <tt class="py-name">instrlen</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2703"></a><tt class="py-lineno">2703</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">maxloc</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">bodychars</tt><tt class="py-op">:</tt> </tt>
-<a name="L2704"></a><tt class="py-lineno">2704</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L2705"></a><tt class="py-lineno">2705</tt> <tt class="py-line"> </tt>
-<a name="L2706"></a><tt class="py-lineno">2706</tt> <tt class="py-line"> <tt class="py-name">throwException</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2707"></a><tt class="py-lineno">2707</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">-</tt> <tt class="py-name">start</tt> <tt class="py-op"><</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt><tt class="py-op">:</tt> </tt>
-<a name="L2708"></a><tt class="py-lineno">2708</tt> <tt class="py-line"> <tt class="py-name">throwException</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2709"></a><tt class="py-lineno">2709</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxSpecified</tt> <tt class="py-keyword">and</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">instrlen</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">bodychars</tt><tt class="py-op">:</tt> </tt>
-<a name="L2710"></a><tt class="py-lineno">2710</tt> <tt class="py-line"> <tt class="py-name">throwException</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2711"></a><tt class="py-lineno">2711</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">asKeyword</tt><tt class="py-op">:</tt> </tt>
-<a name="L2712"></a><tt class="py-lineno">2712</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">start</tt><tt class="py-op">></tt><tt class="py-number">0</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">start</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">bodychars</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op"><</tt><tt class="py-name">instrlen</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">bodychars</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2713"></a><tt class="py-lineno">2713</tt> <tt class="py-line"> <tt class="py-name">throwException</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L2714"></a><tt class="py-lineno">2714</tt> <tt class="py-line"> </tt>
-<a name="L2715"></a><tt class="py-lineno">2715</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">throwException</tt><tt class="py-op">:</tt> </tt>
-<a name="L2716"></a><tt class="py-lineno">2716</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-398" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-398', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2717"></a><tt class="py-lineno">2717</tt> <tt class="py-line"> </tt>
-<a name="L2718"></a><tt class="py-lineno">2718</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">start</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L2719"></a><tt class="py-lineno">2719</tt> <tt class="py-line"> </tt>
-<a name="Word.__str__"></a><div id="Word.__str__-def"><a name="L2720"></a><tt class="py-lineno">2720</tt> <a class="py-toggle" href="#" id="Word.__str__-toggle" onclick="return toggle('Word.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Word-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Word.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Word.__str__-expanded"><a name="L2721"></a><tt class="py-lineno">2721</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2722"></a><tt class="py-lineno">2722</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-399" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-399', 'Word', 'link-392');">Word</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-400" class="py-name" targets="Method pyparsing.And.__str__()=pyparsing.And-class.html#__str__,Method pyparsing.CharsNotIn.__str__()=pyparsing.CharsNotIn-class.html#__str__,Method pyparsing.Each.__str__()=pyparsing.Each-class.html#__str__,Method pyparsing.Forward.__str__()=pyparsing.Forward-class.html#__str__,Method pyparsing.MatchFirst.__str__()=pyparsing.MatchFirst-class.html#__str__,Method pyparsing.NotAny.__str__()=pyparsing.NotAny-class.html#__str__,Method pyparsing.OneOrMore.__str__()=pyparsing.OneOrMore-class.html#__str__,Method pyparsing.Optional.__str__()=pyparsing.Optional-class.html#__str__,Method pyparsing.Or.__str__()=pyparsing.Or-class.html#__str__,Method pyparsing.ParseBaseException.__str__()=pyparsing.ParseBaseException-class.html#__str__,Method pyparsing.ParseElementEnhance.__str__()=pyparsing.ParseElementEnhance-class.html#__str__,Method pyparsing.ParseExpression.__str__()=pyparsing.ParseExpression-class.html#__str__,Method pyparsing.ParseResults.__str__()=pyparsing.ParseResults-class.html#__str__,Method pyparsing.ParserElement.__str__()=pyparsing.ParserElement-class.html#__str__,Method pyparsing.QuotedString.__str__()=pyparsing.QuotedString-class.html#__str__,Method pyparsing.RecursiveGrammarException.__str__()=pyparsing.RecursiveGrammarException-class.html#__str__,Method pyparsing.Regex.__str__()=pyparsing.Regex-class.html#__str__,Method pyparsing.Word.__str__()=pyparsing.Word-class.html#__str__,Method pyparsing.ZeroOrMore.__str__()=pyparsing.ZeroOrMore-class.html#__str__"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-400', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2723"></a><tt class="py-lineno">2723</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L2724"></a><tt class="py-lineno">2724</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L2725"></a><tt class="py-lineno">2725</tt> <tt class="py-line"> </tt>
-<a name="L2726"></a><tt class="py-lineno">2726</tt> <tt class="py-line"> </tt>
-<a name="L2727"></a><tt class="py-lineno">2727</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2728"></a><tt class="py-lineno">2728</tt> <tt class="py-line"> </tt>
-<a name="L2729"></a><tt class="py-lineno">2729</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">charsAsStr</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2730"></a><tt class="py-lineno">2730</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt><tt class="py-op">></tt><tt class="py-number">4</tt><tt class="py-op">:</tt> </tt>
-<a name="L2731"></a><tt class="py-lineno">2731</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">s</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">4</tt><tt class="py-op">]</tt><tt class="py-op">+</tt><tt class="py-string">"..."</tt> </tt>
-<a name="L2732"></a><tt class="py-lineno">2732</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2733"></a><tt class="py-lineno">2733</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">s</tt> </tt>
-</div><a name="L2734"></a><tt class="py-lineno">2734</tt> <tt class="py-line"> </tt>
-<a name="L2735"></a><tt class="py-lineno">2735</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt> <tt class="py-op">!=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2736"></a><tt class="py-lineno">2736</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"W:(%s,%s)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt> <tt class="py-name">charsAsStr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">charsAsStr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">bodyCharsOrig</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2737"></a><tt class="py-lineno">2737</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2738"></a><tt class="py-lineno">2738</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"W:(%s)"</tt> <tt class="py-op">%</tt> <tt class="py-name">charsAsStr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initCharsOrig</tt><tt class="py-op">)</tt> </tt>
-<a name="L2739"></a><tt class="py-lineno">2739</tt> <tt class="py-line"> </tt>
-<a name="L2740"></a><tt class="py-lineno">2740</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L2741"></a><tt class="py-lineno">2741</tt> <tt class="py-line"> </tt>
-<a name="Regex"></a><div id="Regex-def"><a name="L2742"></a><tt class="py-lineno">2742</tt> <tt class="py-line"> </tt>
-<a name="L2743"></a><tt class="py-lineno">2743</tt> <a class="py-toggle" href="#" id="Regex-toggle" onclick="return toggle('Regex');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Regex-class.html">Regex</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Regex-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Regex-expanded"><a name="L2744"></a><tt class="py-lineno">2744</tt> <tt class="py-line"> <tt class="py-docstring">r"""</tt> </tt>
-<a name="L2745"></a><tt class="py-lineno">2745</tt> <tt class="py-line"><tt class="py-docstring"> Token for matching strings that match a given regular expression.</tt> </tt>
-<a name="L2746"></a><tt class="py-lineno">2746</tt> <tt class="py-line"><tt class="py-docstring"> Defined with string specifying the regular expression in a form recognized by the inbuilt Python re module.</tt> </tt>
-<a name="L2747"></a><tt class="py-lineno">2747</tt> <tt class="py-line"><tt class="py-docstring"> If the given regex contains named groups (defined using C{(?P<name>...)}), these will be preserved as </tt> </tt>
-<a name="L2748"></a><tt class="py-lineno">2748</tt> <tt class="py-line"><tt class="py-docstring"> named parse results.</tt> </tt>
-<a name="L2749"></a><tt class="py-lineno">2749</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2750"></a><tt class="py-lineno">2750</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2751"></a><tt class="py-lineno">2751</tt> <tt class="py-line"><tt class="py-docstring"> realnum = Regex(r"[+-]?\d+\.\d*")</tt> </tt>
-<a name="L2752"></a><tt class="py-lineno">2752</tt> <tt class="py-line"><tt class="py-docstring"> date = Regex(r'(?P<year>\d{4})-(?P<month>\d\d?)-(?P<day>\d\d?)')</tt> </tt>
-<a name="L2753"></a><tt class="py-lineno">2753</tt> <tt class="py-line"><tt class="py-docstring"> # ref: http://stackoverflow.com/questions/267399/how-do-you-match-only-valid-roman-numerals-with-a-regular-expression</tt> </tt>
-<a name="L2754"></a><tt class="py-lineno">2754</tt> <tt class="py-line"><tt class="py-docstring"> roman = Regex(r"M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})")</tt> </tt>
-<a name="L2755"></a><tt class="py-lineno">2755</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L2756"></a><tt class="py-lineno">2756</tt> <tt class="py-line"> <tt id="link-401" class="py-name" targets="Class pyparsing.Regex.compiledREtype=pyparsing.Regex.compiledREtype-class.html"><a title="pyparsing.Regex.compiledREtype" class="py-name" href="#" onclick="return doclink('link-401', 'compiledREtype', 'link-401');">compiledREtype</a></tt> <tt class="py-op">=</tt> <tt class="py-name">type</tt><tt class="py-op">(</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">compile</tt><tt class="py-op">(</tt><tt class="py-string">"[A-Z]"</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="Regex.__init__"></a><div id="Regex.__init__-def"><a name="L2757"></a><tt class="py-lineno">2757</tt> <a class="py-toggle" href="#" id="Regex.__init__-toggle" onclick="return toggle('Regex.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Regex-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">pattern</tt><tt class="py-op">,</tt> <tt class="py-param">flags</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Regex.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Regex.__init__-expanded"><a name="L2758"></a><tt class="py-lineno">2758</tt> <tt class="py-line"> <tt class="py-docstring">"""The parameters C{pattern} and C{flags} are passed to the C{re.compile()} function as-is. See the Python C{re} module for an explanation of the acceptable patterns and flags."""</tt> </tt>
-<a name="L2759"></a><tt class="py-lineno">2759</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-402" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-402', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-403" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-403', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2760"></a><tt class="py-lineno">2760</tt> <tt class="py-line"> </tt>
-<a name="L2761"></a><tt class="py-lineno">2761</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt id="link-404" class="py-name" targets="Variable pyparsing.Regex.compiledREtype.pattern=pyparsing.Regex.compiledREtype-class.html#pattern"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-404', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2762"></a><tt class="py-lineno">2762</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt id="link-405" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-405', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L2763"></a><tt class="py-lineno">2763</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"null string passed to Regex; use Empty() instead"</tt><tt class="py-op">,</tt> </tt>
-<a name="L2764"></a><tt class="py-lineno">2764</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2765"></a><tt class="py-lineno">2765</tt> <tt class="py-line"> </tt>
-<a name="L2766"></a><tt class="py-lineno">2766</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-406" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-406', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">=</tt> <tt id="link-407" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-407', 'pattern', 'link-404');">pattern</a></tt> </tt>
-<a name="L2767"></a><tt class="py-lineno">2767</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-408" class="py-name" targets="Variable pyparsing.Regex.compiledREtype.flags=pyparsing.Regex.compiledREtype-class.html#flags"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-408', 'flags', 'link-408');">flags</a></tt> <tt class="py-op">=</tt> <tt id="link-409" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-409', 'flags', 'link-408');">flags</a></tt> </tt>
-<a name="L2768"></a><tt class="py-lineno">2768</tt> <tt class="py-line"> </tt>
-<a name="L2769"></a><tt class="py-lineno">2769</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2770"></a><tt class="py-lineno">2770</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">compile</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-410" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-410', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-411" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-411', 'flags', 'link-408');">flags</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L2771"></a><tt class="py-lineno">2771</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-412" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-412', 'pattern', 'link-404');">pattern</a></tt> </tt>
-<a name="L2772"></a><tt class="py-lineno">2772</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">sre_constants</tt><tt class="py-op">.</tt><tt class="py-name">error</tt><tt class="py-op">:</tt> </tt>
-<a name="L2773"></a><tt class="py-lineno">2773</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"invalid pattern (%s) passed to Regex"</tt> <tt class="py-op">%</tt> <tt id="link-413" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-413', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> </tt>
-<a name="L2774"></a><tt class="py-lineno">2774</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2775"></a><tt class="py-lineno">2775</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L2776"></a><tt class="py-lineno">2776</tt> <tt class="py-line"> </tt>
-<a name="L2777"></a><tt class="py-lineno">2777</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt id="link-414" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-414', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> <tt id="link-415" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-415', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">.</tt><tt id="link-416" class="py-name"><a title="pyparsing.Regex.compiledREtype" class="py-name" href="#" onclick="return doclink('link-416', 'compiledREtype', 'link-401');">compiledREtype</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2778"></a><tt class="py-lineno">2778</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt id="link-417" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-417', 'pattern', 'link-404');">pattern</a></tt> </tt>
-<a name="L2779"></a><tt class="py-lineno">2779</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-418" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-418', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">=</tt> \ </tt>
-<a name="L2780"></a><tt class="py-lineno">2780</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt id="link-419" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-419', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L2781"></a><tt class="py-lineno">2781</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-420" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-420', 'flags', 'link-408');">flags</a></tt> <tt class="py-op">=</tt> <tt id="link-421" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-421', 'flags', 'link-408');">flags</a></tt> </tt>
-<a name="L2782"></a><tt class="py-lineno">2782</tt> <tt class="py-line"> </tt>
-<a name="L2783"></a><tt class="py-lineno">2783</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2784"></a><tt class="py-lineno">2784</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"Regex may only be constructed with a string or a compiled RE object"</tt><tt class="py-op">)</tt> </tt>
-<a name="L2785"></a><tt class="py-lineno">2785</tt> <tt class="py-line"> </tt>
-<a name="L2786"></a><tt class="py-lineno">2786</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2787"></a><tt class="py-lineno">2787</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2788"></a><tt class="py-lineno">2788</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2789"></a><tt class="py-lineno">2789</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L2790"></a><tt class="py-lineno">2790</tt> <tt class="py-line"> </tt>
-<a name="Regex.parseImpl"></a><div id="Regex.parseImpl-def"><a name="L2791"></a><tt class="py-lineno">2791</tt> <a class="py-toggle" href="#" id="Regex.parseImpl-toggle" onclick="return toggle('Regex.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Regex-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Regex.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Regex.parseImpl-expanded"><a name="L2792"></a><tt class="py-lineno">2792</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt id="link-422" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-422', 'match', 'link-352');">match</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L2793"></a><tt class="py-lineno">2793</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">result</tt><tt class="py-op">:</tt> </tt>
-<a name="L2794"></a><tt class="py-lineno">2794</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-423" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-423', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2795"></a><tt class="py-lineno">2795</tt> <tt class="py-line"> </tt>
-<a name="L2796"></a><tt class="py-lineno">2796</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">end</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2797"></a><tt class="py-lineno">2797</tt> <tt class="py-line"> <tt class="py-name">d</tt> <tt class="py-op">=</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">groupdict</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2798"></a><tt class="py-lineno">2798</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-424" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-424', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">group</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2799"></a><tt class="py-lineno">2799</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">d</tt><tt class="py-op">:</tt> </tt>
-<a name="L2800"></a><tt class="py-lineno">2800</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt> <tt class="py-keyword">in</tt> <tt class="py-name">d</tt><tt class="py-op">:</tt> </tt>
-<a name="L2801"></a><tt class="py-lineno">2801</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">d</tt><tt class="py-op">[</tt><tt class="py-name">k</tt><tt class="py-op">]</tt> </tt>
-<a name="L2802"></a><tt class="py-lineno">2802</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">ret</tt> </tt>
-</div><a name="L2803"></a><tt class="py-lineno">2803</tt> <tt class="py-line"> </tt>
-<a name="Regex.__str__"></a><div id="Regex.__str__-def"><a name="L2804"></a><tt class="py-lineno">2804</tt> <a class="py-toggle" href="#" id="Regex.__str__-toggle" onclick="return toggle('Regex.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Regex-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Regex.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Regex.__str__-expanded"><a name="L2805"></a><tt class="py-lineno">2805</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2806"></a><tt class="py-lineno">2806</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-425" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-425', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-426" class="py-name"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-426', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2807"></a><tt class="py-lineno">2807</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L2808"></a><tt class="py-lineno">2808</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L2809"></a><tt class="py-lineno">2809</tt> <tt class="py-line"> </tt>
-<a name="L2810"></a><tt class="py-lineno">2810</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2811"></a><tt class="py-lineno">2811</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"Re:(%s)"</tt> <tt class="py-op">%</tt> <tt class="py-name">repr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-427" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-427', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L2812"></a><tt class="py-lineno">2812</tt> <tt class="py-line"> </tt>
-<a name="L2813"></a><tt class="py-lineno">2813</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L2814"></a><tt class="py-lineno">2814</tt> <tt class="py-line"> </tt>
-<a name="QuotedString"></a><div id="QuotedString-def"><a name="L2815"></a><tt class="py-lineno">2815</tt> <tt class="py-line"> </tt>
-<a name="L2816"></a><tt class="py-lineno">2816</tt> <a class="py-toggle" href="#" id="QuotedString-toggle" onclick="return toggle('QuotedString');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.QuotedString-class.html">QuotedString</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="QuotedString-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="QuotedString-expanded"><a name="L2817"></a><tt class="py-lineno">2817</tt> <tt class="py-line"> <tt class="py-docstring">r"""</tt> </tt>
-<a name="L2818"></a><tt class="py-lineno">2818</tt> <tt class="py-line"><tt class="py-docstring"> Token for matching strings that are delimited by quoting characters.</tt> </tt>
-<a name="L2819"></a><tt class="py-lineno">2819</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L2820"></a><tt class="py-lineno">2820</tt> <tt class="py-line"><tt class="py-docstring"> Defined with the following parameters:</tt> </tt>
-<a name="L2821"></a><tt class="py-lineno">2821</tt> <tt class="py-line"><tt class="py-docstring"> - quoteChar - string of one or more characters defining the quote delimiting string</tt> </tt>
-<a name="L2822"></a><tt class="py-lineno">2822</tt> <tt class="py-line"><tt class="py-docstring"> - escChar - character to escape quotes, typically backslash (default=C{None})</tt> </tt>
-<a name="L2823"></a><tt class="py-lineno">2823</tt> <tt class="py-line"><tt class="py-docstring"> - escQuote - special quote sequence to escape an embedded quote string (such as SQL's "" to escape an embedded ") (default=C{None})</tt> </tt>
-<a name="L2824"></a><tt class="py-lineno">2824</tt> <tt class="py-line"><tt class="py-docstring"> - multiline - boolean indicating whether quotes can span multiple lines (default=C{False})</tt> </tt>
-<a name="L2825"></a><tt class="py-lineno">2825</tt> <tt class="py-line"><tt class="py-docstring"> - unquoteResults - boolean indicating whether the matched text should be unquoted (default=C{True})</tt> </tt>
-<a name="L2826"></a><tt class="py-lineno">2826</tt> <tt class="py-line"><tt class="py-docstring"> - endQuoteChar - string of one or more characters defining the end of the quote delimited string (default=C{None} => same as quoteChar)</tt> </tt>
-<a name="L2827"></a><tt class="py-lineno">2827</tt> <tt class="py-line"><tt class="py-docstring"> - convertWhitespaceEscapes - convert escaped whitespace (C{'\t'}, C{'\n'}, etc.) to actual whitespace (default=C{True})</tt> </tt>
-<a name="L2828"></a><tt class="py-lineno">2828</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2829"></a><tt class="py-lineno">2829</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2830"></a><tt class="py-lineno">2830</tt> <tt class="py-line"><tt class="py-docstring"> qs = QuotedString('"')</tt> </tt>
-<a name="L2831"></a><tt class="py-lineno">2831</tt> <tt class="py-line"><tt class="py-docstring"> print(qs.searchString('lsjdf "This is the quote" sldjf'))</tt> </tt>
-<a name="L2832"></a><tt class="py-lineno">2832</tt> <tt class="py-line"><tt class="py-docstring"> complex_qs = QuotedString('{{', endQuoteChar='}}')</tt> </tt>
-<a name="L2833"></a><tt class="py-lineno">2833</tt> <tt class="py-line"><tt class="py-docstring"> print(complex_qs.searchString('lsjdf {{This is the "quote"}} sldjf'))</tt> </tt>
-<a name="L2834"></a><tt class="py-lineno">2834</tt> <tt class="py-line"><tt class="py-docstring"> sql_qs = QuotedString('"', escQuote='""')</tt> </tt>
-<a name="L2835"></a><tt class="py-lineno">2835</tt> <tt class="py-line"><tt class="py-docstring"> print(sql_qs.searchString('lsjdf "This is the quote with ""embedded"" quotes" sldjf'))</tt> </tt>
-<a name="L2836"></a><tt class="py-lineno">2836</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L2837"></a><tt class="py-lineno">2837</tt> <tt class="py-line"><tt class="py-docstring"> [['This is the quote']]</tt> </tt>
-<a name="L2838"></a><tt class="py-lineno">2838</tt> <tt class="py-line"><tt class="py-docstring"> [['This is the "quote"']]</tt> </tt>
-<a name="L2839"></a><tt class="py-lineno">2839</tt> <tt class="py-line"><tt class="py-docstring"> [['This is the quote with "embedded" quotes']]</tt> </tt>
-<a name="L2840"></a><tt class="py-lineno">2840</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="QuotedString.__init__"></a><div id="QuotedString.__init__-def"><a name="L2841"></a><tt class="py-lineno">2841</tt> <a class="py-toggle" href="#" id="QuotedString.__init__-toggle" onclick="return toggle('QuotedString.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.QuotedString-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">quoteChar</tt><tt class="py-op">,</tt> <tt class="py-param">escChar</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">escQuote</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">multiline</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-param">unquoteResults</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">,</tt> <tt class="py-param">endQuoteChar</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">convertWhitespaceEscapes</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="QuotedString.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="QuotedString.__init__-expanded"><a name="L2842"></a><tt class="py-lineno">2842</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-428" class="py-name" targets="Class pyparsing.QuotedString=pyparsing.QuotedString-class.html"><a title="pyparsing.QuotedString" class="py-name" href="#" onclick="return doclink('link-428', 'QuotedString', 'link-428');">QuotedString</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-429" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-429', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2843"></a><tt class="py-lineno">2843</tt> <tt class="py-line"> </tt>
-<a name="L2844"></a><tt class="py-lineno">2844</tt> <tt class="py-line"> <tt class="py-comment"># remove white space from quote chars - wont work anyway</tt> </tt>
-<a name="L2845"></a><tt class="py-lineno">2845</tt> <tt class="py-line"> <tt class="py-name">quoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">quoteChar</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2846"></a><tt class="py-lineno">2846</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">quoteChar</tt><tt class="py-op">:</tt> </tt>
-<a name="L2847"></a><tt class="py-lineno">2847</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"quoteChar cannot be the empty string"</tt><tt class="py-op">,</tt><tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt><tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2848"></a><tt class="py-lineno">2848</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">SyntaxError</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2849"></a><tt class="py-lineno">2849</tt> <tt class="py-line"> </tt>
-<a name="L2850"></a><tt class="py-lineno">2850</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">endQuoteChar</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2851"></a><tt class="py-lineno">2851</tt> <tt class="py-line"> <tt class="py-name">endQuoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">quoteChar</tt> </tt>
-<a name="L2852"></a><tt class="py-lineno">2852</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2853"></a><tt class="py-lineno">2853</tt> <tt class="py-line"> <tt class="py-name">endQuoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">endQuoteChar</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2854"></a><tt class="py-lineno">2854</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">endQuoteChar</tt><tt class="py-op">:</tt> </tt>
-<a name="L2855"></a><tt class="py-lineno">2855</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"endQuoteChar cannot be the empty string"</tt><tt class="py-op">,</tt><tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt><tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2856"></a><tt class="py-lineno">2856</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">SyntaxError</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2857"></a><tt class="py-lineno">2857</tt> <tt class="py-line"> </tt>
-<a name="L2858"></a><tt class="py-lineno">2858</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">quoteChar</tt> </tt>
-<a name="L2859"></a><tt class="py-lineno">2859</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteCharLen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">quoteChar</tt><tt class="py-op">)</tt> </tt>
-<a name="L2860"></a><tt class="py-lineno">2860</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstQuoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">quoteChar</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L2861"></a><tt class="py-lineno">2861</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt> <tt class="py-op">=</tt> <tt class="py-name">endQuoteChar</tt> </tt>
-<a name="L2862"></a><tt class="py-lineno">2862</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteCharLen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt> </tt>
-<a name="L2863"></a><tt class="py-lineno">2863</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escChar</tt> <tt class="py-op">=</tt> <tt class="py-name">escChar</tt> </tt>
-<a name="L2864"></a><tt class="py-lineno">2864</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escQuote</tt> <tt class="py-op">=</tt> <tt class="py-name">escQuote</tt> </tt>
-<a name="L2865"></a><tt class="py-lineno">2865</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">unquoteResults</tt> <tt class="py-op">=</tt> <tt class="py-name">unquoteResults</tt> </tt>
-<a name="L2866"></a><tt class="py-lineno">2866</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">convertWhitespaceEscapes</tt> <tt class="py-op">=</tt> <tt class="py-name">convertWhitespaceEscapes</tt> </tt>
-<a name="L2867"></a><tt class="py-lineno">2867</tt> <tt class="py-line"> </tt>
-<a name="L2868"></a><tt class="py-lineno">2868</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">multiline</tt><tt class="py-op">:</tt> </tt>
-<a name="L2869"></a><tt class="py-lineno">2869</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-430" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-430', 'flags', 'link-408');">flags</a></tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">MULTILINE</tt> <tt class="py-op">|</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">DOTALL</tt> </tt>
-<a name="L2870"></a><tt class="py-lineno">2870</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-431" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-431', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">=</tt> <tt class="py-string">r'%s(?:[^%s%s]'</tt> <tt class="py-op">%</tt> \ </tt>
-<a name="L2871"></a><tt class="py-lineno">2871</tt> <tt class="py-line"> <tt class="py-op">(</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteChar</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2872"></a><tt class="py-lineno">2872</tt> <tt class="py-line"> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2873"></a><tt class="py-lineno">2873</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">escChar</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">escChar</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-string">''</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2874"></a><tt class="py-lineno">2874</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2875"></a><tt class="py-lineno">2875</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-432" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-432', 'flags', 'link-408');">flags</a></tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L2876"></a><tt class="py-lineno">2876</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-433" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-433', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">=</tt> <tt class="py-string">r'%s(?:[^%s\n\r%s]'</tt> <tt class="py-op">%</tt> \ </tt>
-<a name="L2877"></a><tt class="py-lineno">2877</tt> <tt class="py-line"> <tt class="py-op">(</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteChar</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2878"></a><tt class="py-lineno">2878</tt> <tt class="py-line"> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2879"></a><tt class="py-lineno">2879</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">escChar</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">escChar</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-string">''</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2880"></a><tt class="py-lineno">2880</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L2881"></a><tt class="py-lineno">2881</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-434" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-434', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">+=</tt> <tt class="py-op">(</tt> </tt>
-<a name="L2882"></a><tt class="py-lineno">2882</tt> <tt class="py-line"> <tt class="py-string">'|(?:'</tt> <tt class="py-op">+</tt> <tt class="py-string">')|(?:'</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-string">"%s[^%s]"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-name">i</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> </tt>
-<a name="L2883"></a><tt class="py-lineno">2883</tt> <tt class="py-line"> <tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2884"></a><tt class="py-lineno">2884</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt> <tt class="py-keyword">in</tt> <tt class="py-name">range</tt><tt class="py-op">(</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">')'</tt> </tt>
-<a name="L2885"></a><tt class="py-lineno">2885</tt> <tt class="py-line"> <tt class="py-op">)</tt> </tt>
-<a name="L2886"></a><tt class="py-lineno">2886</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">escQuote</tt><tt class="py-op">:</tt> </tt>
-<a name="L2887"></a><tt class="py-lineno">2887</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-435" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-435', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">+=</tt> <tt class="py-op">(</tt><tt class="py-string">r'|(?:%s)'</tt> <tt class="py-op">%</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">escQuote</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2888"></a><tt class="py-lineno">2888</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">escChar</tt><tt class="py-op">:</tt> </tt>
-<a name="L2889"></a><tt class="py-lineno">2889</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-436" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-436', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">+=</tt> <tt class="py-op">(</tt><tt class="py-string">r'|(?:%s.)'</tt> <tt class="py-op">%</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">escChar</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2890"></a><tt class="py-lineno">2890</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escCharReplacePattern</tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escChar</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">"(.)"</tt> </tt>
-<a name="L2891"></a><tt class="py-lineno">2891</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-437" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-437', 'pattern', 'link-404');">pattern</a></tt> <tt class="py-op">+=</tt> <tt class="py-op">(</tt><tt class="py-string">r')*%s'</tt> <tt class="py-op">%</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L2892"></a><tt class="py-lineno">2892</tt> <tt class="py-line"> </tt>
-<a name="L2893"></a><tt class="py-lineno">2893</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2894"></a><tt class="py-lineno">2894</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">compile</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-438" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-438', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-439" class="py-name"><a title="pyparsing.Regex.compiledREtype.flags" class="py-name" href="#" onclick="return doclink('link-439', 'flags', 'link-408');">flags</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L2895"></a><tt class="py-lineno">2895</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">reString</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-440" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-440', 'pattern', 'link-404');">pattern</a></tt> </tt>
-<a name="L2896"></a><tt class="py-lineno">2896</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">sre_constants</tt><tt class="py-op">.</tt><tt class="py-name">error</tt><tt class="py-op">:</tt> </tt>
-<a name="L2897"></a><tt class="py-lineno">2897</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"invalid pattern (%s) passed to Regex"</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-441" class="py-name"><a title="pyparsing.Regex.compiledREtype.pattern" class="py-name" href="#" onclick="return doclink('link-441', 'pattern', 'link-404');">pattern</a></tt><tt class="py-op">,</tt> </tt>
-<a name="L2898"></a><tt class="py-lineno">2898</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L2899"></a><tt class="py-lineno">2899</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L2900"></a><tt class="py-lineno">2900</tt> <tt class="py-line"> </tt>
-<a name="L2901"></a><tt class="py-lineno">2901</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2902"></a><tt class="py-lineno">2902</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2903"></a><tt class="py-lineno">2903</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2904"></a><tt class="py-lineno">2904</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L2905"></a><tt class="py-lineno">2905</tt> <tt class="py-line"> </tt>
-<a name="QuotedString.parseImpl"></a><div id="QuotedString.parseImpl-def"><a name="L2906"></a><tt class="py-lineno">2906</tt> <a class="py-toggle" href="#" id="QuotedString.parseImpl-toggle" onclick="return toggle('QuotedString.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.QuotedString-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="QuotedString.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="QuotedString.parseImpl-expanded"><a name="L2907"></a><tt class="py-lineno">2907</tt> <tt class="py-line"> <tt class="py-name">result</tt> <tt class="py-op">=</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">firstQuoteChar</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt id="link-442" class="py-name"><a title="pyparsing.Regex.compiledREtype.match" class="py-name" href="#" onclick="return doclink('link-442', 'match', 'link-352');">match</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt class="py-name">None</tt> </tt>
-<a name="L2908"></a><tt class="py-lineno">2908</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">result</tt><tt class="py-op">:</tt> </tt>
-<a name="L2909"></a><tt class="py-lineno">2909</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-443" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-443', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2910"></a><tt class="py-lineno">2910</tt> <tt class="py-line"> </tt>
-<a name="L2911"></a><tt class="py-lineno">2911</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">end</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2912"></a><tt class="py-lineno">2912</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">result</tt><tt class="py-op">.</tt><tt class="py-name">group</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2913"></a><tt class="py-lineno">2913</tt> <tt class="py-line"> </tt>
-<a name="L2914"></a><tt class="py-lineno">2914</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">unquoteResults</tt><tt class="py-op">:</tt> </tt>
-<a name="L2915"></a><tt class="py-lineno">2915</tt> <tt class="py-line"> </tt>
-<a name="L2916"></a><tt class="py-lineno">2916</tt> <tt class="py-line"> <tt class="py-comment"># strip off quotes</tt> </tt>
-<a name="L2917"></a><tt class="py-lineno">2917</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">ret</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteCharLen</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteCharLen</tt><tt class="py-op">]</tt> </tt>
-<a name="L2918"></a><tt class="py-lineno">2918</tt> <tt class="py-line"> </tt>
-<a name="L2919"></a><tt class="py-lineno">2919</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">ret</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2920"></a><tt class="py-lineno">2920</tt> <tt class="py-line"> <tt class="py-comment"># replace escaped whitespace</tt> </tt>
-<a name="L2921"></a><tt class="py-lineno">2921</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-string">'\\'</tt> <tt class="py-keyword">in</tt> <tt class="py-name">ret</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">convertWhitespaceEscapes</tt><tt class="py-op">:</tt> </tt>
-<a name="L2922"></a><tt class="py-lineno">2922</tt> <tt class="py-line"> <tt class="py-name">ws_map</tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt> </tt>
-<a name="L2923"></a><tt class="py-lineno">2923</tt> <tt class="py-line"> <tt class="py-string">r'\t'</tt> <tt class="py-op">:</tt> <tt class="py-string">'\t'</tt><tt class="py-op">,</tt> </tt>
-<a name="L2924"></a><tt class="py-lineno">2924</tt> <tt class="py-line"> <tt class="py-string">r'\n'</tt> <tt class="py-op">:</tt> <tt class="py-string">'\n'</tt><tt class="py-op">,</tt> </tt>
-<a name="L2925"></a><tt class="py-lineno">2925</tt> <tt class="py-line"> <tt class="py-string">r'\f'</tt> <tt class="py-op">:</tt> <tt class="py-string">'\f'</tt><tt class="py-op">,</tt> </tt>
-<a name="L2926"></a><tt class="py-lineno">2926</tt> <tt class="py-line"> <tt class="py-string">r'\r'</tt> <tt class="py-op">:</tt> <tt class="py-string">'\r'</tt><tt class="py-op">,</tt> </tt>
-<a name="L2927"></a><tt class="py-lineno">2927</tt> <tt class="py-line"> <tt class="py-op">}</tt> </tt>
-<a name="L2928"></a><tt class="py-lineno">2928</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">wslit</tt><tt class="py-op">,</tt><tt class="py-name">wschar</tt> <tt class="py-keyword">in</tt> <tt class="py-name">ws_map</tt><tt class="py-op">.</tt><tt id="link-444" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-444', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L2929"></a><tt class="py-lineno">2929</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-name">wslit</tt><tt class="py-op">,</tt> <tt class="py-name">wschar</tt><tt class="py-op">)</tt> </tt>
-<a name="L2930"></a><tt class="py-lineno">2930</tt> <tt class="py-line"> </tt>
-<a name="L2931"></a><tt class="py-lineno">2931</tt> <tt class="py-line"> <tt class="py-comment"># replace escaped characters</tt> </tt>
-<a name="L2932"></a><tt class="py-lineno">2932</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escChar</tt><tt class="py-op">:</tt> </tt>
-<a name="L2933"></a><tt class="py-lineno">2933</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt id="link-445" class="py-name"><a title="pyparsing.Regex.compiledREtype.sub" class="py-name" href="#" onclick="return doclink('link-445', 'sub', 'link-44');">sub</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escCharReplacePattern</tt><tt class="py-op">,</tt> <tt class="py-string">r"\g<1>"</tt><tt class="py-op">,</tt> <tt class="py-name">ret</tt><tt class="py-op">)</tt> </tt>
-<a name="L2934"></a><tt class="py-lineno">2934</tt> <tt class="py-line"> </tt>
-<a name="L2935"></a><tt class="py-lineno">2935</tt> <tt class="py-line"> <tt class="py-comment"># replace escaped quotes</tt> </tt>
-<a name="L2936"></a><tt class="py-lineno">2936</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escQuote</tt><tt class="py-op">:</tt> </tt>
-<a name="L2937"></a><tt class="py-lineno">2937</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">escQuote</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt> </tt>
-<a name="L2938"></a><tt class="py-lineno">2938</tt> <tt class="py-line"> </tt>
-<a name="L2939"></a><tt class="py-lineno">2939</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L2940"></a><tt class="py-lineno">2940</tt> <tt class="py-line"> </tt>
-<a name="QuotedString.__str__"></a><div id="QuotedString.__str__-def"><a name="L2941"></a><tt class="py-lineno">2941</tt> <a class="py-toggle" href="#" id="QuotedString.__str__-toggle" onclick="return toggle('QuotedString.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.QuotedString-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="QuotedString.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="QuotedString.__str__-expanded"><a name="L2942"></a><tt class="py-lineno">2942</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L2943"></a><tt class="py-lineno">2943</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-446" class="py-name"><a title="pyparsing.QuotedString" class="py-name" href="#" onclick="return doclink('link-446', 'QuotedString', 'link-428');">QuotedString</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-447" class="py-name"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-447', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2944"></a><tt class="py-lineno">2944</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L2945"></a><tt class="py-lineno">2945</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L2946"></a><tt class="py-lineno">2946</tt> <tt class="py-line"> </tt>
-<a name="L2947"></a><tt class="py-lineno">2947</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L2948"></a><tt class="py-lineno">2948</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"quoted string, starting with %s ending with %s"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">quoteChar</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">endQuoteChar</tt><tt class="py-op">)</tt> </tt>
-<a name="L2949"></a><tt class="py-lineno">2949</tt> <tt class="py-line"> </tt>
-<a name="L2950"></a><tt class="py-lineno">2950</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L2951"></a><tt class="py-lineno">2951</tt> <tt class="py-line"> </tt>
-<a name="CharsNotIn"></a><div id="CharsNotIn-def"><a name="L2952"></a><tt class="py-lineno">2952</tt> <tt class="py-line"> </tt>
-<a name="L2953"></a><tt class="py-lineno">2953</tt> <a class="py-toggle" href="#" id="CharsNotIn-toggle" onclick="return toggle('CharsNotIn');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.CharsNotIn-class.html">CharsNotIn</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CharsNotIn-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="CharsNotIn-expanded"><a name="L2954"></a><tt class="py-lineno">2954</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L2955"></a><tt class="py-lineno">2955</tt> <tt class="py-line"><tt class="py-docstring"> Token for matching words composed of characters I{not} in a given set (will</tt> </tt>
-<a name="L2956"></a><tt class="py-lineno">2956</tt> <tt class="py-line"><tt class="py-docstring"> include whitespace in matched characters if not listed in the provided exclusion set - see example).</tt> </tt>
-<a name="L2957"></a><tt class="py-lineno">2957</tt> <tt class="py-line"><tt class="py-docstring"> Defined with string containing all disallowed characters, and an optional</tt> </tt>
-<a name="L2958"></a><tt class="py-lineno">2958</tt> <tt class="py-line"><tt class="py-docstring"> minimum, maximum, and/or exact length. The default value for C{min} is 1 (a</tt> </tt>
-<a name="L2959"></a><tt class="py-lineno">2959</tt> <tt class="py-line"><tt class="py-docstring"> minimum value < 1 is not valid); the default values for C{max} and C{exact}</tt> </tt>
-<a name="L2960"></a><tt class="py-lineno">2960</tt> <tt class="py-line"><tt class="py-docstring"> are 0, meaning no maximum or exact length restriction.</tt> </tt>
-<a name="L2961"></a><tt class="py-lineno">2961</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L2962"></a><tt class="py-lineno">2962</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L2963"></a><tt class="py-lineno">2963</tt> <tt class="py-line"><tt class="py-docstring"> # define a comma-separated-value as anything that is not a ','</tt> </tt>
-<a name="L2964"></a><tt class="py-lineno">2964</tt> <tt class="py-line"><tt class="py-docstring"> csv_value = CharsNotIn(',')</tt> </tt>
-<a name="L2965"></a><tt class="py-lineno">2965</tt> <tt class="py-line"><tt class="py-docstring"> print(delimitedList(csv_value).parseString("dkls,lsdkjf,s12 34,@!#,213"))</tt> </tt>
-<a name="L2966"></a><tt class="py-lineno">2966</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L2967"></a><tt class="py-lineno">2967</tt> <tt class="py-line"><tt class="py-docstring"> ['dkls', 'lsdkjf', 's12 34', '@!#', '213']</tt> </tt>
-<a name="L2968"></a><tt class="py-lineno">2968</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="CharsNotIn.__init__"></a><div id="CharsNotIn.__init__-def"><a name="L2969"></a><tt class="py-lineno">2969</tt> <a class="py-toggle" href="#" id="CharsNotIn.__init__-toggle" onclick="return toggle('CharsNotIn.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CharsNotIn-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">notChars</tt><tt class="py-op">,</tt> <tt class="py-param">min</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-param">max</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">exact</tt><tt class="py-op">=</tt><tt class="py-number">0</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CharsNotIn.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CharsNotIn.__init__-expanded"><a name="L2970"></a><tt class="py-lineno">2970</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-448" class="py-name" targets="Class pyparsing.CharsNotIn=pyparsing.CharsNotIn-class.html"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-448', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-449" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-449', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L2971"></a><tt class="py-lineno">2971</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L2972"></a><tt class="py-lineno">2972</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt> <tt class="py-op">=</tt> <tt class="py-name">notChars</tt> </tt>
-<a name="L2973"></a><tt class="py-lineno">2973</tt> <tt class="py-line"> </tt>
-<a name="L2974"></a><tt class="py-lineno">2974</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">min</tt> <tt class="py-op"><</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L2975"></a><tt class="py-lineno">2975</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"cannot specify a minimum length < 1; use Optional(CharsNotIn()) if zero-length char group is permitted"</tt><tt class="py-op">)</tt> </tt>
-<a name="L2976"></a><tt class="py-lineno">2976</tt> <tt class="py-line"> </tt>
-<a name="L2977"></a><tt class="py-lineno">2977</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt> </tt>
-<a name="L2978"></a><tt class="py-lineno">2978</tt> <tt class="py-line"> </tt>
-<a name="L2979"></a><tt class="py-lineno">2979</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">max</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L2980"></a><tt class="py-lineno">2980</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">max</tt> </tt>
-<a name="L2981"></a><tt class="py-lineno">2981</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L2982"></a><tt class="py-lineno">2982</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt id="link-450" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-450', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> </tt>
-<a name="L2983"></a><tt class="py-lineno">2983</tt> <tt class="py-line"> </tt>
-<a name="L2984"></a><tt class="py-lineno">2984</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">exact</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L2985"></a><tt class="py-lineno">2985</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-<a name="L2986"></a><tt class="py-lineno">2986</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-<a name="L2987"></a><tt class="py-lineno">2987</tt> <tt class="py-line"> </tt>
-<a name="L2988"></a><tt class="py-lineno">2988</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2989"></a><tt class="py-lineno">2989</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L2990"></a><tt class="py-lineno">2990</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt> <tt class="py-op">)</tt> </tt>
-<a name="L2991"></a><tt class="py-lineno">2991</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L2992"></a><tt class="py-lineno">2992</tt> <tt class="py-line"> </tt>
-<a name="CharsNotIn.parseImpl"></a><div id="CharsNotIn.parseImpl-def"><a name="L2993"></a><tt class="py-lineno">2993</tt> <a class="py-toggle" href="#" id="CharsNotIn.parseImpl-toggle" onclick="return toggle('CharsNotIn.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CharsNotIn-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CharsNotIn.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CharsNotIn.parseImpl-expanded"><a name="L2994"></a><tt class="py-lineno">2994</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt><tt class="py-op">:</tt> </tt>
-<a name="L2995"></a><tt class="py-lineno">2995</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-451" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-451', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L2996"></a><tt class="py-lineno">2996</tt> <tt class="py-line"> </tt>
-<a name="L2997"></a><tt class="py-lineno">2997</tt> <tt class="py-line"> <tt class="py-name">start</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L2998"></a><tt class="py-lineno">2998</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L2999"></a><tt class="py-lineno">2999</tt> <tt class="py-line"> <tt class="py-name">notchars</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt> </tt>
-<a name="L3000"></a><tt class="py-lineno">3000</tt> <tt class="py-line"> <tt class="py-name">maxlen</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt><tt class="py-op">(</tt> <tt class="py-name">start</tt><tt class="py-op">+</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3001"></a><tt class="py-lineno">3001</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">maxlen</tt> <tt class="py-keyword">and</tt> \ </tt>
-<a name="L3002"></a><tt class="py-lineno">3002</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">notchars</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3003"></a><tt class="py-lineno">3003</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L3004"></a><tt class="py-lineno">3004</tt> <tt class="py-line"> </tt>
-<a name="L3005"></a><tt class="py-lineno">3005</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">-</tt> <tt class="py-name">start</tt> <tt class="py-op"><</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt><tt class="py-op">:</tt> </tt>
-<a name="L3006"></a><tt class="py-lineno">3006</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-452" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-452', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3007"></a><tt class="py-lineno">3007</tt> <tt class="py-line"> </tt>
-<a name="L3008"></a><tt class="py-lineno">3008</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">start</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L3009"></a><tt class="py-lineno">3009</tt> <tt class="py-line"> </tt>
-<a name="CharsNotIn.__str__"></a><div id="CharsNotIn.__str__-def"><a name="L3010"></a><tt class="py-lineno">3010</tt> <a class="py-toggle" href="#" id="CharsNotIn.__str__-toggle" onclick="return toggle('CharsNotIn.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.CharsNotIn-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="CharsNotIn.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="CharsNotIn.__str__-expanded"><a name="L3011"></a><tt class="py-lineno">3011</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3012"></a><tt class="py-lineno">3012</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-453" class="py-name"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-453', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-454" class="py-name"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-454', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3013"></a><tt class="py-lineno">3013</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L3014"></a><tt class="py-lineno">3014</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L3015"></a><tt class="py-lineno">3015</tt> <tt class="py-line"> </tt>
-<a name="L3016"></a><tt class="py-lineno">3016</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3017"></a><tt class="py-lineno">3017</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-number">4</tt><tt class="py-op">:</tt> </tt>
-<a name="L3018"></a><tt class="py-lineno">3018</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"!W:(%s...)"</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">4</tt><tt class="py-op">]</tt> </tt>
-<a name="L3019"></a><tt class="py-lineno">3019</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3020"></a><tt class="py-lineno">3020</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"!W:(%s)"</tt> <tt class="py-op">%</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">notChars</tt> </tt>
-<a name="L3021"></a><tt class="py-lineno">3021</tt> <tt class="py-line"> </tt>
-<a name="L3022"></a><tt class="py-lineno">3022</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3023"></a><tt class="py-lineno">3023</tt> <tt class="py-line"> </tt>
-<a name="White"></a><div id="White-def"><a name="L3024"></a><tt class="py-lineno">3024</tt> <a class="py-toggle" href="#" id="White-toggle" onclick="return toggle('White');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.White-class.html">White</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="White-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="White-expanded"><a name="L3025"></a><tt class="py-lineno">3025</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3026"></a><tt class="py-lineno">3026</tt> <tt class="py-line"><tt class="py-docstring"> Special matching class for matching whitespace. Normally, whitespace is ignored</tt> </tt>
-<a name="L3027"></a><tt class="py-lineno">3027</tt> <tt class="py-line"><tt class="py-docstring"> by pyparsing grammars. This class is included when some whitespace structures</tt> </tt>
-<a name="L3028"></a><tt class="py-lineno">3028</tt> <tt class="py-line"><tt class="py-docstring"> are significant. Define with a string containing the whitespace characters to be</tt> </tt>
-<a name="L3029"></a><tt class="py-lineno">3029</tt> <tt class="py-line"><tt class="py-docstring"> matched; default is C{" \\t\\r\\n"}. Also takes optional C{min}, C{max}, and C{exact} arguments,</tt> </tt>
-<a name="L3030"></a><tt class="py-lineno">3030</tt> <tt class="py-line"><tt class="py-docstring"> as defined for the C{L{Word}} class.</tt> </tt>
-<a name="L3031"></a><tt class="py-lineno">3031</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L3032"></a><tt class="py-lineno">3032</tt> <tt class="py-line"> <tt id="link-455" class="py-name" targets="Variable pyparsing.White.whiteStrs=pyparsing.White-class.html#whiteStrs"><a title="pyparsing.White.whiteStrs" class="py-name" href="#" onclick="return doclink('link-455', 'whiteStrs', 'link-455');">whiteStrs</a></tt> <tt class="py-op">=</tt> <tt class="py-op">{</tt> </tt>
-<a name="L3033"></a><tt class="py-lineno">3033</tt> <tt class="py-line"> <tt class="py-string">" "</tt> <tt class="py-op">:</tt> <tt class="py-string">"<SPC>"</tt><tt class="py-op">,</tt> </tt>
-<a name="L3034"></a><tt class="py-lineno">3034</tt> <tt class="py-line"> <tt class="py-string">"\t"</tt><tt class="py-op">:</tt> <tt class="py-string">"<TAB>"</tt><tt class="py-op">,</tt> </tt>
-<a name="L3035"></a><tt class="py-lineno">3035</tt> <tt class="py-line"> <tt class="py-string">"\n"</tt><tt class="py-op">:</tt> <tt class="py-string">"<LF>"</tt><tt class="py-op">,</tt> </tt>
-<a name="L3036"></a><tt class="py-lineno">3036</tt> <tt class="py-line"> <tt class="py-string">"\r"</tt><tt class="py-op">:</tt> <tt class="py-string">"<CR>"</tt><tt class="py-op">,</tt> </tt>
-<a name="L3037"></a><tt class="py-lineno">3037</tt> <tt class="py-line"> <tt class="py-string">"\f"</tt><tt class="py-op">:</tt> <tt class="py-string">"<FF>"</tt><tt class="py-op">,</tt> </tt>
-<a name="L3038"></a><tt class="py-lineno">3038</tt> <tt class="py-line"> <tt class="py-op">}</tt> </tt>
-<a name="White.__init__"></a><div id="White.__init__-def"><a name="L3039"></a><tt class="py-lineno">3039</tt> <a class="py-toggle" href="#" id="White.__init__-toggle" onclick="return toggle('White.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.White-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">ws</tt><tt class="py-op">=</tt><tt class="py-string">" \t\r\n"</tt><tt class="py-op">,</tt> <tt class="py-param">min</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-param">max</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">,</tt> <tt class="py-param">exact</tt><tt class="py-op">=</tt><tt class="py-number">0</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="White.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="White.__init__-expanded"><a name="L3040"></a><tt class="py-lineno">3040</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-456" class="py-name" targets="Class pyparsing.White=pyparsing.White-class.html"><a title="pyparsing.White" class="py-name" href="#" onclick="return doclink('link-456', 'White', 'link-456');">White</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-457" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-457', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3041"></a><tt class="py-lineno">3041</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchWhite</tt> <tt class="py-op">=</tt> <tt class="py-name">ws</tt> </tt>
-<a name="L3042"></a><tt class="py-lineno">3042</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-458" class="py-name" targets="Method pyparsing.ParserElement.setWhitespaceChars()=pyparsing.ParserElement-class.html#setWhitespaceChars"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-458', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">c</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-keyword">if</tt> <tt class="py-name">c</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchWhite</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3043"></a><tt class="py-lineno">3043</tt> <tt class="py-line"> <tt class="py-comment">#~ self.leaveWhitespace()</tt> </tt>
-<a name="L3044"></a><tt class="py-lineno">3044</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt id="link-459" class="py-name"><a title="pyparsing.White" class="py-name" href="#" onclick="return doclink('link-459', 'White', 'link-456');">White</a></tt><tt class="py-op">.</tt><tt id="link-460" class="py-name"><a title="pyparsing.White.whiteStrs" class="py-name" href="#" onclick="return doclink('link-460', 'whiteStrs', 'link-455');">whiteStrs</a></tt><tt class="py-op">[</tt><tt class="py-name">c</tt><tt class="py-op">]</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchWhite</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3045"></a><tt class="py-lineno">3045</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3046"></a><tt class="py-lineno">3046</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3047"></a><tt class="py-lineno">3047</tt> <tt class="py-line"> </tt>
-<a name="L3048"></a><tt class="py-lineno">3048</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt> </tt>
-<a name="L3049"></a><tt class="py-lineno">3049</tt> <tt class="py-line"> </tt>
-<a name="L3050"></a><tt class="py-lineno">3050</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">max</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L3051"></a><tt class="py-lineno">3051</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">max</tt> </tt>
-<a name="L3052"></a><tt class="py-lineno">3052</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3053"></a><tt class="py-lineno">3053</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt id="link-461" class="py-name"><a title="pyparsing._MAX_INT" class="py-name" href="#" onclick="return doclink('link-461', '_MAX_INT', 'link-8');">_MAX_INT</a></tt> </tt>
-<a name="L3054"></a><tt class="py-lineno">3054</tt> <tt class="py-line"> </tt>
-<a name="L3055"></a><tt class="py-lineno">3055</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">exact</tt> <tt class="py-op">></tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L3056"></a><tt class="py-lineno">3056</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-<a name="L3057"></a><tt class="py-lineno">3057</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt> <tt class="py-op">=</tt> <tt class="py-name">exact</tt> </tt>
-</div><a name="L3058"></a><tt class="py-lineno">3058</tt> <tt class="py-line"> </tt>
-<a name="White.parseImpl"></a><div id="White.parseImpl-def"><a name="L3059"></a><tt class="py-lineno">3059</tt> <a class="py-toggle" href="#" id="White.parseImpl-toggle" onclick="return toggle('White.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.White-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="White.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="White.parseImpl-expanded"><a name="L3060"></a><tt class="py-lineno">3060</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt> <tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchWhite</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3061"></a><tt class="py-lineno">3061</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-462" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-462', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3062"></a><tt class="py-lineno">3062</tt> <tt class="py-line"> <tt class="py-name">start</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L3063"></a><tt class="py-lineno">3063</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L3064"></a><tt class="py-lineno">3064</tt> <tt class="py-line"> <tt class="py-name">maxloc</tt> <tt class="py-op">=</tt> <tt class="py-name">start</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">maxLen</tt> </tt>
-<a name="L3065"></a><tt class="py-lineno">3065</tt> <tt class="py-line"> <tt class="py-name">maxloc</tt> <tt class="py-op">=</tt> <tt class="py-name">min</tt><tt class="py-op">(</tt> <tt class="py-name">maxloc</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3066"></a><tt class="py-lineno">3066</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">maxloc</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">matchWhite</tt><tt class="py-op">:</tt> </tt>
-<a name="L3067"></a><tt class="py-lineno">3067</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L3068"></a><tt class="py-lineno">3068</tt> <tt class="py-line"> </tt>
-<a name="L3069"></a><tt class="py-lineno">3069</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">-</tt> <tt class="py-name">start</tt> <tt class="py-op"><</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">minLen</tt><tt class="py-op">:</tt> </tt>
-<a name="L3070"></a><tt class="py-lineno">3070</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-463" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-463', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3071"></a><tt class="py-lineno">3071</tt> <tt class="py-line"> </tt>
-<a name="L3072"></a><tt class="py-lineno">3072</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">start</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> </tt>
-</div></div><a name="L3073"></a><tt class="py-lineno">3073</tt> <tt class="py-line"> </tt>
-<a name="_PositionToken"></a><div id="_PositionToken-def"><a name="L3074"></a><tt class="py-lineno">3074</tt> <tt class="py-line"> </tt>
-<a name="L3075"></a><tt class="py-lineno">3075</tt> <a class="py-toggle" href="#" id="_PositionToken-toggle" onclick="return toggle('_PositionToken');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._PositionToken-class.html">_PositionToken</a><tt class="py-op">(</tt><tt class="py-base-class">Token</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_PositionToken-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_PositionToken-expanded"><a name="_PositionToken.__init__"></a><div id="_PositionToken.__init__-def"><a name="L3076"></a><tt class="py-lineno">3076</tt> <a class="py-toggle" href="#" id="_PositionToken.__init__-toggle" onclick="return toggle('_PositionToken.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._PositionToken-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_PositionToken.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_PositionToken.__init__-expanded"><a name="L3077"></a><tt class="py-lineno">3077</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt class="py-name">_PositionToken</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-464" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-464', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3078"></a><tt class="py-lineno">3078</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> </tt>
-<a name="L3079"></a><tt class="py-lineno">3079</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3080"></a><tt class="py-lineno">3080</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div></div><a name="L3081"></a><tt class="py-lineno">3081</tt> <tt class="py-line"> </tt>
-<a name="GoToColumn"></a><div id="GoToColumn-def"><a name="L3082"></a><tt class="py-lineno">3082</tt> <a class="py-toggle" href="#" id="GoToColumn-toggle" onclick="return toggle('GoToColumn');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.GoToColumn-class.html">GoToColumn</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="GoToColumn-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="GoToColumn-expanded"><a name="L3083"></a><tt class="py-lineno">3083</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3084"></a><tt class="py-lineno">3084</tt> <tt class="py-line"><tt class="py-docstring"> Token to advance to a specific column of input text; useful for tabular report scraping.</tt> </tt>
-<a name="L3085"></a><tt class="py-lineno">3085</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="GoToColumn.__init__"></a><div id="GoToColumn.__init__-def"><a name="L3086"></a><tt class="py-lineno">3086</tt> <a class="py-toggle" href="#" id="GoToColumn.__init__-toggle" onclick="return toggle('GoToColumn.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.GoToColumn-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">colno</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="GoToColumn.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="GoToColumn.__init__-expanded"><a name="L3087"></a><tt class="py-lineno">3087</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-465" class="py-name" targets="Class pyparsing.GoToColumn=pyparsing.GoToColumn-class.html"><a title="pyparsing.GoToColumn" class="py-name" href="#" onclick="return doclink('link-465', 'GoToColumn', 'link-465');">GoToColumn</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-466" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-466', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3088"></a><tt class="py-lineno">3088</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-467" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-467', 'col', 'link-31');">col</a></tt> <tt class="py-op">=</tt> <tt class="py-name">colno</tt> </tt>
-</div><a name="L3089"></a><tt class="py-lineno">3089</tt> <tt class="py-line"> </tt>
-<a name="GoToColumn.preParse"></a><div id="GoToColumn.preParse-def"><a name="L3090"></a><tt class="py-lineno">3090</tt> <a class="py-toggle" href="#" id="GoToColumn.preParse-toggle" onclick="return toggle('GoToColumn.preParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.GoToColumn-class.html#preParse">preParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="GoToColumn.preParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="GoToColumn.preParse-expanded"><a name="L3091"></a><tt class="py-lineno">3091</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-468" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-468', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">!=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-469" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-469', 'col', 'link-31');">col</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3092"></a><tt class="py-lineno">3092</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L3093"></a><tt class="py-lineno">3093</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3094"></a><tt class="py-lineno">3094</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_skipIgnorables</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3095"></a><tt class="py-lineno">3095</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">instrlen</tt> <tt class="py-keyword">and</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">isspace</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt id="link-470" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-470', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt> <tt class="py-op">)</tt> <tt class="py-op">!=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-471" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-471', 'col', 'link-31');">col</a></tt> <tt class="py-op">:</tt> </tt>
-<a name="L3096"></a><tt class="py-lineno">3096</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L3097"></a><tt class="py-lineno">3097</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt> </tt>
-</div><a name="L3098"></a><tt class="py-lineno">3098</tt> <tt class="py-line"> </tt>
-<a name="GoToColumn.parseImpl"></a><div id="GoToColumn.parseImpl-def"><a name="L3099"></a><tt class="py-lineno">3099</tt> <a class="py-toggle" href="#" id="GoToColumn.parseImpl-toggle" onclick="return toggle('GoToColumn.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.GoToColumn-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="GoToColumn.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="GoToColumn.parseImpl-expanded"><a name="L3100"></a><tt class="py-lineno">3100</tt> <tt class="py-line"> <tt class="py-name">thiscol</tt> <tt class="py-op">=</tt> <tt id="link-472" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-472', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3101"></a><tt class="py-lineno">3101</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">thiscol</tt> <tt class="py-op">></tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-473" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-473', 'col', 'link-31');">col</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3102"></a><tt class="py-lineno">3102</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-474" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-474', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-string">"Text not in expected column"</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3103"></a><tt class="py-lineno">3103</tt> <tt class="py-line"> <tt class="py-name">newloc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-475" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-475', 'col', 'link-31');">col</a></tt> <tt class="py-op">-</tt> <tt class="py-name">thiscol</tt> </tt>
-<a name="L3104"></a><tt class="py-lineno">3104</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt> <tt class="py-name">loc</tt><tt class="py-op">:</tt> <tt class="py-name">newloc</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3105"></a><tt class="py-lineno">3105</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">newloc</tt><tt class="py-op">,</tt> <tt class="py-name">ret</tt> </tt>
-</div></div><a name="L3106"></a><tt class="py-lineno">3106</tt> <tt class="py-line"> </tt>
-<a name="LineStart"></a><div id="LineStart-def"><a name="L3107"></a><tt class="py-lineno">3107</tt> <tt class="py-line"> </tt>
-<a name="L3108"></a><tt class="py-lineno">3108</tt> <a class="py-toggle" href="#" id="LineStart-toggle" onclick="return toggle('LineStart');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.LineStart-class.html">LineStart</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineStart-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="LineStart-expanded"><a name="L3109"></a><tt class="py-lineno">3109</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3110"></a><tt class="py-lineno">3110</tt> <tt class="py-line"><tt class="py-docstring"> Matches if current position is at the beginning of a line within the parse string</tt> </tt>
-<a name="L3111"></a><tt class="py-lineno">3111</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3112"></a><tt class="py-lineno">3112</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3113"></a><tt class="py-lineno">3113</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3114"></a><tt class="py-lineno">3114</tt> <tt class="py-line"><tt class="py-docstring"> test = '''\</tt> </tt>
-<a name="L3115"></a><tt class="py-lineno">3115</tt> <tt class="py-line"><tt class="py-docstring"> AAA this line</tt> </tt>
-<a name="L3116"></a><tt class="py-lineno">3116</tt> <tt class="py-line"><tt class="py-docstring"> AAA and this line</tt> </tt>
-<a name="L3117"></a><tt class="py-lineno">3117</tt> <tt class="py-line"><tt class="py-docstring"> AAA but not this one</tt> </tt>
-<a name="L3118"></a><tt class="py-lineno">3118</tt> <tt class="py-line"><tt class="py-docstring"> B AAA and definitely not this one</tt> </tt>
-<a name="L3119"></a><tt class="py-lineno">3119</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L3120"></a><tt class="py-lineno">3120</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3121"></a><tt class="py-lineno">3121</tt> <tt class="py-line"><tt class="py-docstring"> for t in (LineStart() + 'AAA' + restOfLine).searchString(test):</tt> </tt>
-<a name="L3122"></a><tt class="py-lineno">3122</tt> <tt class="py-line"><tt class="py-docstring"> print(t)</tt> </tt>
-<a name="L3123"></a><tt class="py-lineno">3123</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3124"></a><tt class="py-lineno">3124</tt> <tt class="py-line"><tt class="py-docstring"> Prints::</tt> </tt>
-<a name="L3125"></a><tt class="py-lineno">3125</tt> <tt class="py-line"><tt class="py-docstring"> ['AAA', ' this line']</tt> </tt>
-<a name="L3126"></a><tt class="py-lineno">3126</tt> <tt class="py-line"><tt class="py-docstring"> ['AAA', ' and this line'] </tt> </tt>
-<a name="L3127"></a><tt class="py-lineno">3127</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3128"></a><tt class="py-lineno">3128</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="LineStart.__init__"></a><div id="LineStart.__init__-def"><a name="L3129"></a><tt class="py-lineno">3129</tt> <a class="py-toggle" href="#" id="LineStart.__init__-toggle" onclick="return toggle('LineStart.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.LineStart-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineStart.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="LineStart.__init__-expanded"><a name="L3130"></a><tt class="py-lineno">3130</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-476" class="py-name" targets="Class pyparsing.LineStart=pyparsing.LineStart-class.html"><a title="pyparsing.LineStart" class="py-name" href="#" onclick="return doclink('link-476', 'LineStart', 'link-476');">LineStart</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-477" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-477', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3131"></a><tt class="py-lineno">3131</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected start of line"</tt> </tt>
-</div><a name="L3132"></a><tt class="py-lineno">3132</tt> <tt class="py-line"> </tt>
-<a name="LineStart.parseImpl"></a><div id="LineStart.parseImpl-def"><a name="L3133"></a><tt class="py-lineno">3133</tt> <a class="py-toggle" href="#" id="LineStart.parseImpl-toggle" onclick="return toggle('LineStart.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.LineStart-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineStart.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="LineStart.parseImpl-expanded"><a name="L3134"></a><tt class="py-lineno">3134</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-478" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-478', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L3135"></a><tt class="py-lineno">3135</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3136"></a><tt class="py-lineno">3136</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-479" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-479', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L3137"></a><tt class="py-lineno">3137</tt> <tt class="py-line"> </tt>
-<a name="LineEnd"></a><div id="LineEnd-def"><a name="L3138"></a><tt class="py-lineno">3138</tt> <a class="py-toggle" href="#" id="LineEnd-toggle" onclick="return toggle('LineEnd');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.LineEnd-class.html">LineEnd</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineEnd-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="LineEnd-expanded"><a name="L3139"></a><tt class="py-lineno">3139</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3140"></a><tt class="py-lineno">3140</tt> <tt class="py-line"><tt class="py-docstring"> Matches if current position is at the end of a line within the parse string</tt> </tt>
-<a name="L3141"></a><tt class="py-lineno">3141</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="LineEnd.__init__"></a><div id="LineEnd.__init__-def"><a name="L3142"></a><tt class="py-lineno">3142</tt> <a class="py-toggle" href="#" id="LineEnd.__init__-toggle" onclick="return toggle('LineEnd.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.LineEnd-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineEnd.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="LineEnd.__init__-expanded"><a name="L3143"></a><tt class="py-lineno">3143</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-480" class="py-name" targets="Class pyparsing.LineEnd=pyparsing.LineEnd-class.html"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-480', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-481" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-481', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3144"></a><tt class="py-lineno">3144</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-482" class="py-name"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-482', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt> <tt id="link-483" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-483', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-484" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-484', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt><tt class="py-string">""</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3145"></a><tt class="py-lineno">3145</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected end of line"</tt> </tt>
-</div><a name="L3146"></a><tt class="py-lineno">3146</tt> <tt class="py-line"> </tt>
-<a name="LineEnd.parseImpl"></a><div id="LineEnd.parseImpl-def"><a name="L3147"></a><tt class="py-lineno">3147</tt> <a class="py-toggle" href="#" id="LineEnd.parseImpl-toggle" onclick="return toggle('LineEnd.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.LineEnd-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="LineEnd.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="LineEnd.parseImpl-expanded"><a name="L3148"></a><tt class="py-lineno">3148</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt><tt class="py-op"><</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3149"></a><tt class="py-lineno">3149</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-op">==</tt> <tt class="py-string">"\n"</tt><tt class="py-op">:</tt> </tt>
-<a name="L3150"></a><tt class="py-lineno">3150</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-string">"\n"</tt> </tt>
-<a name="L3151"></a><tt class="py-lineno">3151</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3152"></a><tt class="py-lineno">3152</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-485" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-485', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3153"></a><tt class="py-lineno">3153</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">loc</tt> <tt class="py-op">==</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3154"></a><tt class="py-lineno">3154</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3155"></a><tt class="py-lineno">3155</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3156"></a><tt class="py-lineno">3156</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-486" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-486', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L3157"></a><tt class="py-lineno">3157</tt> <tt class="py-line"> </tt>
-<a name="StringStart"></a><div id="StringStart-def"><a name="L3158"></a><tt class="py-lineno">3158</tt> <a class="py-toggle" href="#" id="StringStart-toggle" onclick="return toggle('StringStart');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.StringStart-class.html">StringStart</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringStart-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="StringStart-expanded"><a name="L3159"></a><tt class="py-lineno">3159</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3160"></a><tt class="py-lineno">3160</tt> <tt class="py-line"><tt class="py-docstring"> Matches if current position is at the beginning of the parse string</tt> </tt>
-<a name="L3161"></a><tt class="py-lineno">3161</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="StringStart.__init__"></a><div id="StringStart.__init__-def"><a name="L3162"></a><tt class="py-lineno">3162</tt> <a class="py-toggle" href="#" id="StringStart.__init__-toggle" onclick="return toggle('StringStart.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.StringStart-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringStart.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="StringStart.__init__-expanded"><a name="L3163"></a><tt class="py-lineno">3163</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-487" class="py-name" targets="Class pyparsing.StringStart=pyparsing.StringStart-class.html"><a title="pyparsing.StringStart" class="py-name" href="#" onclick="return doclink('link-487', 'StringStart', 'link-487');">StringStart</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-488" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-488', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3164"></a><tt class="py-lineno">3164</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected start of text"</tt> </tt>
-</div><a name="L3165"></a><tt class="py-lineno">3165</tt> <tt class="py-line"> </tt>
-<a name="StringStart.parseImpl"></a><div id="StringStart.parseImpl-def"><a name="L3166"></a><tt class="py-lineno">3166</tt> <a class="py-toggle" href="#" id="StringStart.parseImpl-toggle" onclick="return toggle('StringStart.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.StringStart-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringStart.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="StringStart.parseImpl-expanded"><a name="L3167"></a><tt class="py-lineno">3167</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">!=</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L3168"></a><tt class="py-lineno">3168</tt> <tt class="py-line"> <tt class="py-comment"># see if entire string up to here is just whitespace and ignoreables</tt> </tt>
-<a name="L3169"></a><tt class="py-lineno">3169</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">!=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-489" class="py-name"><a title="pyparsing.GoToColumn.preParse
-pyparsing.ParserElement.preParse" class="py-name" href="#" onclick="return doclink('link-489', 'preParse', 'link-151');">preParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-number">0</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3170"></a><tt class="py-lineno">3170</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-490" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-490', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3171"></a><tt class="py-lineno">3171</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div></div><a name="L3172"></a><tt class="py-lineno">3172</tt> <tt class="py-line"> </tt>
-<a name="StringEnd"></a><div id="StringEnd-def"><a name="L3173"></a><tt class="py-lineno">3173</tt> <a class="py-toggle" href="#" id="StringEnd-toggle" onclick="return toggle('StringEnd');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.StringEnd-class.html">StringEnd</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringEnd-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="StringEnd-expanded"><a name="L3174"></a><tt class="py-lineno">3174</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3175"></a><tt class="py-lineno">3175</tt> <tt class="py-line"><tt class="py-docstring"> Matches if current position is at the end of the parse string</tt> </tt>
-<a name="L3176"></a><tt class="py-lineno">3176</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="StringEnd.__init__"></a><div id="StringEnd.__init__-def"><a name="L3177"></a><tt class="py-lineno">3177</tt> <a class="py-toggle" href="#" id="StringEnd.__init__-toggle" onclick="return toggle('StringEnd.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.StringEnd-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringEnd.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="StringEnd.__init__-expanded"><a name="L3178"></a><tt class="py-lineno">3178</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-491" class="py-name"><a title="pyparsing.StringEnd" class="py-name" href="#" onclick="return doclink('link-491', 'StringEnd', 'link-238');">StringEnd</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-492" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-492', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3179"></a><tt class="py-lineno">3179</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected end of text"</tt> </tt>
-</div><a name="L3180"></a><tt class="py-lineno">3180</tt> <tt class="py-line"> </tt>
-<a name="StringEnd.parseImpl"></a><div id="StringEnd.parseImpl-def"><a name="L3181"></a><tt class="py-lineno">3181</tt> <a class="py-toggle" href="#" id="StringEnd.parseImpl-toggle" onclick="return toggle('StringEnd.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.StringEnd-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="StringEnd.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="StringEnd.parseImpl-expanded"><a name="L3182"></a><tt class="py-lineno">3182</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op"><</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3183"></a><tt class="py-lineno">3183</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-493" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-493', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3184"></a><tt class="py-lineno">3184</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">loc</tt> <tt class="py-op">==</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3185"></a><tt class="py-lineno">3185</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3186"></a><tt class="py-lineno">3186</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">loc</tt> <tt class="py-op">></tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3187"></a><tt class="py-lineno">3187</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3188"></a><tt class="py-lineno">3188</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3189"></a><tt class="py-lineno">3189</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-494" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-494', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L3190"></a><tt class="py-lineno">3190</tt> <tt class="py-line"> </tt>
-<a name="WordStart"></a><div id="WordStart-def"><a name="L3191"></a><tt class="py-lineno">3191</tt> <a class="py-toggle" href="#" id="WordStart-toggle" onclick="return toggle('WordStart');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.WordStart-class.html">WordStart</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordStart-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="WordStart-expanded"><a name="L3192"></a><tt class="py-lineno">3192</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3193"></a><tt class="py-lineno">3193</tt> <tt class="py-line"><tt class="py-docstring"> Matches if the current position is at the beginning of a Word, and</tt> </tt>
-<a name="L3194"></a><tt class="py-lineno">3194</tt> <tt class="py-line"><tt class="py-docstring"> is not preceded by any character in a given set of C{wordChars}</tt> </tt>
-<a name="L3195"></a><tt class="py-lineno">3195</tt> <tt class="py-line"><tt class="py-docstring"> (default=C{printables}). To emulate the C{\b} behavior of regular expressions,</tt> </tt>
-<a name="L3196"></a><tt class="py-lineno">3196</tt> <tt class="py-line"><tt class="py-docstring"> use C{WordStart(alphanums)}. C{WordStart} will also match at the beginning of</tt> </tt>
-<a name="L3197"></a><tt class="py-lineno">3197</tt> <tt class="py-line"><tt class="py-docstring"> the string being parsed, or at the beginning of a line.</tt> </tt>
-<a name="L3198"></a><tt class="py-lineno">3198</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="WordStart.__init__"></a><div id="WordStart.__init__-def"><a name="L3199"></a><tt class="py-lineno">3199</tt> <a class="py-toggle" href="#" id="WordStart.__init__-toggle" onclick="return toggle('WordStart.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.WordStart-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">wordChars</tt> <tt class="py-op">=</tt> <tt id="link-495" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-495', 'printables', 'link-29');">printables</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordStart.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="WordStart.__init__-expanded"><a name="L3200"></a><tt class="py-lineno">3200</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-496" class="py-name" targets="Class pyparsing.WordStart=pyparsing.WordStart-class.html"><a title="pyparsing.WordStart" class="py-name" href="#" onclick="return doclink('link-496', 'WordStart', 'link-496');">WordStart</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-497" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-497', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3201"></a><tt class="py-lineno">3201</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">wordChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L3202"></a><tt class="py-lineno">3202</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Not at the start of a word"</tt> </tt>
-</div><a name="L3203"></a><tt class="py-lineno">3203</tt> <tt class="py-line"> </tt>
-<a name="WordStart.parseImpl"></a><div id="WordStart.parseImpl-def"><a name="L3204"></a><tt class="py-lineno">3204</tt> <a class="py-toggle" href="#" id="WordStart.parseImpl-toggle" onclick="return toggle('WordStart.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.WordStart-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordStart.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="WordStart.parseImpl-expanded"><a name="L3205"></a><tt class="py-lineno">3205</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">loc</tt> <tt class="py-op">!=</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L3206"></a><tt class="py-lineno">3206</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt> <tt class="py-keyword">or</tt> </tt>
-<a name="L3207"></a><tt class="py-lineno">3207</tt> <tt class="py-line"> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3208"></a><tt class="py-lineno">3208</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-498" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-498', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3209"></a><tt class="py-lineno">3209</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div></div><a name="L3210"></a><tt class="py-lineno">3210</tt> <tt class="py-line"> </tt>
-<a name="WordEnd"></a><div id="WordEnd-def"><a name="L3211"></a><tt class="py-lineno">3211</tt> <a class="py-toggle" href="#" id="WordEnd-toggle" onclick="return toggle('WordEnd');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.WordEnd-class.html">WordEnd</a><tt class="py-op">(</tt><tt class="py-base-class">_PositionToken</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordEnd-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="WordEnd-expanded"><a name="L3212"></a><tt class="py-lineno">3212</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3213"></a><tt class="py-lineno">3213</tt> <tt class="py-line"><tt class="py-docstring"> Matches if the current position is at the end of a Word, and</tt> </tt>
-<a name="L3214"></a><tt class="py-lineno">3214</tt> <tt class="py-line"><tt class="py-docstring"> is not followed by any character in a given set of C{wordChars}</tt> </tt>
-<a name="L3215"></a><tt class="py-lineno">3215</tt> <tt class="py-line"><tt class="py-docstring"> (default=C{printables}). To emulate the C{\b} behavior of regular expressions,</tt> </tt>
-<a name="L3216"></a><tt class="py-lineno">3216</tt> <tt class="py-line"><tt class="py-docstring"> use C{WordEnd(alphanums)}. C{WordEnd} will also match at the end of</tt> </tt>
-<a name="L3217"></a><tt class="py-lineno">3217</tt> <tt class="py-line"><tt class="py-docstring"> the string being parsed, or at the end of a line.</tt> </tt>
-<a name="L3218"></a><tt class="py-lineno">3218</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="WordEnd.__init__"></a><div id="WordEnd.__init__-def"><a name="L3219"></a><tt class="py-lineno">3219</tt> <a class="py-toggle" href="#" id="WordEnd.__init__-toggle" onclick="return toggle('WordEnd.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.WordEnd-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">wordChars</tt> <tt class="py-op">=</tt> <tt id="link-499" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-499', 'printables', 'link-29');">printables</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordEnd.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="WordEnd.__init__-expanded"><a name="L3220"></a><tt class="py-lineno">3220</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-500" class="py-name" targets="Class pyparsing.WordEnd=pyparsing.WordEnd-class.html"><a title="pyparsing.WordEnd" class="py-name" href="#" onclick="return doclink('link-500', 'WordEnd', 'link-500');">WordEnd</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-501" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-501', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3221"></a><tt class="py-lineno">3221</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt> <tt class="py-op">=</tt> <tt class="py-name">set</tt><tt class="py-op">(</tt><tt class="py-name">wordChars</tt><tt class="py-op">)</tt> </tt>
-<a name="L3222"></a><tt class="py-lineno">3222</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3223"></a><tt class="py-lineno">3223</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Not at the end of a word"</tt> </tt>
-</div><a name="L3224"></a><tt class="py-lineno">3224</tt> <tt class="py-line"> </tt>
-<a name="WordEnd.parseImpl"></a><div id="WordEnd.parseImpl-def"><a name="L3225"></a><tt class="py-lineno">3225</tt> <a class="py-toggle" href="#" id="WordEnd.parseImpl-toggle" onclick="return toggle('WordEnd.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.WordEnd-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="WordEnd.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="WordEnd.parseImpl-expanded"><a name="L3226"></a><tt class="py-lineno">3226</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L3227"></a><tt class="py-lineno">3227</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">instrlen</tt><tt class="py-op">></tt><tt class="py-number">0</tt> <tt class="py-keyword">and</tt> <tt class="py-name">loc</tt><tt class="py-op"><</tt><tt class="py-name">instrlen</tt><tt class="py-op">:</tt> </tt>
-<a name="L3228"></a><tt class="py-lineno">3228</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt> <tt class="py-keyword">or</tt> </tt>
-<a name="L3229"></a><tt class="py-lineno">3229</tt> <tt class="py-line"> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">loc</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">wordChars</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3230"></a><tt class="py-lineno">3230</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-502" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-502', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3231"></a><tt class="py-lineno">3231</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div></div><a name="L3232"></a><tt class="py-lineno">3232</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression"></a><div id="ParseExpression-def"><a name="L3233"></a><tt class="py-lineno">3233</tt> <tt class="py-line"> </tt>
-<a name="L3234"></a><tt class="py-lineno">3234</tt> <a class="py-toggle" href="#" id="ParseExpression-toggle" onclick="return toggle('ParseExpression');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html">ParseExpression</a><tt class="py-op">(</tt><tt class="py-base-class">ParserElement</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseExpression-expanded"><a name="L3235"></a><tt class="py-lineno">3235</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3236"></a><tt class="py-lineno">3236</tt> <tt class="py-line"><tt class="py-docstring"> Abstract subclass of ParserElement, for combining and post-processing parsed tokens.</tt> </tt>
-<a name="L3237"></a><tt class="py-lineno">3237</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="ParseExpression.__init__"></a><div id="ParseExpression.__init__-def"><a name="L3238"></a><tt class="py-lineno">3238</tt> <a class="py-toggle" href="#" id="ParseExpression.__init__-toggle" onclick="return toggle('ParseExpression.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">exprs</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.__init__-expanded"><a name="L3239"></a><tt class="py-lineno">3239</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-503" class="py-name" targets="Class pyparsing.ParseExpression=pyparsing.ParseExpression-class.html"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-503', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-504" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-504', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3240"></a><tt class="py-lineno">3240</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">_generatorType</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3241"></a><tt class="py-lineno">3241</tt> <tt class="py-line"> <tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3242"></a><tt class="py-lineno">3242</tt> <tt class="py-line"> </tt>
-<a name="L3243"></a><tt class="py-lineno">3243</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3244"></a><tt class="py-lineno">3244</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt id="link-505" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-505', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">exprs</tt> <tt class="py-op">)</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3245"></a><tt class="py-lineno">3245</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">collections</tt><tt class="py-op">.</tt><tt class="py-name">Iterable</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3246"></a><tt class="py-lineno">3246</tt> <tt class="py-line"> <tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3247"></a><tt class="py-lineno">3247</tt> <tt class="py-line"> <tt class="py-comment"># if sequence of strings provided, wrap with Literal</tt> </tt>
-<a name="L3248"></a><tt class="py-lineno">3248</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">all</tt><tt class="py-op">(</tt><tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">expr</tt> <tt class="py-keyword">in</tt> <tt class="py-name">exprs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3249"></a><tt class="py-lineno">3249</tt> <tt class="py-line"> <tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">map</tt><tt class="py-op">(</tt><tt id="link-506" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-506', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">,</tt> <tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3250"></a><tt class="py-lineno">3250</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3251"></a><tt class="py-lineno">3251</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3252"></a><tt class="py-lineno">3252</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3253"></a><tt class="py-lineno">3253</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt> <tt class="py-name">exprs</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3254"></a><tt class="py-lineno">3254</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">TypeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L3255"></a><tt class="py-lineno">3255</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">exprs</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3256"></a><tt class="py-lineno">3256</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L3257"></a><tt class="py-lineno">3257</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.__getitem__"></a><div id="ParseExpression.__getitem__-def"><a name="L3258"></a><tt class="py-lineno">3258</tt> <a class="py-toggle" href="#" id="ParseExpression.__getitem__-toggle" onclick="return toggle('ParseExpression.__getitem__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">i</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.__getitem__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.__getitem__-expanded"><a name="L3259"></a><tt class="py-lineno">3259</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L3260"></a><tt class="py-lineno">3260</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.append"></a><div id="ParseExpression.append-def"><a name="L3261"></a><tt class="py-lineno">3261</tt> <a class="py-toggle" href="#" id="ParseExpression.append-toggle" onclick="return toggle('ParseExpression.append');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#append">append</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.append-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.append-expanded"><a name="L3262"></a><tt class="py-lineno">3262</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">.</tt><tt id="link-507" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-507', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3263"></a><tt class="py-lineno">3263</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3264"></a><tt class="py-lineno">3264</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3265"></a><tt class="py-lineno">3265</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.leaveWhitespace"></a><div id="ParseExpression.leaveWhitespace-def"><a name="L3266"></a><tt class="py-lineno">3266</tt> <a class="py-toggle" href="#" id="ParseExpression.leaveWhitespace-toggle" onclick="return toggle('ParseExpression.leaveWhitespace');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.leaveWhitespace-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.leaveWhitespace-expanded"><a name="L3267"></a><tt class="py-lineno">3267</tt> <tt class="py-line"> <tt class="py-docstring">"""Extends C{leaveWhitespace} defined in base class, and also invokes C{leaveWhitespace} on</tt> </tt>
-<a name="L3268"></a><tt class="py-lineno">3268</tt> <tt class="py-line"><tt class="py-docstring"> all contained expressions."""</tt> </tt>
-<a name="L3269"></a><tt class="py-lineno">3269</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3270"></a><tt class="py-lineno">3270</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-508" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-508', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3271"></a><tt class="py-lineno">3271</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3272"></a><tt class="py-lineno">3272</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-509" class="py-name" targets="Method pyparsing.Forward.leaveWhitespace()=pyparsing.Forward-class.html#leaveWhitespace,Method pyparsing.ParseElementEnhance.leaveWhitespace()=pyparsing.ParseElementEnhance-class.html#leaveWhitespace,Method pyparsing.ParseExpression.leaveWhitespace()=pyparsing.ParseExpression-class.html#leaveWhitespace,Method pyparsing.ParserElement.leaveWhitespace()=pyparsing.ParserElement-class.html#leaveWhitespace"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-509', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3273"></a><tt class="py-lineno">3273</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3274"></a><tt class="py-lineno">3274</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.ignore"></a><div id="ParseExpression.ignore-def"><a name="L3275"></a><tt class="py-lineno">3275</tt> <a class="py-toggle" href="#" id="ParseExpression.ignore-toggle" onclick="return toggle('ParseExpression.ignore');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#ignore">ignore</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.ignore-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.ignore-expanded"><a name="L3276"></a><tt class="py-lineno">3276</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-510" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-510', 'Suppress', 'link-308');">Suppress</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3277"></a><tt class="py-lineno">3277</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3278"></a><tt class="py-lineno">3278</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-511" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-511', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-512" class="py-name" targets="Method pyparsing.Combine.ignore()=pyparsing.Combine-class.html#ignore,Method pyparsing.ParseElementEnhance.ignore()=pyparsing.ParseElementEnhance-class.html#ignore,Method pyparsing.ParseExpression.ignore()=pyparsing.ParseExpression-class.html#ignore,Method pyparsing.ParserElement.ignore()=pyparsing.ParserElement-class.html#ignore"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-512', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3279"></a><tt class="py-lineno">3279</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3280"></a><tt class="py-lineno">3280</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-513" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-513', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3281"></a><tt class="py-lineno">3281</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3282"></a><tt class="py-lineno">3282</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-514" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-514', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-515" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-515', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3283"></a><tt class="py-lineno">3283</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3284"></a><tt class="py-lineno">3284</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-516" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-516', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3285"></a><tt class="py-lineno">3285</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3286"></a><tt class="py-lineno">3286</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.__str__"></a><div id="ParseExpression.__str__-def"><a name="L3287"></a><tt class="py-lineno">3287</tt> <a class="py-toggle" href="#" id="ParseExpression.__str__-toggle" onclick="return toggle('ParseExpression.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.__str__-expanded"><a name="L3288"></a><tt class="py-lineno">3288</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3289"></a><tt class="py-lineno">3289</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-517" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-517', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-518" class="py-name"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-518', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3290"></a><tt class="py-lineno">3290</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L3291"></a><tt class="py-lineno">3291</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L3292"></a><tt class="py-lineno">3292</tt> <tt class="py-line"> </tt>
-<a name="L3293"></a><tt class="py-lineno">3293</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3294"></a><tt class="py-lineno">3294</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"%s:(%s)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt><tt class="py-op">,</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3295"></a><tt class="py-lineno">3295</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div><a name="L3296"></a><tt class="py-lineno">3296</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.streamline"></a><div id="ParseExpression.streamline-def"><a name="L3297"></a><tt class="py-lineno">3297</tt> <a class="py-toggle" href="#" id="ParseExpression.streamline-toggle" onclick="return toggle('ParseExpression.streamline');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#streamline">streamline</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.streamline-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.streamline-expanded"><a name="L3298"></a><tt class="py-lineno">3298</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-519" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-519', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-520" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-520', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3299"></a><tt class="py-lineno">3299</tt> <tt class="py-line"> </tt>
-<a name="L3300"></a><tt class="py-lineno">3300</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3301"></a><tt class="py-lineno">3301</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-521" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-521', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3302"></a><tt class="py-lineno">3302</tt> <tt class="py-line"> </tt>
-<a name="L3303"></a><tt class="py-lineno">3303</tt> <tt class="py-line"> <tt class="py-comment"># collapse nested And's of the form And( And( And( a,b), c), d) to And( a,b,c,d )</tt> </tt>
-<a name="L3304"></a><tt class="py-lineno">3304</tt> <tt class="py-line"> <tt class="py-comment"># but only if there are no parse actions or resultsNames on the nested And's</tt> </tt>
-<a name="L3305"></a><tt class="py-lineno">3305</tt> <tt class="py-line"> <tt class="py-comment"># (likewise for Or's and MatchFirst's)</tt> </tt>
-<a name="L3306"></a><tt class="py-lineno">3306</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">2</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3307"></a><tt class="py-lineno">3307</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L3308"></a><tt class="py-lineno">3308</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> <tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3309"></a><tt class="py-lineno">3309</tt> <tt class="py-line"> <tt class="py-keyword">not</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3310"></a><tt class="py-lineno">3310</tt> <tt class="py-line"> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3311"></a><tt class="py-lineno">3311</tt> <tt class="py-line"> <tt class="py-keyword">not</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3312"></a><tt class="py-lineno">3312</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3313"></a><tt class="py-lineno">3313</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3314"></a><tt class="py-lineno">3314</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">|=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> </tt>
-<a name="L3315"></a><tt class="py-lineno">3315</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">|=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> </tt>
-<a name="L3316"></a><tt class="py-lineno">3316</tt> <tt class="py-line"> </tt>
-<a name="L3317"></a><tt class="py-lineno">3317</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L3318"></a><tt class="py-lineno">3318</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> <tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3319"></a><tt class="py-lineno">3319</tt> <tt class="py-line"> <tt class="py-keyword">not</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">parseAction</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3320"></a><tt class="py-lineno">3320</tt> <tt class="py-line"> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> </tt>
-<a name="L3321"></a><tt class="py-lineno">3321</tt> <tt class="py-line"> <tt class="py-keyword">not</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">debug</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3322"></a><tt class="py-lineno">3322</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L3323"></a><tt class="py-lineno">3323</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3324"></a><tt class="py-lineno">3324</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">|=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> </tt>
-<a name="L3325"></a><tt class="py-lineno">3325</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">|=</tt> <tt class="py-name">other</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> </tt>
-<a name="L3326"></a><tt class="py-lineno">3326</tt> <tt class="py-line"> </tt>
-<a name="L3327"></a><tt class="py-lineno">3327</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Expected "</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3328"></a><tt class="py-lineno">3328</tt> <tt class="py-line"> </tt>
-<a name="L3329"></a><tt class="py-lineno">3329</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3330"></a><tt class="py-lineno">3330</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.setResultsName"></a><div id="ParseExpression.setResultsName-def"><a name="L3331"></a><tt class="py-lineno">3331</tt> <a class="py-toggle" href="#" id="ParseExpression.setResultsName-toggle" onclick="return toggle('ParseExpression.setResultsName');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">name</tt><tt class="py-op">,</tt> <tt class="py-param">listAllMatches</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.setResultsName-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.setResultsName-expanded"><a name="L3332"></a><tt class="py-lineno">3332</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-522" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-522', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-523" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-523', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-name">name</tt><tt class="py-op">,</tt><tt class="py-name">listAllMatches</tt><tt class="py-op">)</tt> </tt>
-<a name="L3333"></a><tt class="py-lineno">3333</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L3334"></a><tt class="py-lineno">3334</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.validate"></a><div id="ParseExpression.validate-def"><a name="L3335"></a><tt class="py-lineno">3335</tt> <a class="py-toggle" href="#" id="ParseExpression.validate-toggle" onclick="return toggle('ParseExpression.validate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#validate">validate</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">validateTrace</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.validate-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.validate-expanded"><a name="L3336"></a><tt class="py-lineno">3336</tt> <tt class="py-line"> <tt class="py-name">tmp</tt> <tt class="py-op">=</tt> <tt class="py-name">validateTrace</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">+</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt> </tt>
-<a name="L3337"></a><tt class="py-lineno">3337</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3338"></a><tt class="py-lineno">3338</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-524" class="py-name" targets="Method pyparsing.Forward.validate()=pyparsing.Forward-class.html#validate,Method pyparsing.ParseElementEnhance.validate()=pyparsing.ParseElementEnhance-class.html#validate,Method pyparsing.ParseExpression.validate()=pyparsing.ParseExpression-class.html#validate,Method pyparsing.ParserElement.validate()=pyparsing.ParserElement-class.html#validate"><a title="pyparsing.Forward.validate
-pyparsing.ParseElementEnhance.validate
-pyparsing.ParseExpression.validate
-pyparsing.ParserElement.validate" class="py-name" href="#" onclick="return doclink('link-524', 'validate', 'link-524');">validate</a></tt><tt class="py-op">(</tt><tt class="py-name">tmp</tt><tt class="py-op">)</tt> </tt>
-<a name="L3339"></a><tt class="py-lineno">3339</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-525" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-525', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L3340"></a><tt class="py-lineno">3340</tt> <tt class="py-line"> </tt>
-<a name="ParseExpression.copy"></a><div id="ParseExpression.copy-def"><a name="L3341"></a><tt class="py-lineno">3341</tt> <a class="py-toggle" href="#" id="ParseExpression.copy-toggle" onclick="return toggle('ParseExpression.copy');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseExpression-class.html#copy">copy</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseExpression.copy-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseExpression.copy-expanded"><a name="L3342"></a><tt class="py-lineno">3342</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-526" class="py-name"><a title="pyparsing.ParseExpression" class="py-name" href="#" onclick="return doclink('link-526', 'ParseExpression', 'link-503');">ParseExpression</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-527" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-527', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3343"></a><tt class="py-lineno">3343</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-528" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-528', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">]</tt> </tt>
-<a name="L3344"></a><tt class="py-lineno">3344</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div></div><a name="L3345"></a><tt class="py-lineno">3345</tt> <tt class="py-line"> </tt>
-<a name="And"></a><div id="And-def"><a name="L3346"></a><tt class="py-lineno">3346</tt> <a class="py-toggle" href="#" id="And-toggle" onclick="return toggle('And');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.And-class.html">And</a><tt class="py-op">(</tt><tt class="py-base-class">ParseExpression</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="And-expanded"><a name="L3347"></a><tt class="py-lineno">3347</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3348"></a><tt class="py-lineno">3348</tt> <tt class="py-line"><tt class="py-docstring"> Requires all given C{ParseExpression}s to be found in the given order.</tt> </tt>
-<a name="L3349"></a><tt class="py-lineno">3349</tt> <tt class="py-line"><tt class="py-docstring"> Expressions may be separated by whitespace.</tt> </tt>
-<a name="L3350"></a><tt class="py-lineno">3350</tt> <tt class="py-line"><tt class="py-docstring"> May be constructed using the C{'+'} operator.</tt> </tt>
-<a name="L3351"></a><tt class="py-lineno">3351</tt> <tt class="py-line"><tt class="py-docstring"> May also be constructed using the C{'-'} operator, which will suppress backtracking.</tt> </tt>
-<a name="L3352"></a><tt class="py-lineno">3352</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3353"></a><tt class="py-lineno">3353</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3354"></a><tt class="py-lineno">3354</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L3355"></a><tt class="py-lineno">3355</tt> <tt class="py-line"><tt class="py-docstring"> name_expr = OneOrMore(Word(alphas))</tt> </tt>
-<a name="L3356"></a><tt class="py-lineno">3356</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3357"></a><tt class="py-lineno">3357</tt> <tt class="py-line"><tt class="py-docstring"> expr = And([integer("id"),name_expr("name"),integer("age")])</tt> </tt>
-<a name="L3358"></a><tt class="py-lineno">3358</tt> <tt class="py-line"><tt class="py-docstring"> # more easily written as:</tt> </tt>
-<a name="L3359"></a><tt class="py-lineno">3359</tt> <tt class="py-line"><tt class="py-docstring"> expr = integer("id") + name_expr("name") + integer("age")</tt> </tt>
-<a name="L3360"></a><tt class="py-lineno">3360</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L3361"></a><tt class="py-lineno">3361</tt> <tt class="py-line"> </tt>
-<a name="And._ErrorStop"></a><div id="And._ErrorStop-def"><a name="L3362"></a><tt class="py-lineno">3362</tt> <a class="py-toggle" href="#" id="And._ErrorStop-toggle" onclick="return toggle('And._ErrorStop');">-</a><tt class="py-line"> <tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.And._ErrorStop-class.html">_ErrorStop</a><tt class="py-op">(</tt><tt class="py-base-class">Empty</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And._ErrorStop-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And._ErrorStop-expanded"><a name="And._ErrorStop.__init__"></a><div id="And._ErrorStop.__init__-def"><a name="L3363"></a><tt class="py-lineno">3363</tt> <a class="py-toggle" href="#" id="And._ErrorStop.__init__-toggle" onclick="return toggle('And._ErrorStop.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And._ErrorStop-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-param">kwargs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And._ErrorStop.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++++++++++"></div><div id="And._ErrorStop.__init__-expanded"><a name="L3364"></a><tt class="py-lineno">3364</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-529" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-529', 'And', 'link-274');">And</a></tt><tt class="py-op">.</tt><tt class="py-name">_ErrorStop</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-530" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-530', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">args</tt><tt class="py-op">,</tt> <tt class="py-op">**</tt><tt class="py-name">kwargs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3365"></a><tt class="py-lineno">3365</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> <tt class="py-op">=</tt> <tt class="py-string">'-'</tt> </tt>
-<a name="L3366"></a><tt class="py-lineno">3366</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-531" class="py-name"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-531', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div></div><a name="L3367"></a><tt class="py-lineno">3367</tt> <tt class="py-line"> </tt>
-<a name="And.__init__"></a><div id="And.__init__-def"><a name="L3368"></a><tt class="py-lineno">3368</tt> <a class="py-toggle" href="#" id="And.__init__-toggle" onclick="return toggle('And.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">exprs</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And.__init__-expanded"><a name="L3369"></a><tt class="py-lineno">3369</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-532" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-532', 'And', 'link-274');">And</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-533" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-533', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3370"></a><tt class="py-lineno">3370</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">all</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3371"></a><tt class="py-lineno">3371</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-534" class="py-name"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-534', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3372"></a><tt class="py-lineno">3372</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> </tt>
-<a name="L3373"></a><tt class="py-lineno">3373</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3374"></a><tt class="py-lineno">3374</tt> <tt class="py-line"> </tt>
-<a name="And.parseImpl"></a><div id="And.parseImpl-def"><a name="L3375"></a><tt class="py-lineno">3375</tt> <a class="py-toggle" href="#" id="And.parseImpl-toggle" onclick="return toggle('And.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And.parseImpl-expanded"><a name="L3376"></a><tt class="py-lineno">3376</tt> <tt class="py-line"> <tt class="py-comment"># pass False as last arg to _parse for first element, since we already</tt> </tt>
-<a name="L3377"></a><tt class="py-lineno">3377</tt> <tt class="py-line"> <tt class="py-comment"># pre-parsed the string as part of our And pre-parsing</tt> </tt>
-<a name="L3378"></a><tt class="py-lineno">3378</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">resultlist</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3379"></a><tt class="py-lineno">3379</tt> <tt class="py-line"> <tt class="py-name">errorStop</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3380"></a><tt class="py-lineno">3380</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L3381"></a><tt class="py-lineno">3381</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt> <tt id="link-535" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-535', 'And', 'link-274');">And</a></tt><tt class="py-op">.</tt><tt class="py-name">_ErrorStop</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3382"></a><tt class="py-lineno">3382</tt> <tt class="py-line"> <tt class="py-name">errorStop</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3383"></a><tt class="py-lineno">3383</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L3384"></a><tt class="py-lineno">3384</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">errorStop</tt><tt class="py-op">:</tt> </tt>
-<a name="L3385"></a><tt class="py-lineno">3385</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3386"></a><tt class="py-lineno">3386</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">exprtokens</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3387"></a><tt class="py-lineno">3387</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-536" class="py-name" targets="Class pyparsing.ParseSyntaxException=pyparsing.ParseSyntaxException-class.html"><a title="pyparsing.ParseSyntaxException" class="py-name" href="#" onclick="return doclink('link-536', 'ParseSyntaxException', 'link-536');">ParseSyntaxException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3388"></a><tt class="py-lineno">3388</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L3389"></a><tt class="py-lineno">3389</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-537" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-537', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">pe</tt><tt class="py-op">:</tt> </tt>
-<a name="L3390"></a><tt class="py-lineno">3390</tt> <tt class="py-line"> <tt class="py-name">pe</tt><tt class="py-op">.</tt><tt class="py-name">__traceback__</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3391"></a><tt class="py-lineno">3391</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-538" class="py-name"><a title="pyparsing.ParseSyntaxException" class="py-name" href="#" onclick="return doclink('link-538', 'ParseSyntaxException', 'link-536');">ParseSyntaxException</a></tt><tt class="py-op">.</tt><tt class="py-name">_from_exception</tt><tt class="py-op">(</tt><tt class="py-name">pe</tt><tt class="py-op">)</tt> </tt>
-<a name="L3392"></a><tt class="py-lineno">3392</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L3393"></a><tt class="py-lineno">3393</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-539" class="py-name"><a title="pyparsing.ParseSyntaxException" class="py-name" href="#" onclick="return doclink('link-539', 'ParseSyntaxException', 'link-536');">ParseSyntaxException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3394"></a><tt class="py-lineno">3394</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3395"></a><tt class="py-lineno">3395</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">exprtokens</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3396"></a><tt class="py-lineno">3396</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">exprtokens</tt> <tt class="py-keyword">or</tt> <tt class="py-name">exprtokens</tt><tt class="py-op">.</tt><tt id="link-540" class="py-name"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-540', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3397"></a><tt class="py-lineno">3397</tt> <tt class="py-line"> <tt class="py-name">resultlist</tt> <tt class="py-op">+=</tt> <tt class="py-name">exprtokens</tt> </tt>
-<a name="L3398"></a><tt class="py-lineno">3398</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">resultlist</tt> </tt>
-</div><a name="L3399"></a><tt class="py-lineno">3399</tt> <tt class="py-line"> </tt>
-<a name="And.__iadd__"></a><div id="And.__iadd__-def"><a name="L3400"></a><tt class="py-lineno">3400</tt> <a class="py-toggle" href="#" id="And.__iadd__-toggle" onclick="return toggle('And.__iadd__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And-class.html#__iadd__">__iadd__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And.__iadd__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And.__iadd__-expanded"><a name="L3401"></a><tt class="py-lineno">3401</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3402"></a><tt class="py-lineno">3402</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-541" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-541', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3403"></a><tt class="py-lineno">3403</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-542" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-542', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> <tt class="py-comment">#And( [ self, other ] )</tt> </tt>
-</div><a name="L3404"></a><tt class="py-lineno">3404</tt> <tt class="py-line"> </tt>
-<a name="And.checkRecursion"></a><div id="And.checkRecursion-def"><a name="L3405"></a><tt class="py-lineno">3405</tt> <a class="py-toggle" href="#" id="And.checkRecursion-toggle" onclick="return toggle('And.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And.checkRecursion-expanded"><a name="L3406"></a><tt class="py-lineno">3406</tt> <tt class="py-line"> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3407"></a><tt class="py-lineno">3407</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3408"></a><tt class="py-lineno">3408</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-543" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-543', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3409"></a><tt class="py-lineno">3409</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt><tt class="py-op">:</tt> </tt>
-<a name="L3410"></a><tt class="py-lineno">3410</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-</div><a name="L3411"></a><tt class="py-lineno">3411</tt> <tt class="py-line"> </tt>
-<a name="And.__str__"></a><div id="And.__str__-def"><a name="L3412"></a><tt class="py-lineno">3412</tt> <a class="py-toggle" href="#" id="And.__str__-toggle" onclick="return toggle('And.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.And-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="And.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="And.__str__-expanded"><a name="L3413"></a><tt class="py-lineno">3413</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3414"></a><tt class="py-lineno">3414</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3415"></a><tt class="py-lineno">3415</tt> <tt class="py-line"> </tt>
-<a name="L3416"></a><tt class="py-lineno">3416</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3417"></a><tt class="py-lineno">3417</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"{"</tt> <tt class="py-op">+</tt> <tt class="py-string">" "</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}"</tt> </tt>
-<a name="L3418"></a><tt class="py-lineno">3418</tt> <tt class="py-line"> </tt>
-<a name="L3419"></a><tt class="py-lineno">3419</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3420"></a><tt class="py-lineno">3420</tt> <tt class="py-line"> </tt>
-<a name="Or"></a><div id="Or-def"><a name="L3421"></a><tt class="py-lineno">3421</tt> <tt class="py-line"> </tt>
-<a name="L3422"></a><tt class="py-lineno">3422</tt> <a class="py-toggle" href="#" id="Or-toggle" onclick="return toggle('Or');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Or-class.html">Or</a><tt class="py-op">(</tt><tt class="py-base-class">ParseExpression</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Or-expanded"><a name="L3423"></a><tt class="py-lineno">3423</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3424"></a><tt class="py-lineno">3424</tt> <tt class="py-line"><tt class="py-docstring"> Requires that at least one C{ParseExpression} is found.</tt> </tt>
-<a name="L3425"></a><tt class="py-lineno">3425</tt> <tt class="py-line"><tt class="py-docstring"> If two expressions match, the expression that matches the longest string will be used.</tt> </tt>
-<a name="L3426"></a><tt class="py-lineno">3426</tt> <tt class="py-line"><tt class="py-docstring"> May be constructed using the C{'^'} operator.</tt> </tt>
-<a name="L3427"></a><tt class="py-lineno">3427</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3428"></a><tt class="py-lineno">3428</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3429"></a><tt class="py-lineno">3429</tt> <tt class="py-line"><tt class="py-docstring"> # construct Or using '^' operator</tt> </tt>
-<a name="L3430"></a><tt class="py-lineno">3430</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3431"></a><tt class="py-lineno">3431</tt> <tt class="py-line"><tt class="py-docstring"> number = Word(nums) ^ Combine(Word(nums) + '.' + Word(nums))</tt> </tt>
-<a name="L3432"></a><tt class="py-lineno">3432</tt> <tt class="py-line"><tt class="py-docstring"> print(number.searchString("123 3.1416 789"))</tt> </tt>
-<a name="L3433"></a><tt class="py-lineno">3433</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L3434"></a><tt class="py-lineno">3434</tt> <tt class="py-line"><tt class="py-docstring"> [['123'], ['3.1416'], ['789']]</tt> </tt>
-<a name="L3435"></a><tt class="py-lineno">3435</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Or.__init__"></a><div id="Or.__init__-def"><a name="L3436"></a><tt class="py-lineno">3436</tt> <a class="py-toggle" href="#" id="Or.__init__-toggle" onclick="return toggle('Or.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Or-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">exprs</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Or.__init__-expanded"><a name="L3437"></a><tt class="py-lineno">3437</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-544" class="py-name"><a title="pyparsing.Or" class="py-name" href="#" onclick="return doclink('link-544', 'Or', 'link-297');">Or</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-545" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-545', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3438"></a><tt class="py-lineno">3438</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3439"></a><tt class="py-lineno">3439</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">any</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3440"></a><tt class="py-lineno">3440</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3441"></a><tt class="py-lineno">3441</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3442"></a><tt class="py-lineno">3442</tt> <tt class="py-line"> </tt>
-<a name="Or.parseImpl"></a><div id="Or.parseImpl-def"><a name="L3443"></a><tt class="py-lineno">3443</tt> <a class="py-toggle" href="#" id="Or.parseImpl-toggle" onclick="return toggle('Or.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Or-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Or.parseImpl-expanded"><a name="L3444"></a><tt class="py-lineno">3444</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-op">-</tt><tt class="py-number">1</tt> </tt>
-<a name="L3445"></a><tt class="py-lineno">3445</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3446"></a><tt class="py-lineno">3446</tt> <tt class="py-line"> <tt id="link-546" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-546', 'matches', 'link-248');">matches</a></tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3447"></a><tt class="py-lineno">3447</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3448"></a><tt class="py-lineno">3448</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3449"></a><tt class="py-lineno">3449</tt> <tt class="py-line"> <tt class="py-name">loc2</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-547" class="py-name"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-547', 'tryParse', 'link-171');">tryParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3450"></a><tt class="py-lineno">3450</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-548" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-548', 'ParseException', 'link-147');">ParseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">err</tt><tt class="py-op">:</tt> </tt>
-<a name="L3451"></a><tt class="py-lineno">3451</tt> <tt class="py-line"> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">__traceback__</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3452"></a><tt class="py-lineno">3452</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> <tt class="py-op">></tt> <tt class="py-name">maxExcLoc</tt><tt class="py-op">:</tt> </tt>
-<a name="L3453"></a><tt class="py-lineno">3453</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt> </tt>
-<a name="L3454"></a><tt class="py-lineno">3454</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> </tt>
-<a name="L3455"></a><tt class="py-lineno">3455</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L3456"></a><tt class="py-lineno">3456</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-name">maxExcLoc</tt><tt class="py-op">:</tt> </tt>
-<a name="L3457"></a><tt class="py-lineno">3457</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt id="link-549" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-549', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3458"></a><tt class="py-lineno">3458</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L3459"></a><tt class="py-lineno">3459</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3460"></a><tt class="py-lineno">3460</tt> <tt class="py-line"> <tt class="py-comment"># save match among all matches, to retry longest to shortest</tt> </tt>
-<a name="L3461"></a><tt class="py-lineno">3461</tt> <tt class="py-line"> <tt id="link-550" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-550', 'matches', 'link-248');">matches</a></tt><tt class="py-op">.</tt><tt id="link-551" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-551', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">loc2</tt><tt class="py-op">,</tt> <tt class="py-name">e</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3462"></a><tt class="py-lineno">3462</tt> <tt class="py-line"> </tt>
-<a name="L3463"></a><tt class="py-lineno">3463</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-552" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-552', 'matches', 'link-248');">matches</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3464"></a><tt class="py-lineno">3464</tt> <tt class="py-line"> <tt id="link-553" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-553', 'matches', 'link-248');">matches</a></tt><tt class="py-op">.</tt><tt class="py-name">sort</tt><tt class="py-op">(</tt><tt class="py-name">key</tt><tt class="py-op">=</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">x</tt><tt class="py-op">:</tt> <tt class="py-op">-</tt><tt class="py-name">x</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L3465"></a><tt class="py-lineno">3465</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">_</tt><tt class="py-op">,</tt><tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt id="link-554" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-554', 'matches', 'link-248');">matches</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3466"></a><tt class="py-lineno">3466</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3467"></a><tt class="py-lineno">3467</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3468"></a><tt class="py-lineno">3468</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-555" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-555', 'ParseException', 'link-147');">ParseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">err</tt><tt class="py-op">:</tt> </tt>
-<a name="L3469"></a><tt class="py-lineno">3469</tt> <tt class="py-line"> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">__traceback__</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3470"></a><tt class="py-lineno">3470</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> <tt class="py-op">></tt> <tt class="py-name">maxExcLoc</tt><tt class="py-op">:</tt> </tt>
-<a name="L3471"></a><tt class="py-lineno">3471</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt> </tt>
-<a name="L3472"></a><tt class="py-lineno">3472</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> </tt>
-<a name="L3473"></a><tt class="py-lineno">3473</tt> <tt class="py-line"> </tt>
-<a name="L3474"></a><tt class="py-lineno">3474</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">maxException</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3475"></a><tt class="py-lineno">3475</tt> <tt class="py-line"> <tt class="py-name">maxException</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> </tt>
-<a name="L3476"></a><tt class="py-lineno">3476</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">maxException</tt> </tt>
-<a name="L3477"></a><tt class="py-lineno">3477</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3478"></a><tt class="py-lineno">3478</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-556" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-556', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-string">"no defined alternatives to match"</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L3479"></a><tt class="py-lineno">3479</tt> <tt class="py-line"> </tt>
-<a name="L3480"></a><tt class="py-lineno">3480</tt> <tt class="py-line"> </tt>
-<a name="Or.__ixor__"></a><div id="Or.__ixor__-def"><a name="L3481"></a><tt class="py-lineno">3481</tt> <a class="py-toggle" href="#" id="Or.__ixor__-toggle" onclick="return toggle('Or.__ixor__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Or-class.html#__ixor__">__ixor__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or.__ixor__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Or.__ixor__-expanded"><a name="L3482"></a><tt class="py-lineno">3482</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3483"></a><tt class="py-lineno">3483</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-557" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-557', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3484"></a><tt class="py-lineno">3484</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-558" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-558', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> <tt class="py-comment">#Or( [ self, other ] )</tt> </tt>
-</div><a name="L3485"></a><tt class="py-lineno">3485</tt> <tt class="py-line"> </tt>
-<a name="Or.__str__"></a><div id="Or.__str__-def"><a name="L3486"></a><tt class="py-lineno">3486</tt> <a class="py-toggle" href="#" id="Or.__str__-toggle" onclick="return toggle('Or.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Or-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Or.__str__-expanded"><a name="L3487"></a><tt class="py-lineno">3487</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3488"></a><tt class="py-lineno">3488</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3489"></a><tt class="py-lineno">3489</tt> <tt class="py-line"> </tt>
-<a name="L3490"></a><tt class="py-lineno">3490</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3491"></a><tt class="py-lineno">3491</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"{"</tt> <tt class="py-op">+</tt> <tt class="py-string">" ^ "</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}"</tt> </tt>
-<a name="L3492"></a><tt class="py-lineno">3492</tt> <tt class="py-line"> </tt>
-<a name="L3493"></a><tt class="py-lineno">3493</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div><a name="L3494"></a><tt class="py-lineno">3494</tt> <tt class="py-line"> </tt>
-<a name="Or.checkRecursion"></a><div id="Or.checkRecursion-def"><a name="L3495"></a><tt class="py-lineno">3495</tt> <a class="py-toggle" href="#" id="Or.checkRecursion-toggle" onclick="return toggle('Or.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Or-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Or.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Or.checkRecursion-expanded"><a name="L3496"></a><tt class="py-lineno">3496</tt> <tt class="py-line"> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3497"></a><tt class="py-lineno">3497</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3498"></a><tt class="py-lineno">3498</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-559" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-559', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">)</tt> </tt>
-</div></div><a name="L3499"></a><tt class="py-lineno">3499</tt> <tt class="py-line"> </tt>
-<a name="MatchFirst"></a><div id="MatchFirst-def"><a name="L3500"></a><tt class="py-lineno">3500</tt> <tt class="py-line"> </tt>
-<a name="L3501"></a><tt class="py-lineno">3501</tt> <a class="py-toggle" href="#" id="MatchFirst-toggle" onclick="return toggle('MatchFirst');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html">MatchFirst</a><tt class="py-op">(</tt><tt class="py-base-class">ParseExpression</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="MatchFirst-expanded"><a name="L3502"></a><tt class="py-lineno">3502</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3503"></a><tt class="py-lineno">3503</tt> <tt class="py-line"><tt class="py-docstring"> Requires that at least one C{ParseExpression} is found.</tt> </tt>
-<a name="L3504"></a><tt class="py-lineno">3504</tt> <tt class="py-line"><tt class="py-docstring"> If two expressions match, the first one listed is the one that will match.</tt> </tt>
-<a name="L3505"></a><tt class="py-lineno">3505</tt> <tt class="py-line"><tt class="py-docstring"> May be constructed using the C{'|'} operator.</tt> </tt>
-<a name="L3506"></a><tt class="py-lineno">3506</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3507"></a><tt class="py-lineno">3507</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3508"></a><tt class="py-lineno">3508</tt> <tt class="py-line"><tt class="py-docstring"> # construct MatchFirst using '|' operator</tt> </tt>
-<a name="L3509"></a><tt class="py-lineno">3509</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3510"></a><tt class="py-lineno">3510</tt> <tt class="py-line"><tt class="py-docstring"> # watch the order of expressions to match</tt> </tt>
-<a name="L3511"></a><tt class="py-lineno">3511</tt> <tt class="py-line"><tt class="py-docstring"> number = Word(nums) | Combine(Word(nums) + '.' + Word(nums))</tt> </tt>
-<a name="L3512"></a><tt class="py-lineno">3512</tt> <tt class="py-line"><tt class="py-docstring"> print(number.searchString("123 3.1416 789")) # Fail! -> [['123'], ['3'], ['1416'], ['789']]</tt> </tt>
-<a name="L3513"></a><tt class="py-lineno">3513</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3514"></a><tt class="py-lineno">3514</tt> <tt class="py-line"><tt class="py-docstring"> # put more selective expression first</tt> </tt>
-<a name="L3515"></a><tt class="py-lineno">3515</tt> <tt class="py-line"><tt class="py-docstring"> number = Combine(Word(nums) + '.' + Word(nums)) | Word(nums)</tt> </tt>
-<a name="L3516"></a><tt class="py-lineno">3516</tt> <tt class="py-line"><tt class="py-docstring"> print(number.searchString("123 3.1416 789")) # Better -> [['123'], ['3.1416'], ['789']]</tt> </tt>
-<a name="L3517"></a><tt class="py-lineno">3517</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="MatchFirst.__init__"></a><div id="MatchFirst.__init__-def"><a name="L3518"></a><tt class="py-lineno">3518</tt> <a class="py-toggle" href="#" id="MatchFirst.__init__-toggle" onclick="return toggle('MatchFirst.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">exprs</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="MatchFirst.__init__-expanded"><a name="L3519"></a><tt class="py-lineno">3519</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-560" class="py-name"><a title="pyparsing.MatchFirst" class="py-name" href="#" onclick="return doclink('link-560', 'MatchFirst', 'link-292');">MatchFirst</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-561" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-561', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3520"></a><tt class="py-lineno">3520</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3521"></a><tt class="py-lineno">3521</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">any</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3522"></a><tt class="py-lineno">3522</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3523"></a><tt class="py-lineno">3523</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3524"></a><tt class="py-lineno">3524</tt> <tt class="py-line"> </tt>
-<a name="MatchFirst.parseImpl"></a><div id="MatchFirst.parseImpl-def"><a name="L3525"></a><tt class="py-lineno">3525</tt> <a class="py-toggle" href="#" id="MatchFirst.parseImpl-toggle" onclick="return toggle('MatchFirst.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="MatchFirst.parseImpl-expanded"><a name="L3526"></a><tt class="py-lineno">3526</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-op">-</tt><tt class="py-number">1</tt> </tt>
-<a name="L3527"></a><tt class="py-lineno">3527</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3528"></a><tt class="py-lineno">3528</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3529"></a><tt class="py-lineno">3529</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3530"></a><tt class="py-lineno">3530</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3531"></a><tt class="py-lineno">3531</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-<a name="L3532"></a><tt class="py-lineno">3532</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-562" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-562', 'ParseException', 'link-147');">ParseException</a></tt> <tt class="py-keyword">as</tt> <tt class="py-name">err</tt><tt class="py-op">:</tt> </tt>
-<a name="L3533"></a><tt class="py-lineno">3533</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> <tt class="py-op">></tt> <tt class="py-name">maxExcLoc</tt><tt class="py-op">:</tt> </tt>
-<a name="L3534"></a><tt class="py-lineno">3534</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt> </tt>
-<a name="L3535"></a><tt class="py-lineno">3535</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">err</tt><tt class="py-op">.</tt><tt class="py-name">loc</tt> </tt>
-<a name="L3536"></a><tt class="py-lineno">3536</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">IndexError</tt><tt class="py-op">:</tt> </tt>
-<a name="L3537"></a><tt class="py-lineno">3537</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> <tt class="py-op">></tt> <tt class="py-name">maxExcLoc</tt><tt class="py-op">:</tt> </tt>
-<a name="L3538"></a><tt class="py-lineno">3538</tt> <tt class="py-line"> <tt class="py-name">maxException</tt> <tt class="py-op">=</tt> <tt id="link-563" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-563', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3539"></a><tt class="py-lineno">3539</tt> <tt class="py-line"> <tt class="py-name">maxExcLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L3540"></a><tt class="py-lineno">3540</tt> <tt class="py-line"> </tt>
-<a name="L3541"></a><tt class="py-lineno">3541</tt> <tt class="py-line"> <tt class="py-comment"># only got here if no expression matched, raise exception for match that made it the furthest</tt> </tt>
-<a name="L3542"></a><tt class="py-lineno">3542</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3543"></a><tt class="py-lineno">3543</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">maxException</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3544"></a><tt class="py-lineno">3544</tt> <tt class="py-line"> <tt class="py-name">maxException</tt><tt class="py-op">.</tt><tt class="py-name">msg</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> </tt>
-<a name="L3545"></a><tt class="py-lineno">3545</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">maxException</tt> </tt>
-<a name="L3546"></a><tt class="py-lineno">3546</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3547"></a><tt class="py-lineno">3547</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-564" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-564', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-string">"no defined alternatives to match"</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L3548"></a><tt class="py-lineno">3548</tt> <tt class="py-line"> </tt>
-<a name="MatchFirst.__ior__"></a><div id="MatchFirst.__ior__-def"><a name="L3549"></a><tt class="py-lineno">3549</tt> <a class="py-toggle" href="#" id="MatchFirst.__ior__-toggle" onclick="return toggle('MatchFirst.__ior__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html#__ior__">__ior__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst.__ior__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="MatchFirst.__ior__-expanded"><a name="L3550"></a><tt class="py-lineno">3550</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3551"></a><tt class="py-lineno">3551</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-565" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-565', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3552"></a><tt class="py-lineno">3552</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-566" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-566', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> <tt class="py-comment">#MatchFirst( [ self, other ] )</tt> </tt>
-</div><a name="L3553"></a><tt class="py-lineno">3553</tt> <tt class="py-line"> </tt>
-<a name="MatchFirst.__str__"></a><div id="MatchFirst.__str__-def"><a name="L3554"></a><tt class="py-lineno">3554</tt> <a class="py-toggle" href="#" id="MatchFirst.__str__-toggle" onclick="return toggle('MatchFirst.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="MatchFirst.__str__-expanded"><a name="L3555"></a><tt class="py-lineno">3555</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3556"></a><tt class="py-lineno">3556</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3557"></a><tt class="py-lineno">3557</tt> <tt class="py-line"> </tt>
-<a name="L3558"></a><tt class="py-lineno">3558</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3559"></a><tt class="py-lineno">3559</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"{"</tt> <tt class="py-op">+</tt> <tt class="py-string">" | "</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}"</tt> </tt>
-<a name="L3560"></a><tt class="py-lineno">3560</tt> <tt class="py-line"> </tt>
-<a name="L3561"></a><tt class="py-lineno">3561</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div><a name="L3562"></a><tt class="py-lineno">3562</tt> <tt class="py-line"> </tt>
-<a name="MatchFirst.checkRecursion"></a><div id="MatchFirst.checkRecursion-def"><a name="L3563"></a><tt class="py-lineno">3563</tt> <a class="py-toggle" href="#" id="MatchFirst.checkRecursion-toggle" onclick="return toggle('MatchFirst.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.MatchFirst-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="MatchFirst.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="MatchFirst.checkRecursion-expanded"><a name="L3564"></a><tt class="py-lineno">3564</tt> <tt class="py-line"> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3565"></a><tt class="py-lineno">3565</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3566"></a><tt class="py-lineno">3566</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-567" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-567', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">)</tt> </tt>
-</div></div><a name="L3567"></a><tt class="py-lineno">3567</tt> <tt class="py-line"> </tt>
-<a name="Each"></a><div id="Each-def"><a name="L3568"></a><tt class="py-lineno">3568</tt> <tt class="py-line"> </tt>
-<a name="L3569"></a><tt class="py-lineno">3569</tt> <a class="py-toggle" href="#" id="Each-toggle" onclick="return toggle('Each');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Each-class.html">Each</a><tt class="py-op">(</tt><tt class="py-base-class">ParseExpression</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Each-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Each-expanded"><a name="L3570"></a><tt class="py-lineno">3570</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3571"></a><tt class="py-lineno">3571</tt> <tt class="py-line"><tt class="py-docstring"> Requires all given C{ParseExpression}s to be found, but in any order.</tt> </tt>
-<a name="L3572"></a><tt class="py-lineno">3572</tt> <tt class="py-line"><tt class="py-docstring"> Expressions may be separated by whitespace.</tt> </tt>
-<a name="L3573"></a><tt class="py-lineno">3573</tt> <tt class="py-line"><tt class="py-docstring"> May be constructed using the C{'&'} operator.</tt> </tt>
-<a name="L3574"></a><tt class="py-lineno">3574</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3575"></a><tt class="py-lineno">3575</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3576"></a><tt class="py-lineno">3576</tt> <tt class="py-line"><tt class="py-docstring"> color = oneOf("RED ORANGE YELLOW GREEN BLUE PURPLE BLACK WHITE BROWN")</tt> </tt>
-<a name="L3577"></a><tt class="py-lineno">3577</tt> <tt class="py-line"><tt class="py-docstring"> shape_type = oneOf("SQUARE CIRCLE TRIANGLE STAR HEXAGON OCTAGON")</tt> </tt>
-<a name="L3578"></a><tt class="py-lineno">3578</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L3579"></a><tt class="py-lineno">3579</tt> <tt class="py-line"><tt class="py-docstring"> shape_attr = "shape:" + shape_type("shape")</tt> </tt>
-<a name="L3580"></a><tt class="py-lineno">3580</tt> <tt class="py-line"><tt class="py-docstring"> posn_attr = "posn:" + Group(integer("x") + ',' + integer("y"))("posn")</tt> </tt>
-<a name="L3581"></a><tt class="py-lineno">3581</tt> <tt class="py-line"><tt class="py-docstring"> color_attr = "color:" + color("color")</tt> </tt>
-<a name="L3582"></a><tt class="py-lineno">3582</tt> <tt class="py-line"><tt class="py-docstring"> size_attr = "size:" + integer("size")</tt> </tt>
-<a name="L3583"></a><tt class="py-lineno">3583</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3584"></a><tt class="py-lineno">3584</tt> <tt class="py-line"><tt class="py-docstring"> # use Each (using operator '&') to accept attributes in any order </tt> </tt>
-<a name="L3585"></a><tt class="py-lineno">3585</tt> <tt class="py-line"><tt class="py-docstring"> # (shape and posn are required, color and size are optional)</tt> </tt>
-<a name="L3586"></a><tt class="py-lineno">3586</tt> <tt class="py-line"><tt class="py-docstring"> shape_spec = shape_attr & posn_attr & Optional(color_attr) & Optional(size_attr)</tt> </tt>
-<a name="L3587"></a><tt class="py-lineno">3587</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3588"></a><tt class="py-lineno">3588</tt> <tt class="py-line"><tt class="py-docstring"> shape_spec.runTests('''</tt> </tt>
-<a name="L3589"></a><tt class="py-lineno">3589</tt> <tt class="py-line"><tt class="py-docstring"> shape: SQUARE color: BLACK posn: 100, 120</tt> </tt>
-<a name="L3590"></a><tt class="py-lineno">3590</tt> <tt class="py-line"><tt class="py-docstring"> shape: CIRCLE size: 50 color: BLUE posn: 50,80</tt> </tt>
-<a name="L3591"></a><tt class="py-lineno">3591</tt> <tt class="py-line"><tt class="py-docstring"> color:GREEN size:20 shape:TRIANGLE posn:20,40</tt> </tt>
-<a name="L3592"></a><tt class="py-lineno">3592</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L3593"></a><tt class="py-lineno">3593</tt> <tt class="py-line"><tt class="py-docstring"> )</tt> </tt>
-<a name="L3594"></a><tt class="py-lineno">3594</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L3595"></a><tt class="py-lineno">3595</tt> <tt class="py-line"><tt class="py-docstring"> shape: SQUARE color: BLACK posn: 100, 120</tt> </tt>
-<a name="L3596"></a><tt class="py-lineno">3596</tt> <tt class="py-line"><tt class="py-docstring"> ['shape:', 'SQUARE', 'color:', 'BLACK', 'posn:', ['100', ',', '120']]</tt> </tt>
-<a name="L3597"></a><tt class="py-lineno">3597</tt> <tt class="py-line"><tt class="py-docstring"> - color: BLACK</tt> </tt>
-<a name="L3598"></a><tt class="py-lineno">3598</tt> <tt class="py-line"><tt class="py-docstring"> - posn: ['100', ',', '120']</tt> </tt>
-<a name="L3599"></a><tt class="py-lineno">3599</tt> <tt class="py-line"><tt class="py-docstring"> - x: 100</tt> </tt>
-<a name="L3600"></a><tt class="py-lineno">3600</tt> <tt class="py-line"><tt class="py-docstring"> - y: 120</tt> </tt>
-<a name="L3601"></a><tt class="py-lineno">3601</tt> <tt class="py-line"><tt class="py-docstring"> - shape: SQUARE</tt> </tt>
-<a name="L3602"></a><tt class="py-lineno">3602</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3603"></a><tt class="py-lineno">3603</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3604"></a><tt class="py-lineno">3604</tt> <tt class="py-line"><tt class="py-docstring"> shape: CIRCLE size: 50 color: BLUE posn: 50,80</tt> </tt>
-<a name="L3605"></a><tt class="py-lineno">3605</tt> <tt class="py-line"><tt class="py-docstring"> ['shape:', 'CIRCLE', 'size:', '50', 'color:', 'BLUE', 'posn:', ['50', ',', '80']]</tt> </tt>
-<a name="L3606"></a><tt class="py-lineno">3606</tt> <tt class="py-line"><tt class="py-docstring"> - color: BLUE</tt> </tt>
-<a name="L3607"></a><tt class="py-lineno">3607</tt> <tt class="py-line"><tt class="py-docstring"> - posn: ['50', ',', '80']</tt> </tt>
-<a name="L3608"></a><tt class="py-lineno">3608</tt> <tt class="py-line"><tt class="py-docstring"> - x: 50</tt> </tt>
-<a name="L3609"></a><tt class="py-lineno">3609</tt> <tt class="py-line"><tt class="py-docstring"> - y: 80</tt> </tt>
-<a name="L3610"></a><tt class="py-lineno">3610</tt> <tt class="py-line"><tt class="py-docstring"> - shape: CIRCLE</tt> </tt>
-<a name="L3611"></a><tt class="py-lineno">3611</tt> <tt class="py-line"><tt class="py-docstring"> - size: 50</tt> </tt>
-<a name="L3612"></a><tt class="py-lineno">3612</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3613"></a><tt class="py-lineno">3613</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3614"></a><tt class="py-lineno">3614</tt> <tt class="py-line"><tt class="py-docstring"> color: GREEN size: 20 shape: TRIANGLE posn: 20,40</tt> </tt>
-<a name="L3615"></a><tt class="py-lineno">3615</tt> <tt class="py-line"><tt class="py-docstring"> ['color:', 'GREEN', 'size:', '20', 'shape:', 'TRIANGLE', 'posn:', ['20', ',', '40']]</tt> </tt>
-<a name="L3616"></a><tt class="py-lineno">3616</tt> <tt class="py-line"><tt class="py-docstring"> - color: GREEN</tt> </tt>
-<a name="L3617"></a><tt class="py-lineno">3617</tt> <tt class="py-line"><tt class="py-docstring"> - posn: ['20', ',', '40']</tt> </tt>
-<a name="L3618"></a><tt class="py-lineno">3618</tt> <tt class="py-line"><tt class="py-docstring"> - x: 20</tt> </tt>
-<a name="L3619"></a><tt class="py-lineno">3619</tt> <tt class="py-line"><tt class="py-docstring"> - y: 40</tt> </tt>
-<a name="L3620"></a><tt class="py-lineno">3620</tt> <tt class="py-line"><tt class="py-docstring"> - shape: TRIANGLE</tt> </tt>
-<a name="L3621"></a><tt class="py-lineno">3621</tt> <tt class="py-line"><tt class="py-docstring"> - size: 20</tt> </tt>
-<a name="L3622"></a><tt class="py-lineno">3622</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Each.__init__"></a><div id="Each.__init__-def"><a name="L3623"></a><tt class="py-lineno">3623</tt> <a class="py-toggle" href="#" id="Each.__init__-toggle" onclick="return toggle('Each.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Each-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">exprs</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Each.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Each.__init__-expanded"><a name="L3624"></a><tt class="py-lineno">3624</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-568" class="py-name"><a title="pyparsing.Each" class="py-name" href="#" onclick="return doclink('link-568', 'Each', 'link-302');">Each</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-569" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-569', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">exprs</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3625"></a><tt class="py-lineno">3625</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">all</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3626"></a><tt class="py-lineno">3626</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3627"></a><tt class="py-lineno">3627</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initExprGroups</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3628"></a><tt class="py-lineno">3628</tt> <tt class="py-line"> </tt>
-<a name="Each.parseImpl"></a><div id="Each.parseImpl-def"><a name="L3629"></a><tt class="py-lineno">3629</tt> <a class="py-toggle" href="#" id="Each.parseImpl-toggle" onclick="return toggle('Each.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Each-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Each.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Each.parseImpl-expanded"><a name="L3630"></a><tt class="py-lineno">3630</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initExprGroups</tt><tt class="py-op">:</tt> </tt>
-<a name="L3631"></a><tt class="py-lineno">3631</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">opt1map</tt> <tt class="py-op">=</tt> <tt class="py-name">dict</tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt class="py-name">id</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-570" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-570', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3632"></a><tt class="py-lineno">3632</tt> <tt class="py-line"> <tt class="py-name">opt1</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-571" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-571', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">)</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3633"></a><tt class="py-lineno">3633</tt> <tt class="py-line"> <tt class="py-name">opt2</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-keyword">and</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-572" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-572', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">)</tt><tt class="py-op">]</tt> </tt>
-<a name="L3634"></a><tt class="py-lineno">3634</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">optionals</tt> <tt class="py-op">=</tt> <tt class="py-name">opt1</tt> <tt class="py-op">+</tt> <tt class="py-name">opt2</tt> </tt>
-<a name="L3635"></a><tt class="py-lineno">3635</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">multioptionals</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-573" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-573', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">)</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3636"></a><tt class="py-lineno">3636</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">multirequired</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-574" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-574', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">)</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3637"></a><tt class="py-lineno">3637</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">required</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">e</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt class="py-op">(</tt><tt id="link-575" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-575', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">,</tt><tt id="link-576" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-576', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">,</tt><tt id="link-577" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-577', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3638"></a><tt class="py-lineno">3638</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">required</tt> <tt class="py-op">+=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">multirequired</tt> </tt>
-<a name="L3639"></a><tt class="py-lineno">3639</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">initExprGroups</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3640"></a><tt class="py-lineno">3640</tt> <tt class="py-line"> <tt class="py-name">tmpLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L3641"></a><tt class="py-lineno">3641</tt> <tt class="py-line"> <tt class="py-name">tmpReqd</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">required</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L3642"></a><tt class="py-lineno">3642</tt> <tt class="py-line"> <tt class="py-name">tmpOpt</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">optionals</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L3643"></a><tt class="py-lineno">3643</tt> <tt class="py-line"> <tt class="py-name">matchOrder</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3644"></a><tt class="py-lineno">3644</tt> <tt class="py-line"> </tt>
-<a name="L3645"></a><tt class="py-lineno">3645</tt> <tt class="py-line"> <tt class="py-name">keepMatching</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3646"></a><tt class="py-lineno">3646</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">keepMatching</tt><tt class="py-op">:</tt> </tt>
-<a name="L3647"></a><tt class="py-lineno">3647</tt> <tt class="py-line"> <tt class="py-name">tmpExprs</tt> <tt class="py-op">=</tt> <tt class="py-name">tmpReqd</tt> <tt class="py-op">+</tt> <tt class="py-name">tmpOpt</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">multioptionals</tt> <tt class="py-op">+</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">multirequired</tt> </tt>
-<a name="L3648"></a><tt class="py-lineno">3648</tt> <tt class="py-line"> <tt class="py-name">failed</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3649"></a><tt class="py-lineno">3649</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tmpExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3650"></a><tt class="py-lineno">3650</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3651"></a><tt class="py-lineno">3651</tt> <tt class="py-line"> <tt class="py-name">tmpLoc</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-578" class="py-name"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-578', 'tryParse', 'link-171');">tryParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tmpLoc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3652"></a><tt class="py-lineno">3652</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-579" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-579', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3653"></a><tt class="py-lineno">3653</tt> <tt class="py-line"> <tt class="py-name">failed</tt><tt class="py-op">.</tt><tt id="link-580" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-580', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> </tt>
-<a name="L3654"></a><tt class="py-lineno">3654</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3655"></a><tt class="py-lineno">3655</tt> <tt class="py-line"> <tt class="py-name">matchOrder</tt><tt class="py-op">.</tt><tt id="link-581" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-581', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">opt1map</tt><tt class="py-op">.</tt><tt id="link-582" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-582', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">id</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">e</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3656"></a><tt class="py-lineno">3656</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tmpReqd</tt><tt class="py-op">:</tt> </tt>
-<a name="L3657"></a><tt class="py-lineno">3657</tt> <tt class="py-line"> <tt class="py-name">tmpReqd</tt><tt class="py-op">.</tt><tt class="py-name">remove</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> </tt>
-<a name="L3658"></a><tt class="py-lineno">3658</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tmpOpt</tt><tt class="py-op">:</tt> </tt>
-<a name="L3659"></a><tt class="py-lineno">3659</tt> <tt class="py-line"> <tt class="py-name">tmpOpt</tt><tt class="py-op">.</tt><tt class="py-name">remove</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> </tt>
-<a name="L3660"></a><tt class="py-lineno">3660</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">failed</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">tmpExprs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3661"></a><tt class="py-lineno">3661</tt> <tt class="py-line"> <tt class="py-name">keepMatching</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3662"></a><tt class="py-lineno">3662</tt> <tt class="py-line"> </tt>
-<a name="L3663"></a><tt class="py-lineno">3663</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">tmpReqd</tt><tt class="py-op">:</tt> </tt>
-<a name="L3664"></a><tt class="py-lineno">3664</tt> <tt class="py-line"> <tt class="py-name">missing</tt> <tt class="py-op">=</tt> <tt class="py-string">", "</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tmpReqd</tt><tt class="py-op">)</tt> </tt>
-<a name="L3665"></a><tt class="py-lineno">3665</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-583" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-583', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-string">"Missing one or more required elements (%s)"</tt> <tt class="py-op">%</tt> <tt class="py-name">missing</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3666"></a><tt class="py-lineno">3666</tt> <tt class="py-line"> </tt>
-<a name="L3667"></a><tt class="py-lineno">3667</tt> <tt class="py-line"> <tt class="py-comment"># add any unmatched Optionals, in case they have default values defined</tt> </tt>
-<a name="L3668"></a><tt class="py-lineno">3668</tt> <tt class="py-line"> <tt class="py-name">matchOrder</tt> <tt class="py-op">+=</tt> <tt class="py-op">[</tt><tt class="py-name">e</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">,</tt><tt id="link-584" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-584', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tmpOpt</tt><tt class="py-op">]</tt> </tt>
-<a name="L3669"></a><tt class="py-lineno">3669</tt> <tt class="py-line"> </tt>
-<a name="L3670"></a><tt class="py-lineno">3670</tt> <tt class="py-line"> <tt class="py-name">resultlist</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3671"></a><tt class="py-lineno">3671</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">matchOrder</tt><tt class="py-op">:</tt> </tt>
-<a name="L3672"></a><tt class="py-lineno">3672</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">results</tt> <tt class="py-op">=</tt> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">doActions</tt><tt class="py-op">)</tt> </tt>
-<a name="L3673"></a><tt class="py-lineno">3673</tt> <tt class="py-line"> <tt class="py-name">resultlist</tt><tt class="py-op">.</tt><tt id="link-585" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-585', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">results</tt><tt class="py-op">)</tt> </tt>
-<a name="L3674"></a><tt class="py-lineno">3674</tt> <tt class="py-line"> </tt>
-<a name="L3675"></a><tt class="py-lineno">3675</tt> <tt class="py-line"> <tt class="py-name">finalResults</tt> <tt class="py-op">=</tt> <tt class="py-name">sum</tt><tt class="py-op">(</tt><tt class="py-name">resultlist</tt><tt class="py-op">,</tt> <tt id="link-586" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-586', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3676"></a><tt class="py-lineno">3676</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">finalResults</tt> </tt>
-</div><a name="L3677"></a><tt class="py-lineno">3677</tt> <tt class="py-line"> </tt>
-<a name="Each.__str__"></a><div id="Each.__str__-def"><a name="L3678"></a><tt class="py-lineno">3678</tt> <a class="py-toggle" href="#" id="Each.__str__-toggle" onclick="return toggle('Each.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Each-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Each.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Each.__str__-expanded"><a name="L3679"></a><tt class="py-lineno">3679</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3680"></a><tt class="py-lineno">3680</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3681"></a><tt class="py-lineno">3681</tt> <tt class="py-line"> </tt>
-<a name="L3682"></a><tt class="py-lineno">3682</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3683"></a><tt class="py-lineno">3683</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"{"</tt> <tt class="py-op">+</tt> <tt class="py-string">" & "</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">e</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}"</tt> </tt>
-<a name="L3684"></a><tt class="py-lineno">3684</tt> <tt class="py-line"> </tt>
-<a name="L3685"></a><tt class="py-lineno">3685</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div><a name="L3686"></a><tt class="py-lineno">3686</tt> <tt class="py-line"> </tt>
-<a name="Each.checkRecursion"></a><div id="Each.checkRecursion-def"><a name="L3687"></a><tt class="py-lineno">3687</tt> <a class="py-toggle" href="#" id="Each.checkRecursion-toggle" onclick="return toggle('Each.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Each-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Each.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Each.checkRecursion-expanded"><a name="L3688"></a><tt class="py-lineno">3688</tt> <tt class="py-line"> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3689"></a><tt class="py-lineno">3689</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">e</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">exprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3690"></a><tt class="py-lineno">3690</tt> <tt class="py-line"> <tt class="py-name">e</tt><tt class="py-op">.</tt><tt id="link-587" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-587', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">)</tt> </tt>
-</div></div><a name="L3691"></a><tt class="py-lineno">3691</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance"></a><div id="ParseElementEnhance-def"><a name="L3692"></a><tt class="py-lineno">3692</tt> <tt class="py-line"> </tt>
-<a name="L3693"></a><tt class="py-lineno">3693</tt> <a class="py-toggle" href="#" id="ParseElementEnhance-toggle" onclick="return toggle('ParseElementEnhance');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a><tt class="py-op">(</tt><tt class="py-base-class">ParserElement</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ParseElementEnhance-expanded"><a name="L3694"></a><tt class="py-lineno">3694</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3695"></a><tt class="py-lineno">3695</tt> <tt class="py-line"><tt class="py-docstring"> Abstract subclass of C{ParserElement}, for combining and post-processing parsed tokens.</tt> </tt>
-<a name="L3696"></a><tt class="py-lineno">3696</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="ParseElementEnhance.__init__"></a><div id="ParseElementEnhance.__init__-def"><a name="L3697"></a><tt class="py-lineno">3697</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.__init__-toggle" onclick="return toggle('ParseElementEnhance.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.__init__-expanded"><a name="L3698"></a><tt class="py-lineno">3698</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-588" class="py-name" targets="Class pyparsing.ParseElementEnhance=pyparsing.ParseElementEnhance-class.html"><a title="pyparsing.ParseElementEnhance" class="py-name" href="#" onclick="return doclink('link-588', 'ParseElementEnhance', 'link-588');">ParseElementEnhance</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-589" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-589', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">savelist</tt><tt class="py-op">)</tt> </tt>
-<a name="L3699"></a><tt class="py-lineno">3699</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3700"></a><tt class="py-lineno">3700</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">issubclass</tt><tt class="py-op">(</tt><tt id="link-590" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-590', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">,</tt> <tt id="link-591" class="py-name"><a title="pyparsing.Token" class="py-name" href="#" onclick="return doclink('link-591', 'Token', 'link-343');">Token</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3701"></a><tt class="py-lineno">3701</tt> <tt class="py-line"> <tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt id="link-592" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-592', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-<a name="L3702"></a><tt class="py-lineno">3702</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3703"></a><tt class="py-lineno">3703</tt> <tt class="py-line"> <tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt id="link-593" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-593', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt><tt id="link-594" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-594', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L3704"></a><tt class="py-lineno">3704</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt> </tt>
-<a name="L3705"></a><tt class="py-lineno">3705</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3706"></a><tt class="py-lineno">3706</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3707"></a><tt class="py-lineno">3707</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> </tt>
-<a name="L3708"></a><tt class="py-lineno">3708</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> </tt>
-<a name="L3709"></a><tt class="py-lineno">3709</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-595" class="py-name"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-595', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3710"></a><tt class="py-lineno">3710</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> </tt>
-<a name="L3711"></a><tt class="py-lineno">3711</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> </tt>
-<a name="L3712"></a><tt class="py-lineno">3712</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> </tt>
-<a name="L3713"></a><tt class="py-lineno">3713</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">.</tt><tt id="link-596" class="py-name"><a title="pyparsing.ParseResults.extend" class="py-name" href="#" onclick="return doclink('link-596', 'extend', 'link-70');">extend</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L3714"></a><tt class="py-lineno">3714</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.parseImpl"></a><div id="ParseElementEnhance.parseImpl-def"><a name="L3715"></a><tt class="py-lineno">3715</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.parseImpl-toggle" onclick="return toggle('ParseElementEnhance.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.parseImpl-expanded"><a name="L3716"></a><tt class="py-lineno">3716</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3717"></a><tt class="py-lineno">3717</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3718"></a><tt class="py-lineno">3718</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3719"></a><tt class="py-lineno">3719</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-597" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-597', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-string">""</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L3720"></a><tt class="py-lineno">3720</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.leaveWhitespace"></a><div id="ParseElementEnhance.leaveWhitespace-def"><a name="L3721"></a><tt class="py-lineno">3721</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.leaveWhitespace-toggle" onclick="return toggle('ParseElementEnhance.leaveWhitespace');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.leaveWhitespace-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.leaveWhitespace-expanded"><a name="L3722"></a><tt class="py-lineno">3722</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L3723"></a><tt class="py-lineno">3723</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-598" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-598', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3724"></a><tt class="py-lineno">3724</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3725"></a><tt class="py-lineno">3725</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-599" class="py-name"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-599', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3726"></a><tt class="py-lineno">3726</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3727"></a><tt class="py-lineno">3727</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.ignore"></a><div id="ParseElementEnhance.ignore-def"><a name="L3728"></a><tt class="py-lineno">3728</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.ignore-toggle" onclick="return toggle('ParseElementEnhance.ignore');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.ignore-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.ignore-expanded"><a name="L3729"></a><tt class="py-lineno">3729</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt id="link-600" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-600', 'Suppress', 'link-308');">Suppress</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3730"></a><tt class="py-lineno">3730</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">other</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3731"></a><tt class="py-lineno">3731</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-601" class="py-name"><a title="pyparsing.ParseElementEnhance" class="py-name" href="#" onclick="return doclink('link-601', 'ParseElementEnhance', 'link-588');">ParseElementEnhance</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-602" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-602', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3732"></a><tt class="py-lineno">3732</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3733"></a><tt class="py-lineno">3733</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-603" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-603', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3734"></a><tt class="py-lineno">3734</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3735"></a><tt class="py-lineno">3735</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-604" class="py-name"><a title="pyparsing.ParseElementEnhance" class="py-name" href="#" onclick="return doclink('link-604', 'ParseElementEnhance', 'link-588');">ParseElementEnhance</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-605" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-605', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3736"></a><tt class="py-lineno">3736</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3737"></a><tt class="py-lineno">3737</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-606" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-606', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3738"></a><tt class="py-lineno">3738</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3739"></a><tt class="py-lineno">3739</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.streamline"></a><div id="ParseElementEnhance.streamline-def"><a name="L3740"></a><tt class="py-lineno">3740</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.streamline-toggle" onclick="return toggle('ParseElementEnhance.streamline');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.streamline-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.streamline-expanded"><a name="L3741"></a><tt class="py-lineno">3741</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-607" class="py-name"><a title="pyparsing.ParseElementEnhance" class="py-name" href="#" onclick="return doclink('link-607', 'ParseElementEnhance', 'link-588');">ParseElementEnhance</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-608" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-608', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3742"></a><tt class="py-lineno">3742</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3743"></a><tt class="py-lineno">3743</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-609" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-609', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3744"></a><tt class="py-lineno">3744</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L3745"></a><tt class="py-lineno">3745</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.checkRecursion"></a><div id="ParseElementEnhance.checkRecursion-def"><a name="L3746"></a><tt class="py-lineno">3746</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.checkRecursion-toggle" onclick="return toggle('ParseElementEnhance.checkRecursion');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">parseElementList</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.checkRecursion-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.checkRecursion-expanded"><a name="L3747"></a><tt class="py-lineno">3747</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt> <tt class="py-keyword">in</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">:</tt> </tt>
-<a name="L3748"></a><tt class="py-lineno">3748</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-610" class="py-name" targets="Class pyparsing.RecursiveGrammarException=pyparsing.RecursiveGrammarException-class.html"><a title="pyparsing.RecursiveGrammarException" class="py-name" href="#" onclick="return doclink('link-610', 'RecursiveGrammarException', 'link-610');">RecursiveGrammarException</a></tt><tt class="py-op">(</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">+</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3749"></a><tt class="py-lineno">3749</tt> <tt class="py-line"> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">=</tt> <tt class="py-name">parseElementList</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">+</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3750"></a><tt class="py-lineno">3750</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3751"></a><tt class="py-lineno">3751</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-611" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-611', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-name">subRecCheckList</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L3752"></a><tt class="py-lineno">3752</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.validate"></a><div id="ParseElementEnhance.validate-def"><a name="L3753"></a><tt class="py-lineno">3753</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.validate-toggle" onclick="return toggle('ParseElementEnhance.validate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#validate">validate</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">validateTrace</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.validate-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.validate-expanded"><a name="L3754"></a><tt class="py-lineno">3754</tt> <tt class="py-line"> <tt class="py-name">tmp</tt> <tt class="py-op">=</tt> <tt class="py-name">validateTrace</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">+</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt> </tt>
-<a name="L3755"></a><tt class="py-lineno">3755</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3756"></a><tt class="py-lineno">3756</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-612" class="py-name"><a title="pyparsing.Forward.validate
-pyparsing.ParseElementEnhance.validate
-pyparsing.ParseExpression.validate
-pyparsing.ParserElement.validate" class="py-name" href="#" onclick="return doclink('link-612', 'validate', 'link-524');">validate</a></tt><tt class="py-op">(</tt><tt class="py-name">tmp</tt><tt class="py-op">)</tt> </tt>
-<a name="L3757"></a><tt class="py-lineno">3757</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-613" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-613', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L3758"></a><tt class="py-lineno">3758</tt> <tt class="py-line"> </tt>
-<a name="ParseElementEnhance.__str__"></a><div id="ParseElementEnhance.__str__-def"><a name="L3759"></a><tt class="py-lineno">3759</tt> <a class="py-toggle" href="#" id="ParseElementEnhance.__str__-toggle" onclick="return toggle('ParseElementEnhance.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ParseElementEnhance.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ParseElementEnhance.__str__-expanded"><a name="L3760"></a><tt class="py-lineno">3760</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3761"></a><tt class="py-lineno">3761</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-614" class="py-name"><a title="pyparsing.ParseElementEnhance" class="py-name" href="#" onclick="return doclink('link-614', 'ParseElementEnhance', 'link-588');">ParseElementEnhance</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-615" class="py-name"><a title="pyparsing.And.__str__
-pyparsing.CharsNotIn.__str__
-pyparsing.Each.__str__
-pyparsing.Forward.__str__
-pyparsing.MatchFirst.__str__
-pyparsing.NotAny.__str__
-pyparsing.OneOrMore.__str__
-pyparsing.Optional.__str__
-pyparsing.Or.__str__
-pyparsing.ParseBaseException.__str__
-pyparsing.ParseElementEnhance.__str__
-pyparsing.ParseExpression.__str__
-pyparsing.ParseResults.__str__
-pyparsing.ParserElement.__str__
-pyparsing.QuotedString.__str__
-pyparsing.RecursiveGrammarException.__str__
-pyparsing.Regex.__str__
-pyparsing.Word.__str__
-pyparsing.ZeroOrMore.__str__" class="py-name" href="#" onclick="return doclink('link-615', '__str__', 'link-400');">__str__</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L3762"></a><tt class="py-lineno">3762</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L3763"></a><tt class="py-lineno">3763</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L3764"></a><tt class="py-lineno">3764</tt> <tt class="py-line"> </tt>
-<a name="L3765"></a><tt class="py-lineno">3765</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt> <tt class="py-keyword">and</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3766"></a><tt class="py-lineno">3766</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"%s:(%s)"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt><tt class="py-op">,</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3767"></a><tt class="py-lineno">3767</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3768"></a><tt class="py-lineno">3768</tt> <tt class="py-line"> </tt>
-<a name="FollowedBy"></a><div id="FollowedBy-def"><a name="L3769"></a><tt class="py-lineno">3769</tt> <tt class="py-line"> </tt>
-<a name="L3770"></a><tt class="py-lineno">3770</tt> <a class="py-toggle" href="#" id="FollowedBy-toggle" onclick="return toggle('FollowedBy');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.FollowedBy-class.html">FollowedBy</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="FollowedBy-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="FollowedBy-expanded"><a name="L3771"></a><tt class="py-lineno">3771</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3772"></a><tt class="py-lineno">3772</tt> <tt class="py-line"><tt class="py-docstring"> Lookahead matching of the given parse expression. C{FollowedBy}</tt> </tt>
-<a name="L3773"></a><tt class="py-lineno">3773</tt> <tt class="py-line"><tt class="py-docstring"> does I{not} advance the parsing position within the input string, it only</tt> </tt>
-<a name="L3774"></a><tt class="py-lineno">3774</tt> <tt class="py-line"><tt class="py-docstring"> verifies that the specified parse expression matches at the current</tt> </tt>
-<a name="L3775"></a><tt class="py-lineno">3775</tt> <tt class="py-line"><tt class="py-docstring"> position. C{FollowedBy} always returns a null token list.</tt> </tt>
-<a name="L3776"></a><tt class="py-lineno">3776</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3777"></a><tt class="py-lineno">3777</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3778"></a><tt class="py-lineno">3778</tt> <tt class="py-line"><tt class="py-docstring"> # use FollowedBy to match a label only if it is followed by a ':'</tt> </tt>
-<a name="L3779"></a><tt class="py-lineno">3779</tt> <tt class="py-line"><tt class="py-docstring"> data_word = Word(alphas)</tt> </tt>
-<a name="L3780"></a><tt class="py-lineno">3780</tt> <tt class="py-line"><tt class="py-docstring"> label = data_word + FollowedBy(':')</tt> </tt>
-<a name="L3781"></a><tt class="py-lineno">3781</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))</tt> </tt>
-<a name="L3782"></a><tt class="py-lineno">3782</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3783"></a><tt class="py-lineno">3783</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(attr_expr).parseString("shape: SQUARE color: BLACK posn: upper left").pprint()</tt> </tt>
-<a name="L3784"></a><tt class="py-lineno">3784</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L3785"></a><tt class="py-lineno">3785</tt> <tt class="py-line"><tt class="py-docstring"> [['shape', 'SQUARE'], ['color', 'BLACK'], ['posn', 'upper left']]</tt> </tt>
-<a name="L3786"></a><tt class="py-lineno">3786</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="FollowedBy.__init__"></a><div id="FollowedBy.__init__-def"><a name="L3787"></a><tt class="py-lineno">3787</tt> <a class="py-toggle" href="#" id="FollowedBy.__init__-toggle" onclick="return toggle('FollowedBy.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.FollowedBy-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="FollowedBy.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="FollowedBy.__init__-expanded"><a name="L3788"></a><tt class="py-lineno">3788</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-616" class="py-name" targets="Class pyparsing.FollowedBy=pyparsing.FollowedBy-class.html"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-616', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-617" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-617', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-<a name="L3789"></a><tt class="py-lineno">3789</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3790"></a><tt class="py-lineno">3790</tt> <tt class="py-line"> </tt>
-<a name="FollowedBy.parseImpl"></a><div id="FollowedBy.parseImpl-def"><a name="L3791"></a><tt class="py-lineno">3791</tt> <a class="py-toggle" href="#" id="FollowedBy.parseImpl-toggle" onclick="return toggle('FollowedBy.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.FollowedBy-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="FollowedBy.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="FollowedBy.parseImpl-expanded"><a name="L3792"></a><tt class="py-lineno">3792</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-618" class="py-name"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-618', 'tryParse', 'link-171');">tryParse</a></tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3793"></a><tt class="py-lineno">3793</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div></div><a name="L3794"></a><tt class="py-lineno">3794</tt> <tt class="py-line"> </tt>
-<a name="NotAny"></a><div id="NotAny-def"><a name="L3795"></a><tt class="py-lineno">3795</tt> <tt class="py-line"> </tt>
-<a name="L3796"></a><tt class="py-lineno">3796</tt> <a class="py-toggle" href="#" id="NotAny-toggle" onclick="return toggle('NotAny');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.NotAny-class.html">NotAny</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NotAny-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="NotAny-expanded"><a name="L3797"></a><tt class="py-lineno">3797</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3798"></a><tt class="py-lineno">3798</tt> <tt class="py-line"><tt class="py-docstring"> Lookahead to disallow matching with the given parse expression. C{NotAny}</tt> </tt>
-<a name="L3799"></a><tt class="py-lineno">3799</tt> <tt class="py-line"><tt class="py-docstring"> does I{not} advance the parsing position within the input string, it only</tt> </tt>
-<a name="L3800"></a><tt class="py-lineno">3800</tt> <tt class="py-line"><tt class="py-docstring"> verifies that the specified parse expression does I{not} match at the current</tt> </tt>
-<a name="L3801"></a><tt class="py-lineno">3801</tt> <tt class="py-line"><tt class="py-docstring"> position. Also, C{NotAny} does I{not} skip over leading whitespace. C{NotAny}</tt> </tt>
-<a name="L3802"></a><tt class="py-lineno">3802</tt> <tt class="py-line"><tt class="py-docstring"> always returns a null token list. May be constructed using the '~' operator.</tt> </tt>
-<a name="L3803"></a><tt class="py-lineno">3803</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3804"></a><tt class="py-lineno">3804</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3805"></a><tt class="py-lineno">3805</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3806"></a><tt class="py-lineno">3806</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="NotAny.__init__"></a><div id="NotAny.__init__-def"><a name="L3807"></a><tt class="py-lineno">3807</tt> <a class="py-toggle" href="#" id="NotAny.__init__-toggle" onclick="return toggle('NotAny.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.NotAny-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NotAny.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="NotAny.__init__-expanded"><a name="L3808"></a><tt class="py-lineno">3808</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-619" class="py-name"><a title="pyparsing.NotAny" class="py-name" href="#" onclick="return doclink('link-619', 'NotAny', 'link-305');">NotAny</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-620" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-620', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-<a name="L3809"></a><tt class="py-lineno">3809</tt> <tt class="py-line"> <tt class="py-comment">#~ self.leaveWhitespace()</tt> </tt>
-<a name="L3810"></a><tt class="py-lineno">3810</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> <tt class="py-comment"># do NOT use self.leaveWhitespace(), don't want to propagate to exprs</tt> </tt>
-<a name="L3811"></a><tt class="py-lineno">3811</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3812"></a><tt class="py-lineno">3812</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"Found unwanted token, "</tt><tt class="py-op">+</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L3813"></a><tt class="py-lineno">3813</tt> <tt class="py-line"> </tt>
-<a name="NotAny.parseImpl"></a><div id="NotAny.parseImpl-def"><a name="L3814"></a><tt class="py-lineno">3814</tt> <a class="py-toggle" href="#" id="NotAny.parseImpl-toggle" onclick="return toggle('NotAny.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.NotAny-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NotAny.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="NotAny.parseImpl-expanded"><a name="L3815"></a><tt class="py-lineno">3815</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-621" class="py-name" targets="Method pyparsing.ParserElement.canParseNext()=pyparsing.ParserElement-class.html#canParseNext"><a title="pyparsing.ParserElement.canParseNext" class="py-name" href="#" onclick="return doclink('link-621', 'canParseNext', 'link-621');">canParseNext</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3816"></a><tt class="py-lineno">3816</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-622" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-622', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L3817"></a><tt class="py-lineno">3817</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L3818"></a><tt class="py-lineno">3818</tt> <tt class="py-line"> </tt>
-<a name="NotAny.__str__"></a><div id="NotAny.__str__-def"><a name="L3819"></a><tt class="py-lineno">3819</tt> <a class="py-toggle" href="#" id="NotAny.__str__-toggle" onclick="return toggle('NotAny.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.NotAny-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="NotAny.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="NotAny.__str__-expanded"><a name="L3820"></a><tt class="py-lineno">3820</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3821"></a><tt class="py-lineno">3821</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3822"></a><tt class="py-lineno">3822</tt> <tt class="py-line"> </tt>
-<a name="L3823"></a><tt class="py-lineno">3823</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3824"></a><tt class="py-lineno">3824</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"~{"</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}"</tt> </tt>
-<a name="L3825"></a><tt class="py-lineno">3825</tt> <tt class="py-line"> </tt>
-<a name="L3826"></a><tt class="py-lineno">3826</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3827"></a><tt class="py-lineno">3827</tt> <tt class="py-line"> </tt>
-<a name="_MultipleMatch"></a><div id="_MultipleMatch-def"><a name="L3828"></a><tt class="py-lineno">3828</tt> <a class="py-toggle" href="#" id="_MultipleMatch-toggle" onclick="return toggle('_MultipleMatch');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._MultipleMatch-class.html">_MultipleMatch</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_MultipleMatch-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_MultipleMatch-expanded"><a name="_MultipleMatch.__init__"></a><div id="_MultipleMatch.__init__-def"><a name="L3829"></a><tt class="py-lineno">3829</tt> <a class="py-toggle" href="#" id="_MultipleMatch.__init__-toggle" onclick="return toggle('_MultipleMatch.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._MultipleMatch-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">stopOn</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_MultipleMatch.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_MultipleMatch.__init__-expanded"><a name="L3830"></a><tt class="py-lineno">3830</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt class="py-name">_MultipleMatch</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-623" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-623', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-<a name="L3831"></a><tt class="py-lineno">3831</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L3832"></a><tt class="py-lineno">3832</tt> <tt class="py-line"> <tt class="py-name">ender</tt> <tt class="py-op">=</tt> <tt class="py-name">stopOn</tt> </tt>
-<a name="L3833"></a><tt class="py-lineno">3833</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">ender</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3834"></a><tt class="py-lineno">3834</tt> <tt class="py-line"> <tt class="py-name">ender</tt> <tt class="py-op">=</tt> <tt id="link-624" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-624', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt><tt class="py-name">ender</tt><tt class="py-op">)</tt> </tt>
-<a name="L3835"></a><tt class="py-lineno">3835</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_ender</tt> <tt class="py-op">=</tt> <tt class="py-op">~</tt><tt class="py-name">ender</tt> <tt class="py-keyword">if</tt> <tt class="py-name">ender</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">else</tt> <tt class="py-name">None</tt> </tt>
-</div><a name="L3836"></a><tt class="py-lineno">3836</tt> <tt class="py-line"> </tt>
-<a name="_MultipleMatch.parseImpl"></a><div id="_MultipleMatch.parseImpl-def"><a name="L3837"></a><tt class="py-lineno">3837</tt> <a class="py-toggle" href="#" id="_MultipleMatch.parseImpl-toggle" onclick="return toggle('_MultipleMatch.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._MultipleMatch-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_MultipleMatch.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_MultipleMatch.parseImpl-expanded"><a name="L3838"></a><tt class="py-lineno">3838</tt> <tt class="py-line"> <tt class="py-name">self_expr_parse</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> </tt>
-<a name="L3839"></a><tt class="py-lineno">3839</tt> <tt class="py-line"> <tt class="py-name">self_skip_ignorables</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_skipIgnorables</tt> </tt>
-<a name="L3840"></a><tt class="py-lineno">3840</tt> <tt class="py-line"> <tt class="py-name">check_ender</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_ender</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> </tt>
-<a name="L3841"></a><tt class="py-lineno">3841</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">check_ender</tt><tt class="py-op">:</tt> </tt>
-<a name="L3842"></a><tt class="py-lineno">3842</tt> <tt class="py-line"> <tt class="py-name">try_not_ender</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">not_ender</tt><tt class="py-op">.</tt><tt id="link-625" class="py-name"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-625', 'tryParse', 'link-171');">tryParse</a></tt> </tt>
-<a name="L3843"></a><tt class="py-lineno">3843</tt> <tt class="py-line"> </tt>
-<a name="L3844"></a><tt class="py-lineno">3844</tt> <tt class="py-line"> <tt class="py-comment"># must be at least one (but first see if we are the stopOn sentinel;</tt> </tt>
-<a name="L3845"></a><tt class="py-lineno">3845</tt> <tt class="py-line"> <tt class="py-comment"># if so, fail)</tt> </tt>
-<a name="L3846"></a><tt class="py-lineno">3846</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">check_ender</tt><tt class="py-op">:</tt> </tt>
-<a name="L3847"></a><tt class="py-lineno">3847</tt> <tt class="py-line"> <tt class="py-name">try_not_ender</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L3848"></a><tt class="py-lineno">3848</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self_expr_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3849"></a><tt class="py-lineno">3849</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3850"></a><tt class="py-lineno">3850</tt> <tt class="py-line"> <tt class="py-name">hasIgnoreExprs</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-keyword">not</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L3851"></a><tt class="py-lineno">3851</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L3852"></a><tt class="py-lineno">3852</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">check_ender</tt><tt class="py-op">:</tt> </tt>
-<a name="L3853"></a><tt class="py-lineno">3853</tt> <tt class="py-line"> <tt class="py-name">try_not_ender</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L3854"></a><tt class="py-lineno">3854</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasIgnoreExprs</tt><tt class="py-op">:</tt> </tt>
-<a name="L3855"></a><tt class="py-lineno">3855</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">self_skip_ignorables</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3856"></a><tt class="py-lineno">3856</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3857"></a><tt class="py-lineno">3857</tt> <tt class="py-line"> <tt class="py-name">preloc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L3858"></a><tt class="py-lineno">3858</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tmptokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self_expr_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">preloc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3859"></a><tt class="py-lineno">3859</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">tmptokens</tt> <tt class="py-keyword">or</tt> <tt class="py-name">tmptokens</tt><tt class="py-op">.</tt><tt id="link-626" class="py-name"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-626', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3860"></a><tt class="py-lineno">3860</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">+=</tt> <tt class="py-name">tmptokens</tt> </tt>
-<a name="L3861"></a><tt class="py-lineno">3861</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt id="link-627" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-627', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">,</tt><tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3862"></a><tt class="py-lineno">3862</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L3863"></a><tt class="py-lineno">3863</tt> <tt class="py-line"> </tt>
-<a name="L3864"></a><tt class="py-lineno">3864</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> </tt>
-</div></div><a name="L3865"></a><tt class="py-lineno">3865</tt> <tt class="py-line"> </tt>
-<a name="OneOrMore"></a><div id="OneOrMore-def"><a name="L3866"></a><tt class="py-lineno">3866</tt> <a class="py-toggle" href="#" id="OneOrMore-toggle" onclick="return toggle('OneOrMore');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.OneOrMore-class.html">OneOrMore</a><tt class="py-op">(</tt><tt class="py-base-class">_MultipleMatch</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OneOrMore-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="OneOrMore-expanded"><a name="L3867"></a><tt class="py-lineno">3867</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3868"></a><tt class="py-lineno">3868</tt> <tt class="py-line"><tt class="py-docstring"> Repetition of one or more of the given expression.</tt> </tt>
-<a name="L3869"></a><tt class="py-lineno">3869</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3870"></a><tt class="py-lineno">3870</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L3871"></a><tt class="py-lineno">3871</tt> <tt class="py-line"><tt class="py-docstring"> - expr - expression that must match one or more times</tt> </tt>
-<a name="L3872"></a><tt class="py-lineno">3872</tt> <tt class="py-line"><tt class="py-docstring"> - stopOn - (default=C{None}) - expression for a terminating sentinel</tt> </tt>
-<a name="L3873"></a><tt class="py-lineno">3873</tt> <tt class="py-line"><tt class="py-docstring"> (only required if the sentinel would ordinarily match the repetition </tt> </tt>
-<a name="L3874"></a><tt class="py-lineno">3874</tt> <tt class="py-line"><tt class="py-docstring"> expression) </tt> </tt>
-<a name="L3875"></a><tt class="py-lineno">3875</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3876"></a><tt class="py-lineno">3876</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3877"></a><tt class="py-lineno">3877</tt> <tt class="py-line"><tt class="py-docstring"> data_word = Word(alphas)</tt> </tt>
-<a name="L3878"></a><tt class="py-lineno">3878</tt> <tt class="py-line"><tt class="py-docstring"> label = data_word + FollowedBy(':')</tt> </tt>
-<a name="L3879"></a><tt class="py-lineno">3879</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))</tt> </tt>
-<a name="L3880"></a><tt class="py-lineno">3880</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3881"></a><tt class="py-lineno">3881</tt> <tt class="py-line"><tt class="py-docstring"> text = "shape: SQUARE posn: upper left color: BLACK"</tt> </tt>
-<a name="L3882"></a><tt class="py-lineno">3882</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(attr_expr).parseString(text).pprint() # Fail! read 'color' as data instead of next label -> [['shape', 'SQUARE color']]</tt> </tt>
-<a name="L3883"></a><tt class="py-lineno">3883</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3884"></a><tt class="py-lineno">3884</tt> <tt class="py-line"><tt class="py-docstring"> # use stopOn attribute for OneOrMore to avoid reading label string as part of the data</tt> </tt>
-<a name="L3885"></a><tt class="py-lineno">3885</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))</tt> </tt>
-<a name="L3886"></a><tt class="py-lineno">3886</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(attr_expr).parseString(text).pprint() # Better -> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'BLACK']]</tt> </tt>
-<a name="L3887"></a><tt class="py-lineno">3887</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3888"></a><tt class="py-lineno">3888</tt> <tt class="py-line"><tt class="py-docstring"> # could also be written as</tt> </tt>
-<a name="L3889"></a><tt class="py-lineno">3889</tt> <tt class="py-line"><tt class="py-docstring"> (attr_expr * (1,)).parseString(text).pprint()</tt> </tt>
-<a name="L3890"></a><tt class="py-lineno">3890</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L3891"></a><tt class="py-lineno">3891</tt> <tt class="py-line"> </tt>
-<a name="OneOrMore.__str__"></a><div id="OneOrMore.__str__-def"><a name="L3892"></a><tt class="py-lineno">3892</tt> <a class="py-toggle" href="#" id="OneOrMore.__str__-toggle" onclick="return toggle('OneOrMore.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.OneOrMore-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OneOrMore.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="OneOrMore.__str__-expanded"><a name="L3893"></a><tt class="py-lineno">3893</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3894"></a><tt class="py-lineno">3894</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3895"></a><tt class="py-lineno">3895</tt> <tt class="py-line"> </tt>
-<a name="L3896"></a><tt class="py-lineno">3896</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3897"></a><tt class="py-lineno">3897</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"{"</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"}..."</tt> </tt>
-<a name="L3898"></a><tt class="py-lineno">3898</tt> <tt class="py-line"> </tt>
-<a name="L3899"></a><tt class="py-lineno">3899</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3900"></a><tt class="py-lineno">3900</tt> <tt class="py-line"> </tt>
-<a name="ZeroOrMore"></a><div id="ZeroOrMore-def"><a name="L3901"></a><tt class="py-lineno">3901</tt> <a class="py-toggle" href="#" id="ZeroOrMore-toggle" onclick="return toggle('ZeroOrMore');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.ZeroOrMore-class.html">ZeroOrMore</a><tt class="py-op">(</tt><tt class="py-base-class">_MultipleMatch</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ZeroOrMore-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="ZeroOrMore-expanded"><a name="L3902"></a><tt class="py-lineno">3902</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3903"></a><tt class="py-lineno">3903</tt> <tt class="py-line"><tt class="py-docstring"> Optional repetition of zero or more of the given expression.</tt> </tt>
-<a name="L3904"></a><tt class="py-lineno">3904</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3905"></a><tt class="py-lineno">3905</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L3906"></a><tt class="py-lineno">3906</tt> <tt class="py-line"><tt class="py-docstring"> - expr - expression that must match zero or more times</tt> </tt>
-<a name="L3907"></a><tt class="py-lineno">3907</tt> <tt class="py-line"><tt class="py-docstring"> - stopOn - (default=C{None}) - expression for a terminating sentinel</tt> </tt>
-<a name="L3908"></a><tt class="py-lineno">3908</tt> <tt class="py-line"><tt class="py-docstring"> (only required if the sentinel would ordinarily match the repetition </tt> </tt>
-<a name="L3909"></a><tt class="py-lineno">3909</tt> <tt class="py-line"><tt class="py-docstring"> expression) </tt> </tt>
-<a name="L3910"></a><tt class="py-lineno">3910</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3911"></a><tt class="py-lineno">3911</tt> <tt class="py-line"><tt class="py-docstring"> Example: similar to L{OneOrMore}</tt> </tt>
-<a name="L3912"></a><tt class="py-lineno">3912</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="ZeroOrMore.__init__"></a><div id="ZeroOrMore.__init__-def"><a name="L3913"></a><tt class="py-lineno">3913</tt> <a class="py-toggle" href="#" id="ZeroOrMore.__init__-toggle" onclick="return toggle('ZeroOrMore.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ZeroOrMore-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">stopOn</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ZeroOrMore.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ZeroOrMore.__init__-expanded"><a name="L3914"></a><tt class="py-lineno">3914</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-628" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-628', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-629" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-629', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">,</tt> <tt class="py-name">stopOn</tt><tt class="py-op">=</tt><tt class="py-name">stopOn</tt><tt class="py-op">)</tt> </tt>
-<a name="L3915"></a><tt class="py-lineno">3915</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3916"></a><tt class="py-lineno">3916</tt> <tt class="py-line"> </tt>
-<a name="ZeroOrMore.parseImpl"></a><div id="ZeroOrMore.parseImpl-def"><a name="L3917"></a><tt class="py-lineno">3917</tt> <a class="py-toggle" href="#" id="ZeroOrMore.parseImpl-toggle" onclick="return toggle('ZeroOrMore.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ZeroOrMore-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ZeroOrMore.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ZeroOrMore.parseImpl-expanded"><a name="L3918"></a><tt class="py-lineno">3918</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3919"></a><tt class="py-lineno">3919</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-630" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-630', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-631" class="py-name"><a title="pyparsing.And.parseImpl
-pyparsing.CaselessKeyword.parseImpl
-pyparsing.CaselessLiteral.parseImpl
-pyparsing.CharsNotIn.parseImpl
-pyparsing.CloseMatch.parseImpl
-pyparsing.Each.parseImpl
-pyparsing.FollowedBy.parseImpl
-pyparsing.GoToColumn.parseImpl
-pyparsing.Keyword.parseImpl
-pyparsing.LineEnd.parseImpl
-pyparsing.LineStart.parseImpl
-pyparsing.Literal.parseImpl
-pyparsing.MatchFirst.parseImpl
-pyparsing.NoMatch.parseImpl
-pyparsing.NotAny.parseImpl
-pyparsing.Optional.parseImpl
-pyparsing.Or.parseImpl
-pyparsing.ParseElementEnhance.parseImpl
-pyparsing.ParserElement.parseImpl
-pyparsing.QuotedString.parseImpl
-pyparsing.Regex.parseImpl
-pyparsing.SkipTo.parseImpl
-pyparsing.StringEnd.parseImpl
-pyparsing.StringStart.parseImpl
-pyparsing.White.parseImpl
-pyparsing.Word.parseImpl
-pyparsing.WordEnd.parseImpl
-pyparsing.WordStart.parseImpl
-pyparsing.ZeroOrMore.parseImpl" class="py-name" href="#" onclick="return doclink('link-631', 'parseImpl', 'link-152');">parseImpl</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">)</tt> </tt>
-<a name="L3920"></a><tt class="py-lineno">3920</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt id="link-632" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-632', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">,</tt><tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3921"></a><tt class="py-lineno">3921</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L3922"></a><tt class="py-lineno">3922</tt> <tt class="py-line"> </tt>
-<a name="ZeroOrMore.__str__"></a><div id="ZeroOrMore.__str__-def"><a name="L3923"></a><tt class="py-lineno">3923</tt> <a class="py-toggle" href="#" id="ZeroOrMore.__str__-toggle" onclick="return toggle('ZeroOrMore.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.ZeroOrMore-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="ZeroOrMore.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="ZeroOrMore.__str__-expanded"><a name="L3924"></a><tt class="py-lineno">3924</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3925"></a><tt class="py-lineno">3925</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3926"></a><tt class="py-lineno">3926</tt> <tt class="py-line"> </tt>
-<a name="L3927"></a><tt class="py-lineno">3927</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L3928"></a><tt class="py-lineno">3928</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"["</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"]..."</tt> </tt>
-<a name="L3929"></a><tt class="py-lineno">3929</tt> <tt class="py-line"> </tt>
-<a name="L3930"></a><tt class="py-lineno">3930</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L3931"></a><tt class="py-lineno">3931</tt> <tt class="py-line"> </tt>
-<a name="_NullToken"></a><div id="_NullToken-def"><a name="L3932"></a><tt class="py-lineno">3932</tt> <a class="py-toggle" href="#" id="_NullToken-toggle" onclick="return toggle('_NullToken');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._NullToken-class.html">_NullToken</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_NullToken-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_NullToken-expanded"><a name="_NullToken.__bool__"></a><div id="_NullToken.__bool__-def"><a name="L3933"></a><tt class="py-lineno">3933</tt> <a class="py-toggle" href="#" id="_NullToken.__bool__-toggle" onclick="return toggle('_NullToken.__bool__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._NullToken-class.html#__bool__">__bool__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_NullToken.__bool__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_NullToken.__bool__-expanded"><a name="L3934"></a><tt class="py-lineno">3934</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="L3935"></a><tt class="py-lineno">3935</tt> <tt class="py-line"> <tt class="py-name">__nonzero__</tt> <tt class="py-op">=</tt> <tt id="link-633" class="py-name"><a title="pyparsing.ParseResults.__bool__" class="py-name" href="#" onclick="return doclink('link-633', '__bool__', 'link-52');">__bool__</a></tt> </tt>
-<a name="_NullToken.__str__"></a><div id="_NullToken.__str__-def"><a name="L3936"></a><tt class="py-lineno">3936</tt> <a class="py-toggle" href="#" id="_NullToken.__str__-toggle" onclick="return toggle('_NullToken.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._NullToken-class.html#__str__">__str__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_NullToken.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_NullToken.__str__-expanded"><a name="L3937"></a><tt class="py-lineno">3937</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt> </tt>
-</div></div><a name="L3938"></a><tt class="py-lineno">3938</tt> <tt class="py-line"> </tt>
-<a name="L3939"></a><tt class="py-lineno">3939</tt> <tt class="py-line"><tt id="link-634" class="py-name" targets="Variable pyparsing._optionalNotMatched=pyparsing-module.html#_optionalNotMatched"><a title="pyparsing._optionalNotMatched" class="py-name" href="#" onclick="return doclink('link-634', '_optionalNotMatched', 'link-634');">_optionalNotMatched</a></tt> <tt class="py-op">=</tt> <tt class="py-name">_NullToken</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="Optional"></a><div id="Optional-def"><a name="L3940"></a><tt class="py-lineno">3940</tt> <a class="py-toggle" href="#" id="Optional-toggle" onclick="return toggle('Optional');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Optional-class.html">Optional</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Optional-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Optional-expanded"><a name="L3941"></a><tt class="py-lineno">3941</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L3942"></a><tt class="py-lineno">3942</tt> <tt class="py-line"><tt class="py-docstring"> Optional matching of the given expression.</tt> </tt>
-<a name="L3943"></a><tt class="py-lineno">3943</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3944"></a><tt class="py-lineno">3944</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L3945"></a><tt class="py-lineno">3945</tt> <tt class="py-line"><tt class="py-docstring"> - expr - expression that must match zero or more times</tt> </tt>
-<a name="L3946"></a><tt class="py-lineno">3946</tt> <tt class="py-line"><tt class="py-docstring"> - default (optional) - value to be returned if the optional expression is not found.</tt> </tt>
-<a name="L3947"></a><tt class="py-lineno">3947</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3948"></a><tt class="py-lineno">3948</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L3949"></a><tt class="py-lineno">3949</tt> <tt class="py-line"><tt class="py-docstring"> # US postal code can be a 5-digit zip, plus optional 4-digit qualifier</tt> </tt>
-<a name="L3950"></a><tt class="py-lineno">3950</tt> <tt class="py-line"><tt class="py-docstring"> zip = Combine(Word(nums, exact=5) + Optional('-' + Word(nums, exact=4)))</tt> </tt>
-<a name="L3951"></a><tt class="py-lineno">3951</tt> <tt class="py-line"><tt class="py-docstring"> zip.runTests('''</tt> </tt>
-<a name="L3952"></a><tt class="py-lineno">3952</tt> <tt class="py-line"><tt class="py-docstring"> # traditional ZIP code</tt> </tt>
-<a name="L3953"></a><tt class="py-lineno">3953</tt> <tt class="py-line"><tt class="py-docstring"> 12345</tt> </tt>
-<a name="L3954"></a><tt class="py-lineno">3954</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3955"></a><tt class="py-lineno">3955</tt> <tt class="py-line"><tt class="py-docstring"> # ZIP+4 form</tt> </tt>
-<a name="L3956"></a><tt class="py-lineno">3956</tt> <tt class="py-line"><tt class="py-docstring"> 12101-0001</tt> </tt>
-<a name="L3957"></a><tt class="py-lineno">3957</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L3958"></a><tt class="py-lineno">3958</tt> <tt class="py-line"><tt class="py-docstring"> # invalid ZIP</tt> </tt>
-<a name="L3959"></a><tt class="py-lineno">3959</tt> <tt class="py-line"><tt class="py-docstring"> 98765-</tt> </tt>
-<a name="L3960"></a><tt class="py-lineno">3960</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L3961"></a><tt class="py-lineno">3961</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L3962"></a><tt class="py-lineno">3962</tt> <tt class="py-line"><tt class="py-docstring"> # traditional ZIP code</tt> </tt>
-<a name="L3963"></a><tt class="py-lineno">3963</tt> <tt class="py-line"><tt class="py-docstring"> 12345</tt> </tt>
-<a name="L3964"></a><tt class="py-lineno">3964</tt> <tt class="py-line"><tt class="py-docstring"> ['12345']</tt> </tt>
-<a name="L3965"></a><tt class="py-lineno">3965</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3966"></a><tt class="py-lineno">3966</tt> <tt class="py-line"><tt class="py-docstring"> # ZIP+4 form</tt> </tt>
-<a name="L3967"></a><tt class="py-lineno">3967</tt> <tt class="py-line"><tt class="py-docstring"> 12101-0001</tt> </tt>
-<a name="L3968"></a><tt class="py-lineno">3968</tt> <tt class="py-line"><tt class="py-docstring"> ['12101-0001']</tt> </tt>
-<a name="L3969"></a><tt class="py-lineno">3969</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L3970"></a><tt class="py-lineno">3970</tt> <tt class="py-line"><tt class="py-docstring"> # invalid ZIP</tt> </tt>
-<a name="L3971"></a><tt class="py-lineno">3971</tt> <tt class="py-line"><tt class="py-docstring"> 98765-</tt> </tt>
-<a name="L3972"></a><tt class="py-lineno">3972</tt> <tt class="py-line"><tt class="py-docstring"> ^</tt> </tt>
-<a name="L3973"></a><tt class="py-lineno">3973</tt> <tt class="py-line"><tt class="py-docstring"> FAIL: Expected end of text (at char 5), (line:1, col:6)</tt> </tt>
-<a name="L3974"></a><tt class="py-lineno">3974</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Optional.__init__"></a><div id="Optional.__init__-def"><a name="L3975"></a><tt class="py-lineno">3975</tt> <a class="py-toggle" href="#" id="Optional.__init__-toggle" onclick="return toggle('Optional.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Optional-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">default</tt><tt class="py-op">=</tt><tt id="link-635" class="py-name"><a title="pyparsing._optionalNotMatched" class="py-name" href="#" onclick="return doclink('link-635', '_optionalNotMatched', 'link-634');">_optionalNotMatched</a></tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Optional.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Optional.__init__-expanded"><a name="L3976"></a><tt class="py-lineno">3976</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-636" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-636', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-637" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-637', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3977"></a><tt class="py-lineno">3977</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> </tt>
-<a name="L3978"></a><tt class="py-lineno">3978</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">defaultValue</tt> <tt class="py-op">=</tt> <tt class="py-name">default</tt> </tt>
-<a name="L3979"></a><tt class="py-lineno">3979</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L3980"></a><tt class="py-lineno">3980</tt> <tt class="py-line"> </tt>
-<a name="Optional.parseImpl"></a><div id="Optional.parseImpl-def"><a name="L3981"></a><tt class="py-lineno">3981</tt> <a class="py-toggle" href="#" id="Optional.parseImpl-toggle" onclick="return toggle('Optional.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Optional-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Optional.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Optional.parseImpl-expanded"><a name="L3982"></a><tt class="py-lineno">3982</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L3983"></a><tt class="py-lineno">3983</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt><tt class="py-op">(</tt> <tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-<a name="L3984"></a><tt class="py-lineno">3984</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt id="link-638" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-638', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">,</tt><tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3985"></a><tt class="py-lineno">3985</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">defaultValue</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt id="link-639" class="py-name"><a title="pyparsing._optionalNotMatched" class="py-name" href="#" onclick="return doclink('link-639', '_optionalNotMatched', 'link-634');">_optionalNotMatched</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L3986"></a><tt class="py-lineno">3986</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">:</tt> </tt>
-<a name="L3987"></a><tt class="py-lineno">3987</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt id="link-640" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-640', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">defaultValue</tt> <tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L3988"></a><tt class="py-lineno">3988</tt> <tt class="py-line"> <tt class="py-name">tokens</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">defaultValue</tt> </tt>
-<a name="L3989"></a><tt class="py-lineno">3989</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3990"></a><tt class="py-lineno">3990</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">defaultValue</tt> <tt class="py-op">]</tt> </tt>
-<a name="L3991"></a><tt class="py-lineno">3991</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L3992"></a><tt class="py-lineno">3992</tt> <tt class="py-line"> <tt class="py-name">tokens</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L3993"></a><tt class="py-lineno">3993</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt> </tt>
-</div><a name="L3994"></a><tt class="py-lineno">3994</tt> <tt class="py-line"> </tt>
-<a name="Optional.__str__"></a><div id="Optional.__str__-def"><a name="L3995"></a><tt class="py-lineno">3995</tt> <a class="py-toggle" href="#" id="Optional.__str__-toggle" onclick="return toggle('Optional.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Optional-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Optional.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Optional.__str__-expanded"><a name="L3996"></a><tt class="py-lineno">3996</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L3997"></a><tt class="py-lineno">3997</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L3998"></a><tt class="py-lineno">3998</tt> <tt class="py-line"> </tt>
-<a name="L3999"></a><tt class="py-lineno">3999</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4000"></a><tt class="py-lineno">4000</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-string">"["</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"]"</tt> </tt>
-<a name="L4001"></a><tt class="py-lineno">4001</tt> <tt class="py-line"> </tt>
-<a name="L4002"></a><tt class="py-lineno">4002</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> </tt>
-</div></div><a name="L4003"></a><tt class="py-lineno">4003</tt> <tt class="py-line"> </tt>
-<a name="SkipTo"></a><div id="SkipTo-def"><a name="L4004"></a><tt class="py-lineno">4004</tt> <a class="py-toggle" href="#" id="SkipTo-toggle" onclick="return toggle('SkipTo');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.SkipTo-class.html">SkipTo</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="SkipTo-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="SkipTo-expanded"><a name="L4005"></a><tt class="py-lineno">4005</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4006"></a><tt class="py-lineno">4006</tt> <tt class="py-line"><tt class="py-docstring"> Token for skipping over all undefined text until the matched expression is found.</tt> </tt>
-<a name="L4007"></a><tt class="py-lineno">4007</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4008"></a><tt class="py-lineno">4008</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L4009"></a><tt class="py-lineno">4009</tt> <tt class="py-line"><tt class="py-docstring"> - expr - target expression marking the end of the data to be skipped</tt> </tt>
-<a name="L4010"></a><tt class="py-lineno">4010</tt> <tt class="py-line"><tt class="py-docstring"> - include - (default=C{False}) if True, the target expression is also parsed </tt> </tt>
-<a name="L4011"></a><tt class="py-lineno">4011</tt> <tt class="py-line"><tt class="py-docstring"> (the skipped text and target expression are returned as a 2-element list).</tt> </tt>
-<a name="L4012"></a><tt class="py-lineno">4012</tt> <tt class="py-line"><tt class="py-docstring"> - ignore - (default=C{None}) used to define grammars (typically quoted strings and </tt> </tt>
-<a name="L4013"></a><tt class="py-lineno">4013</tt> <tt class="py-line"><tt class="py-docstring"> comments) that might contain false matches to the target expression</tt> </tt>
-<a name="L4014"></a><tt class="py-lineno">4014</tt> <tt class="py-line"><tt class="py-docstring"> - failOn - (default=C{None}) define expressions that are not allowed to be </tt> </tt>
-<a name="L4015"></a><tt class="py-lineno">4015</tt> <tt class="py-line"><tt class="py-docstring"> included in the skipped test; if found before the target expression is found, </tt> </tt>
-<a name="L4016"></a><tt class="py-lineno">4016</tt> <tt class="py-line"><tt class="py-docstring"> the SkipTo is not a match</tt> </tt>
-<a name="L4017"></a><tt class="py-lineno">4017</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4018"></a><tt class="py-lineno">4018</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4019"></a><tt class="py-lineno">4019</tt> <tt class="py-line"><tt class="py-docstring"> report = '''</tt> </tt>
-<a name="L4020"></a><tt class="py-lineno">4020</tt> <tt class="py-line"><tt class="py-docstring"> Outstanding Issues Report - 1 Jan 2000</tt> </tt>
-<a name="L4021"></a><tt class="py-lineno">4021</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4022"></a><tt class="py-lineno">4022</tt> <tt class="py-line"><tt class="py-docstring"> # | Severity | Description | Days Open</tt> </tt>
-<a name="L4023"></a><tt class="py-lineno">4023</tt> <tt class="py-line"><tt class="py-docstring"> -----+----------+-------------------------------------------+-----------</tt> </tt>
-<a name="L4024"></a><tt class="py-lineno">4024</tt> <tt class="py-line"><tt class="py-docstring"> 101 | Critical | Intermittent system crash | 6</tt> </tt>
-<a name="L4025"></a><tt class="py-lineno">4025</tt> <tt class="py-line"><tt class="py-docstring"> 94 | Cosmetic | Spelling error on Login ('log|n') | 14</tt> </tt>
-<a name="L4026"></a><tt class="py-lineno">4026</tt> <tt class="py-line"><tt class="py-docstring"> 79 | Minor | System slow when running too many reports | 47</tt> </tt>
-<a name="L4027"></a><tt class="py-lineno">4027</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L4028"></a><tt class="py-lineno">4028</tt> <tt class="py-line"><tt class="py-docstring"> integer = Word(nums)</tt> </tt>
-<a name="L4029"></a><tt class="py-lineno">4029</tt> <tt class="py-line"><tt class="py-docstring"> SEP = Suppress('|')</tt> </tt>
-<a name="L4030"></a><tt class="py-lineno">4030</tt> <tt class="py-line"><tt class="py-docstring"> # use SkipTo to simply match everything up until the next SEP</tt> </tt>
-<a name="L4031"></a><tt class="py-lineno">4031</tt> <tt class="py-line"><tt class="py-docstring"> # - ignore quoted strings, so that a '|' character inside a quoted string does not match</tt> </tt>
-<a name="L4032"></a><tt class="py-lineno">4032</tt> <tt class="py-line"><tt class="py-docstring"> # - parse action will call token.strip() for each matched token, i.e., the description body</tt> </tt>
-<a name="L4033"></a><tt class="py-lineno">4033</tt> <tt class="py-line"><tt class="py-docstring"> string_data = SkipTo(SEP, ignore=quotedString)</tt> </tt>
-<a name="L4034"></a><tt class="py-lineno">4034</tt> <tt class="py-line"><tt class="py-docstring"> string_data.setParseAction(tokenMap(str.strip))</tt> </tt>
-<a name="L4035"></a><tt class="py-lineno">4035</tt> <tt class="py-line"><tt class="py-docstring"> ticket_expr = (integer("issue_num") + SEP </tt> </tt>
-<a name="L4036"></a><tt class="py-lineno">4036</tt> <tt class="py-line"><tt class="py-docstring"> + string_data("sev") + SEP </tt> </tt>
-<a name="L4037"></a><tt class="py-lineno">4037</tt> <tt class="py-line"><tt class="py-docstring"> + string_data("desc") + SEP </tt> </tt>
-<a name="L4038"></a><tt class="py-lineno">4038</tt> <tt class="py-line"><tt class="py-docstring"> + integer("days_open"))</tt> </tt>
-<a name="L4039"></a><tt class="py-lineno">4039</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4040"></a><tt class="py-lineno">4040</tt> <tt class="py-line"><tt class="py-docstring"> for tkt in ticket_expr.searchString(report):</tt> </tt>
-<a name="L4041"></a><tt class="py-lineno">4041</tt> <tt class="py-line"><tt class="py-docstring"> print tkt.dump()</tt> </tt>
-<a name="L4042"></a><tt class="py-lineno">4042</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4043"></a><tt class="py-lineno">4043</tt> <tt class="py-line"><tt class="py-docstring"> ['101', 'Critical', 'Intermittent system crash', '6']</tt> </tt>
-<a name="L4044"></a><tt class="py-lineno">4044</tt> <tt class="py-line"><tt class="py-docstring"> - days_open: 6</tt> </tt>
-<a name="L4045"></a><tt class="py-lineno">4045</tt> <tt class="py-line"><tt class="py-docstring"> - desc: Intermittent system crash</tt> </tt>
-<a name="L4046"></a><tt class="py-lineno">4046</tt> <tt class="py-line"><tt class="py-docstring"> - issue_num: 101</tt> </tt>
-<a name="L4047"></a><tt class="py-lineno">4047</tt> <tt class="py-line"><tt class="py-docstring"> - sev: Critical</tt> </tt>
-<a name="L4048"></a><tt class="py-lineno">4048</tt> <tt class="py-line"><tt class="py-docstring"> ['94', 'Cosmetic', "Spelling error on Login ('log|n')", '14']</tt> </tt>
-<a name="L4049"></a><tt class="py-lineno">4049</tt> <tt class="py-line"><tt class="py-docstring"> - days_open: 14</tt> </tt>
-<a name="L4050"></a><tt class="py-lineno">4050</tt> <tt class="py-line"><tt class="py-docstring"> - desc: Spelling error on Login ('log|n')</tt> </tt>
-<a name="L4051"></a><tt class="py-lineno">4051</tt> <tt class="py-line"><tt class="py-docstring"> - issue_num: 94</tt> </tt>
-<a name="L4052"></a><tt class="py-lineno">4052</tt> <tt class="py-line"><tt class="py-docstring"> - sev: Cosmetic</tt> </tt>
-<a name="L4053"></a><tt class="py-lineno">4053</tt> <tt class="py-line"><tt class="py-docstring"> ['79', 'Minor', 'System slow when running too many reports', '47']</tt> </tt>
-<a name="L4054"></a><tt class="py-lineno">4054</tt> <tt class="py-line"><tt class="py-docstring"> - days_open: 47</tt> </tt>
-<a name="L4055"></a><tt class="py-lineno">4055</tt> <tt class="py-line"><tt class="py-docstring"> - desc: System slow when running too many reports</tt> </tt>
-<a name="L4056"></a><tt class="py-lineno">4056</tt> <tt class="py-line"><tt class="py-docstring"> - issue_num: 79</tt> </tt>
-<a name="L4057"></a><tt class="py-lineno">4057</tt> <tt class="py-line"><tt class="py-docstring"> - sev: Minor</tt> </tt>
-<a name="L4058"></a><tt class="py-lineno">4058</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="SkipTo.__init__"></a><div id="SkipTo.__init__-def"><a name="L4059"></a><tt class="py-lineno">4059</tt> <a class="py-toggle" href="#" id="SkipTo.__init__-toggle" onclick="return toggle('SkipTo.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.SkipTo-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">,</tt> <tt class="py-param">include</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-param">ignore</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">failOn</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="SkipTo.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="SkipTo.__init__-expanded"><a name="L4060"></a><tt class="py-lineno">4060</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-641" class="py-name" targets="Class pyparsing.SkipTo=pyparsing.SkipTo-class.html"><a title="pyparsing.SkipTo" class="py-name" href="#" onclick="return doclink('link-641', 'SkipTo', 'link-641');">SkipTo</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-642" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-642', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4061"></a><tt class="py-lineno">4061</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExpr</tt> <tt class="py-op">=</tt> <tt id="link-643" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-643', 'ignore', 'link-512');">ignore</a></tt> </tt>
-<a name="L4062"></a><tt class="py-lineno">4062</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L4063"></a><tt class="py-lineno">4063</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L4064"></a><tt class="py-lineno">4064</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">includeMatch</tt> <tt class="py-op">=</tt> <tt class="py-name">include</tt> </tt>
-<a name="L4065"></a><tt class="py-lineno">4065</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-644" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-644', 'asList', 'link-37');">asList</a></tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L4066"></a><tt class="py-lineno">4066</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">failOn</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4067"></a><tt class="py-lineno">4067</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failOn</tt> <tt class="py-op">=</tt> <tt id="link-645" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-645', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt><tt class="py-name">failOn</tt><tt class="py-op">)</tt> </tt>
-<a name="L4068"></a><tt class="py-lineno">4068</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4069"></a><tt class="py-lineno">4069</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failOn</tt> <tt class="py-op">=</tt> <tt class="py-name">failOn</tt> </tt>
-<a name="L4070"></a><tt class="py-lineno">4070</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt> <tt class="py-op">=</tt> <tt class="py-string">"No match found for "</tt><tt class="py-op">+</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4071"></a><tt class="py-lineno">4071</tt> <tt class="py-line"> </tt>
-<a name="SkipTo.parseImpl"></a><div id="SkipTo.parseImpl-def"><a name="L4072"></a><tt class="py-lineno">4072</tt> <a class="py-toggle" href="#" id="SkipTo.parseImpl-toggle" onclick="return toggle('SkipTo.parseImpl');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.SkipTo-class.html#parseImpl">parseImpl</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">doActions</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="SkipTo.parseImpl-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="SkipTo.parseImpl-expanded"><a name="L4073"></a><tt class="py-lineno">4073</tt> <tt class="py-line"> <tt class="py-name">startloc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L4074"></a><tt class="py-lineno">4074</tt> <tt class="py-line"> <tt class="py-name">instrlen</tt> <tt class="py-op">=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">)</tt> </tt>
-<a name="L4075"></a><tt class="py-lineno">4075</tt> <tt class="py-line"> <tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> </tt>
-<a name="L4076"></a><tt class="py-lineno">4076</tt> <tt class="py-line"> <tt class="py-name">expr_parse</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">_parse</tt> </tt>
-<a name="L4077"></a><tt class="py-lineno">4077</tt> <tt class="py-line"> <tt class="py-name">self_failOn_canParseNext</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failOn</tt><tt class="py-op">.</tt><tt id="link-646" class="py-name"><a title="pyparsing.ParserElement.canParseNext" class="py-name" href="#" onclick="return doclink('link-646', 'canParseNext', 'link-621');">canParseNext</a></tt> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">failOn</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">else</tt> <tt class="py-name">None</tt> </tt>
-<a name="L4078"></a><tt class="py-lineno">4078</tt> <tt class="py-line"> <tt class="py-name">self_ignoreExpr_tryParse</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExpr</tt><tt class="py-op">.</tt><tt id="link-647" class="py-name"><a title="pyparsing.ParserElement.tryParse" class="py-name" href="#" onclick="return doclink('link-647', 'tryParse', 'link-171');">tryParse</a></tt> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt> <tt class="py-keyword">else</tt> <tt class="py-name">None</tt> </tt>
-<a name="L4079"></a><tt class="py-lineno">4079</tt> <tt class="py-line"> </tt>
-<a name="L4080"></a><tt class="py-lineno">4080</tt> <tt class="py-line"> <tt class="py-name">tmploc</tt> <tt class="py-op">=</tt> <tt class="py-name">loc</tt> </tt>
-<a name="L4081"></a><tt class="py-lineno">4081</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">tmploc</tt> <tt class="py-op"><=</tt> <tt class="py-name">instrlen</tt><tt class="py-op">:</tt> </tt>
-<a name="L4082"></a><tt class="py-lineno">4082</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self_failOn_canParseNext</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4083"></a><tt class="py-lineno">4083</tt> <tt class="py-line"> <tt class="py-comment"># break if failOn expression matches</tt> </tt>
-<a name="L4084"></a><tt class="py-lineno">4084</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self_failOn_canParseNext</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tmploc</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4085"></a><tt class="py-lineno">4085</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L4086"></a><tt class="py-lineno">4086</tt> <tt class="py-line"> </tt>
-<a name="L4087"></a><tt class="py-lineno">4087</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self_ignoreExpr_tryParse</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4088"></a><tt class="py-lineno">4088</tt> <tt class="py-line"> <tt class="py-comment"># advance past ignore expressions</tt> </tt>
-<a name="L4089"></a><tt class="py-lineno">4089</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L4090"></a><tt class="py-lineno">4090</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4091"></a><tt class="py-lineno">4091</tt> <tt class="py-line"> <tt class="py-name">tmploc</tt> <tt class="py-op">=</tt> <tt class="py-name">self_ignoreExpr_tryParse</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tmploc</tt><tt class="py-op">)</tt> </tt>
-<a name="L4092"></a><tt class="py-lineno">4092</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt id="link-648" class="py-name"><a title="pyparsing.ParseBaseException" class="py-name" href="#" onclick="return doclink('link-648', 'ParseBaseException', 'link-154');">ParseBaseException</a></tt><tt class="py-op">:</tt> </tt>
-<a name="L4093"></a><tt class="py-lineno">4093</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L4094"></a><tt class="py-lineno">4094</tt> <tt class="py-line"> </tt>
-<a name="L4095"></a><tt class="py-lineno">4095</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4096"></a><tt class="py-lineno">4096</tt> <tt class="py-line"> <tt class="py-name">expr_parse</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">tmploc</tt><tt class="py-op">,</tt> <tt class="py-name">doActions</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L4097"></a><tt class="py-lineno">4097</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-op">(</tt><tt id="link-649" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-649', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">,</tt> <tt class="py-name">IndexError</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4098"></a><tt class="py-lineno">4098</tt> <tt class="py-line"> <tt class="py-comment"># no match, advance loc in string</tt> </tt>
-<a name="L4099"></a><tt class="py-lineno">4099</tt> <tt class="py-line"> <tt class="py-name">tmploc</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L4100"></a><tt class="py-lineno">4100</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4101"></a><tt class="py-lineno">4101</tt> <tt class="py-line"> <tt class="py-comment"># matched skipto expr, done</tt> </tt>
-<a name="L4102"></a><tt class="py-lineno">4102</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L4103"></a><tt class="py-lineno">4103</tt> <tt class="py-line"> </tt>
-<a name="L4104"></a><tt class="py-lineno">4104</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4105"></a><tt class="py-lineno">4105</tt> <tt class="py-line"> <tt class="py-comment"># ran off the end of the input string without matching skipto expr, fail</tt> </tt>
-<a name="L4106"></a><tt class="py-lineno">4106</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-650" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-650', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">errmsg</tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt> </tt>
-<a name="L4107"></a><tt class="py-lineno">4107</tt> <tt class="py-line"> </tt>
-<a name="L4108"></a><tt class="py-lineno">4108</tt> <tt class="py-line"> <tt class="py-comment"># build up return values</tt> </tt>
-<a name="L4109"></a><tt class="py-lineno">4109</tt> <tt class="py-line"> <tt class="py-name">loc</tt> <tt class="py-op">=</tt> <tt class="py-name">tmploc</tt> </tt>
-<a name="L4110"></a><tt class="py-lineno">4110</tt> <tt class="py-line"> <tt class="py-name">skiptext</tt> <tt class="py-op">=</tt> <tt class="py-name">instring</tt><tt class="py-op">[</tt><tt class="py-name">startloc</tt><tt class="py-op">:</tt><tt class="py-name">loc</tt><tt class="py-op">]</tt> </tt>
-<a name="L4111"></a><tt class="py-lineno">4111</tt> <tt class="py-line"> <tt class="py-name">skipresult</tt> <tt class="py-op">=</tt> <tt id="link-651" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-651', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-name">skiptext</tt><tt class="py-op">)</tt> </tt>
-<a name="L4112"></a><tt class="py-lineno">4112</tt> <tt class="py-line"> </tt>
-<a name="L4113"></a><tt class="py-lineno">4113</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">includeMatch</tt><tt class="py-op">:</tt> </tt>
-<a name="L4114"></a><tt class="py-lineno">4114</tt> <tt class="py-line"> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">mat</tt> <tt class="py-op">=</tt> <tt class="py-name">expr_parse</tt><tt class="py-op">(</tt><tt class="py-name">instring</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">doActions</tt><tt class="py-op">,</tt><tt class="py-name">callPreParse</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">)</tt> </tt>
-<a name="L4115"></a><tt class="py-lineno">4115</tt> <tt class="py-line"> <tt class="py-name">skipresult</tt> <tt class="py-op">+=</tt> <tt class="py-name">mat</tt> </tt>
-<a name="L4116"></a><tt class="py-lineno">4116</tt> <tt class="py-line"> </tt>
-<a name="L4117"></a><tt class="py-lineno">4117</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">loc</tt><tt class="py-op">,</tt> <tt class="py-name">skipresult</tt> </tt>
-</div></div><a name="L4118"></a><tt class="py-lineno">4118</tt> <tt class="py-line"> </tt>
-<a name="Forward"></a><div id="Forward-def"><a name="L4119"></a><tt class="py-lineno">4119</tt> <a class="py-toggle" href="#" id="Forward-toggle" onclick="return toggle('Forward');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Forward-class.html">Forward</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Forward-expanded"><a name="L4120"></a><tt class="py-lineno">4120</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4121"></a><tt class="py-lineno">4121</tt> <tt class="py-line"><tt class="py-docstring"> Forward declaration of an expression to be defined later -</tt> </tt>
-<a name="L4122"></a><tt class="py-lineno">4122</tt> <tt class="py-line"><tt class="py-docstring"> used for recursive grammars, such as algebraic infix notation.</tt> </tt>
-<a name="L4123"></a><tt class="py-lineno">4123</tt> <tt class="py-line"><tt class="py-docstring"> When the expression is known, it is assigned to the C{Forward} variable using the '<<' operator.</tt> </tt>
-<a name="L4124"></a><tt class="py-lineno">4124</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4125"></a><tt class="py-lineno">4125</tt> <tt class="py-line"><tt class="py-docstring"> Note: take care when assigning to C{Forward} not to overlook precedence of operators.</tt> </tt>
-<a name="L4126"></a><tt class="py-lineno">4126</tt> <tt class="py-line"><tt class="py-docstring"> Specifically, '|' has a lower precedence than '<<', so that::</tt> </tt>
-<a name="L4127"></a><tt class="py-lineno">4127</tt> <tt class="py-line"><tt class="py-docstring"> fwdExpr << a | b | c</tt> </tt>
-<a name="L4128"></a><tt class="py-lineno">4128</tt> <tt class="py-line"><tt class="py-docstring"> will actually be evaluated as::</tt> </tt>
-<a name="L4129"></a><tt class="py-lineno">4129</tt> <tt class="py-line"><tt class="py-docstring"> (fwdExpr << a) | b | c</tt> </tt>
-<a name="L4130"></a><tt class="py-lineno">4130</tt> <tt class="py-line"><tt class="py-docstring"> thereby leaving b and c out as parseable alternatives. It is recommended that you</tt> </tt>
-<a name="L4131"></a><tt class="py-lineno">4131</tt> <tt class="py-line"><tt class="py-docstring"> explicitly group the values inserted into the C{Forward}::</tt> </tt>
-<a name="L4132"></a><tt class="py-lineno">4132</tt> <tt class="py-line"><tt class="py-docstring"> fwdExpr << (a | b | c)</tt> </tt>
-<a name="L4133"></a><tt class="py-lineno">4133</tt> <tt class="py-line"><tt class="py-docstring"> Converting to use the '<<=' operator instead will avoid this problem.</tt> </tt>
-<a name="L4134"></a><tt class="py-lineno">4134</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4135"></a><tt class="py-lineno">4135</tt> <tt class="py-line"><tt class="py-docstring"> See L{ParseResults.pprint} for an example of a recursive parser created using</tt> </tt>
-<a name="L4136"></a><tt class="py-lineno">4136</tt> <tt class="py-line"><tt class="py-docstring"> C{Forward}.</tt> </tt>
-<a name="L4137"></a><tt class="py-lineno">4137</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Forward.__init__"></a><div id="Forward.__init__-def"><a name="L4138"></a><tt class="py-lineno">4138</tt> <a class="py-toggle" href="#" id="Forward.__init__-toggle" onclick="return toggle('Forward.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.__init__-expanded"><a name="L4139"></a><tt class="py-lineno">4139</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-652" class="py-name" targets="Class pyparsing.Forward=pyparsing.Forward-class.html"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-652', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-653" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-653', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L4140"></a><tt class="py-lineno">4140</tt> <tt class="py-line"> </tt>
-<a name="Forward.__lshift__"></a><div id="Forward.__lshift__-def"><a name="L4141"></a><tt class="py-lineno">4141</tt> <a class="py-toggle" href="#" id="Forward.__lshift__-toggle" onclick="return toggle('Forward.__lshift__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#__lshift__">__lshift__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.__lshift__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.__lshift__-expanded"><a name="L4142"></a><tt class="py-lineno">4142</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt> <tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">basestring</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4143"></a><tt class="py-lineno">4143</tt> <tt class="py-line"> <tt class="py-name">other</tt> <tt class="py-op">=</tt> <tt id="link-654" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-654', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt class="py-name">_literalStringClass</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L4144"></a><tt class="py-lineno">4144</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt> </tt>
-<a name="L4145"></a><tt class="py-lineno">4145</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">strRepr</tt> <tt class="py-op">=</tt> <tt class="py-name">None</tt> </tt>
-<a name="L4146"></a><tt class="py-lineno">4146</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">mayIndexError</tt> </tt>
-<a name="L4147"></a><tt class="py-lineno">4147</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">mayReturnEmpty</tt> </tt>
-<a name="L4148"></a><tt class="py-lineno">4148</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-655" class="py-name"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-655', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">whiteChars</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4149"></a><tt class="py-lineno">4149</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> </tt>
-<a name="L4150"></a><tt class="py-lineno">4150</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> </tt>
-<a name="L4151"></a><tt class="py-lineno">4151</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">.</tt><tt id="link-656" class="py-name"><a title="pyparsing.ParseResults.extend" class="py-name" href="#" onclick="return doclink('link-656', 'extend', 'link-70');">extend</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt><tt class="py-op">)</tt> </tt>
-<a name="L4152"></a><tt class="py-lineno">4152</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L4153"></a><tt class="py-lineno">4153</tt> <tt class="py-line"> </tt>
-<a name="Forward.__ilshift__"></a><div id="Forward.__ilshift__-def"><a name="L4154"></a><tt class="py-lineno">4154</tt> <a class="py-toggle" href="#" id="Forward.__ilshift__-toggle" onclick="return toggle('Forward.__ilshift__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#__ilshift__">__ilshift__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.__ilshift__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.__ilshift__-expanded"><a name="L4155"></a><tt class="py-lineno">4155</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> <tt class="py-op"><<</tt> <tt class="py-name">other</tt> </tt>
-</div><a name="L4156"></a><tt class="py-lineno">4156</tt> <tt class="py-line"> </tt>
-<a name="Forward.leaveWhitespace"></a><div id="Forward.leaveWhitespace-def"><a name="L4157"></a><tt class="py-lineno">4157</tt> <a class="py-toggle" href="#" id="Forward.leaveWhitespace-toggle" onclick="return toggle('Forward.leaveWhitespace');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#leaveWhitespace">leaveWhitespace</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.leaveWhitespace-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.leaveWhitespace-expanded"><a name="L4158"></a><tt class="py-lineno">4158</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L4159"></a><tt class="py-lineno">4159</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L4160"></a><tt class="py-lineno">4160</tt> <tt class="py-line"> </tt>
-<a name="Forward.streamline"></a><div id="Forward.streamline-def"><a name="L4161"></a><tt class="py-lineno">4161</tt> <a class="py-toggle" href="#" id="Forward.streamline-toggle" onclick="return toggle('Forward.streamline');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#streamline">streamline</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.streamline-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.streamline-expanded"><a name="L4162"></a><tt class="py-lineno">4162</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt><tt class="py-op">:</tt> </tt>
-<a name="L4163"></a><tt class="py-lineno">4163</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">streamlined</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L4164"></a><tt class="py-lineno">4164</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4165"></a><tt class="py-lineno">4165</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-657" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-657', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4166"></a><tt class="py-lineno">4166</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L4167"></a><tt class="py-lineno">4167</tt> <tt class="py-line"> </tt>
-<a name="Forward.validate"></a><div id="Forward.validate-def"><a name="L4168"></a><tt class="py-lineno">4168</tt> <a class="py-toggle" href="#" id="Forward.validate-toggle" onclick="return toggle('Forward.validate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#validate">validate</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">validateTrace</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-op">]</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.validate-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.validate-expanded"><a name="L4169"></a><tt class="py-lineno">4169</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">validateTrace</tt><tt class="py-op">:</tt> </tt>
-<a name="L4170"></a><tt class="py-lineno">4170</tt> <tt class="py-line"> <tt class="py-name">tmp</tt> <tt class="py-op">=</tt> <tt class="py-name">validateTrace</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">+</tt><tt class="py-op">[</tt><tt class="py-name">self</tt><tt class="py-op">]</tt> </tt>
-<a name="L4171"></a><tt class="py-lineno">4171</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4172"></a><tt class="py-lineno">4172</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-658" class="py-name"><a title="pyparsing.Forward.validate
-pyparsing.ParseElementEnhance.validate
-pyparsing.ParseExpression.validate
-pyparsing.ParserElement.validate" class="py-name" href="#" onclick="return doclink('link-658', 'validate', 'link-524');">validate</a></tt><tt class="py-op">(</tt><tt class="py-name">tmp</tt><tt class="py-op">)</tt> </tt>
-<a name="L4173"></a><tt class="py-lineno">4173</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-659" class="py-name"><a title="pyparsing.And.checkRecursion
-pyparsing.Each.checkRecursion
-pyparsing.MatchFirst.checkRecursion
-pyparsing.Or.checkRecursion
-pyparsing.ParseElementEnhance.checkRecursion
-pyparsing.ParserElement.checkRecursion" class="py-name" href="#" onclick="return doclink('link-659', 'checkRecursion', 'link-316');">checkRecursion</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4174"></a><tt class="py-lineno">4174</tt> <tt class="py-line"> </tt>
-<a name="Forward.__str__"></a><div id="Forward.__str__-def"><a name="L4175"></a><tt class="py-lineno">4175</tt> <a class="py-toggle" href="#" id="Forward.__str__-toggle" onclick="return toggle('Forward.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.__str__-expanded"><a name="L4176"></a><tt class="py-lineno">4176</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">hasattr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt><tt class="py-string">"name"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4177"></a><tt class="py-lineno">4177</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L4178"></a><tt class="py-lineno">4178</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">+</tt> <tt class="py-string">": ..."</tt> </tt>
-<a name="L4179"></a><tt class="py-lineno">4179</tt> <tt class="py-line"> </tt>
-<a name="L4180"></a><tt class="py-lineno">4180</tt> <tt class="py-line"> <tt class="py-comment"># stubbed out for now - creates awful memory and perf issues</tt> </tt>
-<a name="L4181"></a><tt class="py-lineno">4181</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_revertClass</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> </tt>
-<a name="L4182"></a><tt class="py-lineno">4182</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> <tt class="py-op">=</tt> <tt class="py-name">_ForwardNoRecurse</tt> </tt>
-<a name="L4183"></a><tt class="py-lineno">4183</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4184"></a><tt class="py-lineno">4184</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4185"></a><tt class="py-lineno">4185</tt> <tt class="py-line"> <tt class="py-name">retString</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> </tt>
-<a name="L4186"></a><tt class="py-lineno">4186</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4187"></a><tt class="py-lineno">4187</tt> <tt class="py-line"> <tt class="py-name">retString</tt> <tt class="py-op">=</tt> <tt class="py-string">"None"</tt> </tt>
-<a name="L4188"></a><tt class="py-lineno">4188</tt> <tt class="py-line"> <tt class="py-keyword">finally</tt><tt class="py-op">:</tt> </tt>
-<a name="L4189"></a><tt class="py-lineno">4189</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_revertClass</tt> </tt>
-<a name="L4190"></a><tt class="py-lineno">4190</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">+</tt> <tt class="py-string">": "</tt> <tt class="py-op">+</tt> <tt class="py-name">retString</tt> </tt>
-</div><a name="L4191"></a><tt class="py-lineno">4191</tt> <tt class="py-line"> </tt>
-<a name="Forward.copy"></a><div id="Forward.copy-def"><a name="L4192"></a><tt class="py-lineno">4192</tt> <a class="py-toggle" href="#" id="Forward.copy-toggle" onclick="return toggle('Forward.copy');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Forward-class.html#copy">copy</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Forward.copy-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Forward.copy-expanded"><a name="L4193"></a><tt class="py-lineno">4193</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4194"></a><tt class="py-lineno">4194</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-660" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-660', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-661" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-661', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4195"></a><tt class="py-lineno">4195</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4196"></a><tt class="py-lineno">4196</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-662" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-662', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4197"></a><tt class="py-lineno">4197</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op"><<=</tt> <tt class="py-name">self</tt> </tt>
-<a name="L4198"></a><tt class="py-lineno">4198</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div></div><a name="L4199"></a><tt class="py-lineno">4199</tt> <tt class="py-line"> </tt>
-<a name="_ForwardNoRecurse"></a><div id="_ForwardNoRecurse-def"><a name="L4200"></a><tt class="py-lineno">4200</tt> <a class="py-toggle" href="#" id="_ForwardNoRecurse-toggle" onclick="return toggle('_ForwardNoRecurse');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing._ForwardNoRecurse-class.html">_ForwardNoRecurse</a><tt class="py-op">(</tt><tt class="py-base-class">Forward</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ForwardNoRecurse-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_ForwardNoRecurse-expanded"><a name="_ForwardNoRecurse.__str__"></a><div id="_ForwardNoRecurse.__str__-def"><a name="L4201"></a><tt class="py-lineno">4201</tt> <a class="py-toggle" href="#" id="_ForwardNoRecurse.__str__-toggle" onclick="return toggle('_ForwardNoRecurse.__str__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing._ForwardNoRecurse-class.html#__str__">__str__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_ForwardNoRecurse.__str__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="_ForwardNoRecurse.__str__-expanded"><a name="L4202"></a><tt class="py-lineno">4202</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"..."</tt> </tt>
-</div></div><a name="L4203"></a><tt class="py-lineno">4203</tt> <tt class="py-line"> </tt>
-<a name="TokenConverter"></a><div id="TokenConverter-def"><a name="L4204"></a><tt class="py-lineno">4204</tt> <a class="py-toggle" href="#" id="TokenConverter-toggle" onclick="return toggle('TokenConverter');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.TokenConverter-class.html">TokenConverter</a><tt class="py-op">(</tt><tt class="py-base-class">ParseElementEnhance</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="TokenConverter-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="TokenConverter-expanded"><a name="L4205"></a><tt class="py-lineno">4205</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4206"></a><tt class="py-lineno">4206</tt> <tt class="py-line"><tt class="py-docstring"> Abstract subclass of C{ParseExpression}, for converting parsed results.</tt> </tt>
-<a name="L4207"></a><tt class="py-lineno">4207</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="TokenConverter.__init__"></a><div id="TokenConverter.__init__-def"><a name="L4208"></a><tt class="py-lineno">4208</tt> <a class="py-toggle" href="#" id="TokenConverter.__init__-toggle" onclick="return toggle('TokenConverter.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.TokenConverter-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">savelist</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="TokenConverter.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="TokenConverter.__init__-expanded"><a name="L4209"></a><tt class="py-lineno">4209</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-663" class="py-name" targets="Class pyparsing.TokenConverter=pyparsing.TokenConverter-class.html"><a title="pyparsing.TokenConverter" class="py-name" href="#" onclick="return doclink('link-663', 'TokenConverter', 'link-663');">TokenConverter</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-664" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-664', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt><tt class="py-comment">#, savelist )</tt> </tt>
-<a name="L4210"></a><tt class="py-lineno">4210</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div></div><a name="L4211"></a><tt class="py-lineno">4211</tt> <tt class="py-line"> </tt>
-<a name="Combine"></a><div id="Combine-def"><a name="L4212"></a><tt class="py-lineno">4212</tt> <a class="py-toggle" href="#" id="Combine-toggle" onclick="return toggle('Combine');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Combine-class.html">Combine</a><tt class="py-op">(</tt><tt class="py-base-class">TokenConverter</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Combine-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Combine-expanded"><a name="L4213"></a><tt class="py-lineno">4213</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4214"></a><tt class="py-lineno">4214</tt> <tt class="py-line"><tt class="py-docstring"> Converter to concatenate all matching tokens to a single string.</tt> </tt>
-<a name="L4215"></a><tt class="py-lineno">4215</tt> <tt class="py-line"><tt class="py-docstring"> By default, the matching patterns must also be contiguous in the input string;</tt> </tt>
-<a name="L4216"></a><tt class="py-lineno">4216</tt> <tt class="py-line"><tt class="py-docstring"> this can be disabled by specifying C{'adjacent=False'} in the constructor.</tt> </tt>
-<a name="L4217"></a><tt class="py-lineno">4217</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4218"></a><tt class="py-lineno">4218</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4219"></a><tt class="py-lineno">4219</tt> <tt class="py-line"><tt class="py-docstring"> real = Word(nums) + '.' + Word(nums)</tt> </tt>
-<a name="L4220"></a><tt class="py-lineno">4220</tt> <tt class="py-line"><tt class="py-docstring"> print(real.parseString('3.1416')) # -> ['3', '.', '1416']</tt> </tt>
-<a name="L4221"></a><tt class="py-lineno">4221</tt> <tt class="py-line"><tt class="py-docstring"> # will also erroneously match the following</tt> </tt>
-<a name="L4222"></a><tt class="py-lineno">4222</tt> <tt class="py-line"><tt class="py-docstring"> print(real.parseString('3. 1416')) # -> ['3', '.', '1416']</tt> </tt>
-<a name="L4223"></a><tt class="py-lineno">4223</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4224"></a><tt class="py-lineno">4224</tt> <tt class="py-line"><tt class="py-docstring"> real = Combine(Word(nums) + '.' + Word(nums))</tt> </tt>
-<a name="L4225"></a><tt class="py-lineno">4225</tt> <tt class="py-line"><tt class="py-docstring"> print(real.parseString('3.1416')) # -> ['3.1416']</tt> </tt>
-<a name="L4226"></a><tt class="py-lineno">4226</tt> <tt class="py-line"><tt class="py-docstring"> # no match when there are internal spaces</tt> </tt>
-<a name="L4227"></a><tt class="py-lineno">4227</tt> <tt class="py-line"><tt class="py-docstring"> print(real.parseString('3. 1416')) # -> Exception: Expected W:(0123...)</tt> </tt>
-<a name="L4228"></a><tt class="py-lineno">4228</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Combine.__init__"></a><div id="Combine.__init__-def"><a name="L4229"></a><tt class="py-lineno">4229</tt> <a class="py-toggle" href="#" id="Combine.__init__-toggle" onclick="return toggle('Combine.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Combine-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">joinString</tt><tt class="py-op">=</tt><tt class="py-string">""</tt><tt class="py-op">,</tt> <tt class="py-param">adjacent</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Combine.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Combine.__init__-expanded"><a name="L4230"></a><tt class="py-lineno">4230</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-665" class="py-name" targets="Class pyparsing.Combine=pyparsing.Combine-class.html"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-665', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-666" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-666', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4231"></a><tt class="py-lineno">4231</tt> <tt class="py-line"> <tt class="py-comment"># suppress whitespace-stripping in contained parse expressions, but re-enable it on the Combine itself</tt> </tt>
-<a name="L4232"></a><tt class="py-lineno">4232</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">adjacent</tt><tt class="py-op">:</tt> </tt>
-<a name="L4233"></a><tt class="py-lineno">4233</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-667" class="py-name"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-667', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4234"></a><tt class="py-lineno">4234</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">adjacent</tt> <tt class="py-op">=</tt> <tt class="py-name">adjacent</tt> </tt>
-<a name="L4235"></a><tt class="py-lineno">4235</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">skipWhitespace</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L4236"></a><tt class="py-lineno">4236</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">joinString</tt> <tt class="py-op">=</tt> <tt class="py-name">joinString</tt> </tt>
-<a name="L4237"></a><tt class="py-lineno">4237</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L4238"></a><tt class="py-lineno">4238</tt> <tt class="py-line"> </tt>
-<a name="Combine.ignore"></a><div id="Combine.ignore-def"><a name="L4239"></a><tt class="py-lineno">4239</tt> <a class="py-toggle" href="#" id="Combine.ignore-toggle" onclick="return toggle('Combine.ignore');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Combine-class.html#ignore">ignore</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">other</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Combine.ignore-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Combine.ignore-expanded"><a name="L4240"></a><tt class="py-lineno">4240</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">adjacent</tt><tt class="py-op">:</tt> </tt>
-<a name="L4241"></a><tt class="py-lineno">4241</tt> <tt class="py-line"> <tt id="link-668" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-668', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-669" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-669', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L4242"></a><tt class="py-lineno">4242</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4243"></a><tt class="py-lineno">4243</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt> <tt id="link-670" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-670', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">,</tt> <tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-671" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-671', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt> <tt class="py-name">other</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4244"></a><tt class="py-lineno">4244</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div><a name="L4245"></a><tt class="py-lineno">4245</tt> <tt class="py-line"> </tt>
-<a name="Combine.postParse"></a><div id="Combine.postParse-def"><a name="L4246"></a><tt class="py-lineno">4246</tt> <a class="py-toggle" href="#" id="Combine.postParse-toggle" onclick="return toggle('Combine.postParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Combine-class.html#postParse">postParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">tokenlist</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Combine.postParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Combine.postParse-expanded"><a name="L4247"></a><tt class="py-lineno">4247</tt> <tt class="py-line"> <tt class="py-name">retToks</tt> <tt class="py-op">=</tt> <tt class="py-name">tokenlist</tt><tt class="py-op">.</tt><tt id="link-672" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-672', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4248"></a><tt class="py-lineno">4248</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">retToks</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L4249"></a><tt class="py-lineno">4249</tt> <tt class="py-line"> <tt class="py-name">retToks</tt> <tt class="py-op">+=</tt> <tt id="link-673" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-673', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">tokenlist</tt><tt class="py-op">.</tt><tt class="py-name">_asStringList</tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">joinString</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">modal</tt><tt class="py-op">=</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">modalResults</tt><tt class="py-op">)</tt> </tt>
-<a name="L4250"></a><tt class="py-lineno">4250</tt> <tt class="py-line"> </tt>
-<a name="L4251"></a><tt class="py-lineno">4251</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt> <tt class="py-keyword">and</tt> <tt class="py-name">retToks</tt><tt class="py-op">.</tt><tt id="link-674" class="py-name"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-674', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4252"></a><tt class="py-lineno">4252</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt> <tt class="py-name">retToks</tt> <tt class="py-op">]</tt> </tt>
-<a name="L4253"></a><tt class="py-lineno">4253</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4254"></a><tt class="py-lineno">4254</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">retToks</tt> </tt>
-</div></div><a name="L4255"></a><tt class="py-lineno">4255</tt> <tt class="py-line"> </tt>
-<a name="Group"></a><div id="Group-def"><a name="L4256"></a><tt class="py-lineno">4256</tt> <a class="py-toggle" href="#" id="Group-toggle" onclick="return toggle('Group');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Group-class.html">Group</a><tt class="py-op">(</tt><tt class="py-base-class">TokenConverter</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Group-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Group-expanded"><a name="L4257"></a><tt class="py-lineno">4257</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4258"></a><tt class="py-lineno">4258</tt> <tt class="py-line"><tt class="py-docstring"> Converter to return the matched tokens as a list - useful for returning tokens of C{L{ZeroOrMore}} and C{L{OneOrMore}} expressions.</tt> </tt>
-<a name="L4259"></a><tt class="py-lineno">4259</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4260"></a><tt class="py-lineno">4260</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4261"></a><tt class="py-lineno">4261</tt> <tt class="py-line"><tt class="py-docstring"> ident = Word(alphas)</tt> </tt>
-<a name="L4262"></a><tt class="py-lineno">4262</tt> <tt class="py-line"><tt class="py-docstring"> num = Word(nums)</tt> </tt>
-<a name="L4263"></a><tt class="py-lineno">4263</tt> <tt class="py-line"><tt class="py-docstring"> term = ident | num</tt> </tt>
-<a name="L4264"></a><tt class="py-lineno">4264</tt> <tt class="py-line"><tt class="py-docstring"> func = ident + Optional(delimitedList(term))</tt> </tt>
-<a name="L4265"></a><tt class="py-lineno">4265</tt> <tt class="py-line"><tt class="py-docstring"> print(func.parseString("fn a,b,100")) # -> ['fn', 'a', 'b', '100']</tt> </tt>
-<a name="L4266"></a><tt class="py-lineno">4266</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4267"></a><tt class="py-lineno">4267</tt> <tt class="py-line"><tt class="py-docstring"> func = ident + Group(Optional(delimitedList(term)))</tt> </tt>
-<a name="L4268"></a><tt class="py-lineno">4268</tt> <tt class="py-line"><tt class="py-docstring"> print(func.parseString("fn a,b,100")) # -> ['fn', ['a', 'b', '100']]</tt> </tt>
-<a name="L4269"></a><tt class="py-lineno">4269</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Group.__init__"></a><div id="Group.__init__-def"><a name="L4270"></a><tt class="py-lineno">4270</tt> <a class="py-toggle" href="#" id="Group.__init__-toggle" onclick="return toggle('Group.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Group-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Group.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Group.__init__-expanded"><a name="L4271"></a><tt class="py-lineno">4271</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-675" class="py-name" targets="Class pyparsing.Group=pyparsing.Group-class.html"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-675', 'Group', 'link-675');">Group</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-676" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-676', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4272"></a><tt class="py-lineno">4272</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L4273"></a><tt class="py-lineno">4273</tt> <tt class="py-line"> </tt>
-<a name="Group.postParse"></a><div id="Group.postParse-def"><a name="L4274"></a><tt class="py-lineno">4274</tt> <a class="py-toggle" href="#" id="Group.postParse-toggle" onclick="return toggle('Group.postParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Group-class.html#postParse">postParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">tokenlist</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Group.postParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Group.postParse-expanded"><a name="L4275"></a><tt class="py-lineno">4275</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt> <tt class="py-name">tokenlist</tt> <tt class="py-op">]</tt> </tt>
-</div></div><a name="L4276"></a><tt class="py-lineno">4276</tt> <tt class="py-line"> </tt>
-<a name="Dict"></a><div id="Dict-def"><a name="L4277"></a><tt class="py-lineno">4277</tt> <a class="py-toggle" href="#" id="Dict-toggle" onclick="return toggle('Dict');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Dict-class.html">Dict</a><tt class="py-op">(</tt><tt class="py-base-class">TokenConverter</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Dict-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Dict-expanded"><a name="L4278"></a><tt class="py-lineno">4278</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4279"></a><tt class="py-lineno">4279</tt> <tt class="py-line"><tt class="py-docstring"> Converter to return a repetitive expression as a list, but also as a dictionary.</tt> </tt>
-<a name="L4280"></a><tt class="py-lineno">4280</tt> <tt class="py-line"><tt class="py-docstring"> Each element can also be referenced using the first token in the expression as its key.</tt> </tt>
-<a name="L4281"></a><tt class="py-lineno">4281</tt> <tt class="py-line"><tt class="py-docstring"> Useful for tabular report scraping when the first column can be used as a item key.</tt> </tt>
-<a name="L4282"></a><tt class="py-lineno">4282</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4283"></a><tt class="py-lineno">4283</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4284"></a><tt class="py-lineno">4284</tt> <tt class="py-line"><tt class="py-docstring"> data_word = Word(alphas)</tt> </tt>
-<a name="L4285"></a><tt class="py-lineno">4285</tt> <tt class="py-line"><tt class="py-docstring"> label = data_word + FollowedBy(':')</tt> </tt>
-<a name="L4286"></a><tt class="py-lineno">4286</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))</tt> </tt>
-<a name="L4287"></a><tt class="py-lineno">4287</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4288"></a><tt class="py-lineno">4288</tt> <tt class="py-line"><tt class="py-docstring"> text = "shape: SQUARE posn: upper left color: light blue texture: burlap"</tt> </tt>
-<a name="L4289"></a><tt class="py-lineno">4289</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))</tt> </tt>
-<a name="L4290"></a><tt class="py-lineno">4290</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4291"></a><tt class="py-lineno">4291</tt> <tt class="py-line"><tt class="py-docstring"> # print attributes as plain groups</tt> </tt>
-<a name="L4292"></a><tt class="py-lineno">4292</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(attr_expr).parseString(text).dump())</tt> </tt>
-<a name="L4293"></a><tt class="py-lineno">4293</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4294"></a><tt class="py-lineno">4294</tt> <tt class="py-line"><tt class="py-docstring"> # instead of OneOrMore(expr), parse using Dict(OneOrMore(Group(expr))) - Dict will auto-assign names</tt> </tt>
-<a name="L4295"></a><tt class="py-lineno">4295</tt> <tt class="py-line"><tt class="py-docstring"> result = Dict(OneOrMore(Group(attr_expr))).parseString(text)</tt> </tt>
-<a name="L4296"></a><tt class="py-lineno">4296</tt> <tt class="py-line"><tt class="py-docstring"> print(result.dump())</tt> </tt>
-<a name="L4297"></a><tt class="py-lineno">4297</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4298"></a><tt class="py-lineno">4298</tt> <tt class="py-line"><tt class="py-docstring"> # access named fields as dict entries, or output as dict</tt> </tt>
-<a name="L4299"></a><tt class="py-lineno">4299</tt> <tt class="py-line"><tt class="py-docstring"> print(result['shape']) </tt> </tt>
-<a name="L4300"></a><tt class="py-lineno">4300</tt> <tt class="py-line"><tt class="py-docstring"> print(result.asDict())</tt> </tt>
-<a name="L4301"></a><tt class="py-lineno">4301</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4302"></a><tt class="py-lineno">4302</tt> <tt class="py-line"><tt class="py-docstring"> ['shape', 'SQUARE', 'posn', 'upper left', 'color', 'light blue', 'texture', 'burlap']</tt> </tt>
-<a name="L4303"></a><tt class="py-lineno">4303</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4304"></a><tt class="py-lineno">4304</tt> <tt class="py-line"><tt class="py-docstring"> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]</tt> </tt>
-<a name="L4305"></a><tt class="py-lineno">4305</tt> <tt class="py-line"><tt class="py-docstring"> - color: light blue</tt> </tt>
-<a name="L4306"></a><tt class="py-lineno">4306</tt> <tt class="py-line"><tt class="py-docstring"> - posn: upper left</tt> </tt>
-<a name="L4307"></a><tt class="py-lineno">4307</tt> <tt class="py-line"><tt class="py-docstring"> - shape: SQUARE</tt> </tt>
-<a name="L4308"></a><tt class="py-lineno">4308</tt> <tt class="py-line"><tt class="py-docstring"> - texture: burlap</tt> </tt>
-<a name="L4309"></a><tt class="py-lineno">4309</tt> <tt class="py-line"><tt class="py-docstring"> SQUARE</tt> </tt>
-<a name="L4310"></a><tt class="py-lineno">4310</tt> <tt class="py-line"><tt class="py-docstring"> {'color': 'light blue', 'posn': 'upper left', 'texture': 'burlap', 'shape': 'SQUARE'}</tt> </tt>
-<a name="L4311"></a><tt class="py-lineno">4311</tt> <tt class="py-line"><tt class="py-docstring"> See more examples at L{ParseResults} of accessing fields by results name.</tt> </tt>
-<a name="L4312"></a><tt class="py-lineno">4312</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Dict.__init__"></a><div id="Dict.__init__-def"><a name="L4313"></a><tt class="py-lineno">4313</tt> <a class="py-toggle" href="#" id="Dict.__init__-toggle" onclick="return toggle('Dict.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Dict-class.html#__init__">__init__</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">expr</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Dict.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Dict.__init__-expanded"><a name="L4314"></a><tt class="py-lineno">4314</tt> <tt class="py-line"> <tt class="py-name">super</tt><tt class="py-op">(</tt><tt id="link-677" class="py-name" targets="Class pyparsing.Dict=pyparsing.Dict-class.html"><a title="pyparsing.Dict" class="py-name" href="#" onclick="return doclink('link-677', 'Dict', 'link-677');">Dict</a></tt><tt class="py-op">,</tt><tt class="py-name">self</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-678" class="py-name"><a title="pyparsing.And.__init__
-pyparsing.CaselessKeyword.__init__
-pyparsing.CaselessLiteral.__init__
-pyparsing.CharsNotIn.__init__
-pyparsing.CloseMatch.__init__
-pyparsing.Combine.__init__
-pyparsing.Dict.__init__
-pyparsing.Each.__init__
-pyparsing.Empty.__init__
-pyparsing.FollowedBy.__init__
-pyparsing.Forward.__init__
-pyparsing.GoToColumn.__init__
-pyparsing.Group.__init__
-pyparsing.Keyword.__init__
-pyparsing.LineEnd.__init__
-pyparsing.LineStart.__init__
-pyparsing.Literal.__init__
-pyparsing.MatchFirst.__init__
-pyparsing.NoMatch.__init__
-pyparsing.NotAny.__init__
-pyparsing.OnlyOnce.__init__
-pyparsing.Optional.__init__
-pyparsing.Or.__init__
-pyparsing.ParseBaseException.__init__
-pyparsing.ParseElementEnhance.__init__
-pyparsing.ParseExpression.__init__
-pyparsing.ParseResults.__init__
-pyparsing.ParserElement.__init__
-pyparsing.QuotedString.__init__
-pyparsing.RecursiveGrammarException.__init__
-pyparsing.Regex.__init__
-pyparsing.SkipTo.__init__
-pyparsing.StringEnd.__init__
-pyparsing.StringStart.__init__
-pyparsing.Token.__init__
-pyparsing.TokenConverter.__init__
-pyparsing.White.__init__
-pyparsing.Word.__init__
-pyparsing.WordEnd.__init__
-pyparsing.WordStart.__init__
-pyparsing.ZeroOrMore.__init__" class="py-name" href="#" onclick="return doclink('link-678', '__init__', 'link-344');">__init__</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4315"></a><tt class="py-lineno">4315</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">saveAsList</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-</div><a name="L4316"></a><tt class="py-lineno">4316</tt> <tt class="py-line"> </tt>
-<a name="Dict.postParse"></a><div id="Dict.postParse-def"><a name="L4317"></a><tt class="py-lineno">4317</tt> <a class="py-toggle" href="#" id="Dict.postParse-toggle" onclick="return toggle('Dict.postParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Dict-class.html#postParse">postParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">tokenlist</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Dict.postParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Dict.postParse-expanded"><a name="L4318"></a><tt class="py-lineno">4318</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">tok</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">tokenlist</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4319"></a><tt class="py-lineno">4319</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">0</tt><tt class="py-op">:</tt> </tt>
-<a name="L4320"></a><tt class="py-lineno">4320</tt> <tt class="py-line"> <tt class="py-keyword">continue</tt> </tt>
-<a name="L4321"></a><tt class="py-lineno">4321</tt> <tt class="py-line"> <tt class="py-name">ikey</tt> <tt class="py-op">=</tt> <tt class="py-name">tok</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L4322"></a><tt class="py-lineno">4322</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">ikey</tt><tt class="py-op">,</tt><tt class="py-name">int</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4323"></a><tt class="py-lineno">4323</tt> <tt class="py-line"> <tt class="py-name">ikey</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4324"></a><tt class="py-lineno">4324</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">)</tt><tt class="py-op">==</tt><tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L4325"></a><tt class="py-lineno">4325</tt> <tt class="py-line"> <tt class="py-name">tokenlist</tt><tt class="py-op">[</tt><tt class="py-name">ikey</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-string">""</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-<a name="L4326"></a><tt class="py-lineno">4326</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">)</tt><tt class="py-op">==</tt><tt class="py-number">2</tt> <tt class="py-keyword">and</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt id="link-679" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-679', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4327"></a><tt class="py-lineno">4327</tt> <tt class="py-line"> <tt class="py-name">tokenlist</tt><tt class="py-op">[</tt><tt class="py-name">ikey</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">tok</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-<a name="L4328"></a><tt class="py-lineno">4328</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4329"></a><tt class="py-lineno">4329</tt> <tt class="py-line"> <tt class="py-name">dictvalue</tt> <tt class="py-op">=</tt> <tt class="py-name">tok</tt><tt class="py-op">.</tt><tt id="link-680" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-680', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-comment">#ParseResults(i)</tt> </tt>
-<a name="L4330"></a><tt class="py-lineno">4330</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">dictvalue</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L4331"></a><tt class="py-lineno">4331</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">dictvalue</tt><tt class="py-op">)</tt><tt class="py-op">!=</tt> <tt class="py-number">1</tt> <tt class="py-keyword">or</tt> <tt class="py-op">(</tt><tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">dictvalue</tt><tt class="py-op">,</tt><tt id="link-681" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-681', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">dictvalue</tt><tt class="py-op">.</tt><tt id="link-682" class="py-name"><a title="pyparsing.ParseResults.haskeys" class="py-name" href="#" onclick="return doclink('link-682', 'haskeys', 'link-86');">haskeys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4332"></a><tt class="py-lineno">4332</tt> <tt class="py-line"> <tt class="py-name">tokenlist</tt><tt class="py-op">[</tt><tt class="py-name">ikey</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">dictvalue</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-<a name="L4333"></a><tt class="py-lineno">4333</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4334"></a><tt class="py-lineno">4334</tt> <tt class="py-line"> <tt class="py-name">tokenlist</tt><tt class="py-op">[</tt><tt class="py-name">ikey</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-name">_ParseResultsWithOffset</tt><tt class="py-op">(</tt><tt class="py-name">dictvalue</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-<a name="L4335"></a><tt class="py-lineno">4335</tt> <tt class="py-line"> </tt>
-<a name="L4336"></a><tt class="py-lineno">4336</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">resultsName</tt><tt class="py-op">:</tt> </tt>
-<a name="L4337"></a><tt class="py-lineno">4337</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt> <tt class="py-name">tokenlist</tt> <tt class="py-op">]</tt> </tt>
-<a name="L4338"></a><tt class="py-lineno">4338</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4339"></a><tt class="py-lineno">4339</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">tokenlist</tt> </tt>
-</div></div><a name="L4340"></a><tt class="py-lineno">4340</tt> <tt class="py-line"> </tt>
-<a name="Suppress"></a><div id="Suppress-def"><a name="L4341"></a><tt class="py-lineno">4341</tt> <tt class="py-line"> </tt>
-<a name="L4342"></a><tt class="py-lineno">4342</tt> <a class="py-toggle" href="#" id="Suppress-toggle" onclick="return toggle('Suppress');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.Suppress-class.html">Suppress</a><tt class="py-op">(</tt><tt class="py-base-class">TokenConverter</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Suppress-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="Suppress-expanded"><a name="L4343"></a><tt class="py-lineno">4343</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4344"></a><tt class="py-lineno">4344</tt> <tt class="py-line"><tt class="py-docstring"> Converter for ignoring the results of a parsed expression.</tt> </tt>
-<a name="L4345"></a><tt class="py-lineno">4345</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4346"></a><tt class="py-lineno">4346</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4347"></a><tt class="py-lineno">4347</tt> <tt class="py-line"><tt class="py-docstring"> source = "a, b, c,d"</tt> </tt>
-<a name="L4348"></a><tt class="py-lineno">4348</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas)</tt> </tt>
-<a name="L4349"></a><tt class="py-lineno">4349</tt> <tt class="py-line"><tt class="py-docstring"> wd_list1 = wd + ZeroOrMore(',' + wd)</tt> </tt>
-<a name="L4350"></a><tt class="py-lineno">4350</tt> <tt class="py-line"><tt class="py-docstring"> print(wd_list1.parseString(source))</tt> </tt>
-<a name="L4351"></a><tt class="py-lineno">4351</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4352"></a><tt class="py-lineno">4352</tt> <tt class="py-line"><tt class="py-docstring"> # often, delimiters that are useful during parsing are just in the</tt> </tt>
-<a name="L4353"></a><tt class="py-lineno">4353</tt> <tt class="py-line"><tt class="py-docstring"> # way afterward - use Suppress to keep them out of the parsed output</tt> </tt>
-<a name="L4354"></a><tt class="py-lineno">4354</tt> <tt class="py-line"><tt class="py-docstring"> wd_list2 = wd + ZeroOrMore(Suppress(',') + wd)</tt> </tt>
-<a name="L4355"></a><tt class="py-lineno">4355</tt> <tt class="py-line"><tt class="py-docstring"> print(wd_list2.parseString(source))</tt> </tt>
-<a name="L4356"></a><tt class="py-lineno">4356</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4357"></a><tt class="py-lineno">4357</tt> <tt class="py-line"><tt class="py-docstring"> ['a', ',', 'b', ',', 'c', ',', 'd']</tt> </tt>
-<a name="L4358"></a><tt class="py-lineno">4358</tt> <tt class="py-line"><tt class="py-docstring"> ['a', 'b', 'c', 'd']</tt> </tt>
-<a name="L4359"></a><tt class="py-lineno">4359</tt> <tt class="py-line"><tt class="py-docstring"> (See also L{delimitedList}.)</tt> </tt>
-<a name="L4360"></a><tt class="py-lineno">4360</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="Suppress.postParse"></a><div id="Suppress.postParse-def"><a name="L4361"></a><tt class="py-lineno">4361</tt> <a class="py-toggle" href="#" id="Suppress.postParse-toggle" onclick="return toggle('Suppress.postParse');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Suppress-class.html#postParse">postParse</a><tt class="py-op">(</tt> <tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">instring</tt><tt class="py-op">,</tt> <tt class="py-param">loc</tt><tt class="py-op">,</tt> <tt class="py-param">tokenlist</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Suppress.postParse-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Suppress.postParse-expanded"><a name="L4362"></a><tt class="py-lineno">4362</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4363"></a><tt class="py-lineno">4363</tt> <tt class="py-line"> </tt>
-<a name="Suppress.suppress"></a><div id="Suppress.suppress-def"><a name="L4364"></a><tt class="py-lineno">4364</tt> <a class="py-toggle" href="#" id="Suppress.suppress-toggle" onclick="return toggle('Suppress.suppress');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.Suppress-class.html#suppress">suppress</a><tt class="py-op">(</tt> <tt class="py-param">self</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="Suppress.suppress-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="Suppress.suppress-expanded"><a name="L4365"></a><tt class="py-lineno">4365</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">self</tt> </tt>
-</div></div><a name="L4366"></a><tt class="py-lineno">4366</tt> <tt class="py-line"> </tt>
-<a name="OnlyOnce"></a><div id="OnlyOnce-def"><a name="L4367"></a><tt class="py-lineno">4367</tt> <tt class="py-line"> </tt>
-<a name="L4368"></a><tt class="py-lineno">4368</tt> <a class="py-toggle" href="#" id="OnlyOnce-toggle" onclick="return toggle('OnlyOnce');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.OnlyOnce-class.html">OnlyOnce</a><tt class="py-op">(</tt><tt class="py-base-class">object</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OnlyOnce-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="OnlyOnce-expanded"><a name="L4369"></a><tt class="py-lineno">4369</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4370"></a><tt class="py-lineno">4370</tt> <tt class="py-line"><tt class="py-docstring"> Wrapper for parse actions, to ensure they are only called once.</tt> </tt>
-<a name="L4371"></a><tt class="py-lineno">4371</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="OnlyOnce.__init__"></a><div id="OnlyOnce.__init__-def"><a name="L4372"></a><tt class="py-lineno">4372</tt> <a class="py-toggle" href="#" id="OnlyOnce.__init__-toggle" onclick="return toggle('OnlyOnce.__init__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.OnlyOnce-class.html#__init__">__init__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">methodCall</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OnlyOnce.__init__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="OnlyOnce.__init__-expanded"><a name="L4373"></a><tt class="py-lineno">4373</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callable</tt> <tt class="py-op">=</tt> <tt class="py-name">_trim_arity</tt><tt class="py-op">(</tt><tt class="py-name">methodCall</tt><tt class="py-op">)</tt> </tt>
-<a name="L4374"></a><tt class="py-lineno">4374</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">called</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div><a name="OnlyOnce.__call__"></a><div id="OnlyOnce.__call__-def"><a name="L4375"></a><tt class="py-lineno">4375</tt> <a class="py-toggle" href="#" id="OnlyOnce.__call__-toggle" onclick="return toggle('OnlyOnce.__call__');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.OnlyOnce-class.html#__call__">__call__</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OnlyOnce.__call__-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="OnlyOnce.__call__-expanded"><a name="L4376"></a><tt class="py-lineno">4376</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">called</tt><tt class="py-op">:</tt> </tt>
-<a name="L4377"></a><tt class="py-lineno">4377</tt> <tt class="py-line"> <tt class="py-name">results</tt> <tt class="py-op">=</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">callable</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> </tt>
-<a name="L4378"></a><tt class="py-lineno">4378</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">called</tt> <tt class="py-op">=</tt> <tt class="py-name">True</tt> </tt>
-<a name="L4379"></a><tt class="py-lineno">4379</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">results</tt> </tt>
-<a name="L4380"></a><tt class="py-lineno">4380</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-683" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-683', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">""</tt><tt class="py-op">)</tt> </tt>
-</div><a name="OnlyOnce.reset"></a><div id="OnlyOnce.reset-def"><a name="L4381"></a><tt class="py-lineno">4381</tt> <a class="py-toggle" href="#" id="OnlyOnce.reset-toggle" onclick="return toggle('OnlyOnce.reset');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.OnlyOnce-class.html#reset">reset</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="OnlyOnce.reset-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="OnlyOnce.reset-expanded"><a name="L4382"></a><tt class="py-lineno">4382</tt> <tt class="py-line"> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">called</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-</div></div><a name="L4383"></a><tt class="py-lineno">4383</tt> <tt class="py-line"> </tt>
-<a name="traceParseAction"></a><div id="traceParseAction-def"><a name="L4384"></a><tt class="py-lineno">4384</tt> <a class="py-toggle" href="#" id="traceParseAction-toggle" onclick="return toggle('traceParseAction');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#traceParseAction">traceParseAction</a><tt class="py-op">(</tt><tt class="py-param">f</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="traceParseAction-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="traceParseAction-expanded"><a name="L4385"></a><tt class="py-lineno">4385</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4386"></a><tt class="py-lineno">4386</tt> <tt class="py-line"><tt class="py-docstring"> Decorator for debugging parse actions. </tt> </tt>
-<a name="L4387"></a><tt class="py-lineno">4387</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4388"></a><tt class="py-lineno">4388</tt> <tt class="py-line"><tt class="py-docstring"> When the parse action is called, this decorator will print C{">> entering I{method-name}(line:I{current_source_line}, I{parse_location}, I{matched_tokens})".}</tt> </tt>
-<a name="L4389"></a><tt class="py-lineno">4389</tt> <tt class="py-line"><tt class="py-docstring"> When the parse action completes, the decorator will print C{"<<"} followed by the returned value, or any exception that the parse action raised.</tt> </tt>
-<a name="L4390"></a><tt class="py-lineno">4390</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4391"></a><tt class="py-lineno">4391</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4392"></a><tt class="py-lineno">4392</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas)</tt> </tt>
-<a name="L4393"></a><tt class="py-lineno">4393</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4394"></a><tt class="py-lineno">4394</tt> <tt class="py-line"><tt class="py-docstring"> @traceParseAction</tt> </tt>
-<a name="L4395"></a><tt class="py-lineno">4395</tt> <tt class="py-line"><tt class="py-docstring"> def remove_duplicate_chars(tokens):</tt> </tt>
-<a name="L4396"></a><tt class="py-lineno">4396</tt> <tt class="py-line"><tt class="py-docstring"> return ''.join(sorted(set(''.join(tokens)))</tt> </tt>
-<a name="L4397"></a><tt class="py-lineno">4397</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4398"></a><tt class="py-lineno">4398</tt> <tt class="py-line"><tt class="py-docstring"> wds = OneOrMore(wd).setParseAction(remove_duplicate_chars)</tt> </tt>
-<a name="L4399"></a><tt class="py-lineno">4399</tt> <tt class="py-line"><tt class="py-docstring"> print(wds.parseString("slkdjs sld sldd sdlf sdljf"))</tt> </tt>
-<a name="L4400"></a><tt class="py-lineno">4400</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4401"></a><tt class="py-lineno">4401</tt> <tt class="py-line"><tt class="py-docstring"> >>entering remove_duplicate_chars(line: 'slkdjs sld sldd sdlf sdljf', 0, (['slkdjs', 'sld', 'sldd', 'sdlf', 'sdljf'], {}))</tt> </tt>
-<a name="L4402"></a><tt class="py-lineno">4402</tt> <tt class="py-line"><tt class="py-docstring"> <<leaving remove_duplicate_chars (ret: 'dfjkls')</tt> </tt>
-<a name="L4403"></a><tt class="py-lineno">4403</tt> <tt class="py-line"><tt class="py-docstring"> ['dfjkls']</tt> </tt>
-<a name="L4404"></a><tt class="py-lineno">4404</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4405"></a><tt class="py-lineno">4405</tt> <tt class="py-line"> <tt class="py-name">f</tt> <tt class="py-op">=</tt> <tt class="py-name">_trim_arity</tt><tt class="py-op">(</tt><tt class="py-name">f</tt><tt class="py-op">)</tt> </tt>
-<a name="L4406"></a><tt class="py-lineno">4406</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">z</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-param">paArgs</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4407"></a><tt class="py-lineno">4407</tt> <tt class="py-line"> <tt class="py-name">thisFunc</tt> <tt class="py-op">=</tt> <tt class="py-name">f</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> </tt>
-<a name="L4408"></a><tt class="py-lineno">4408</tt> <tt class="py-line"> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt> <tt class="py-op">=</tt> <tt class="py-name">paArgs</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">3</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L4409"></a><tt class="py-lineno">4409</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">paArgs</tt><tt class="py-op">)</tt><tt class="py-op">></tt><tt class="py-number">3</tt><tt class="py-op">:</tt> </tt>
-<a name="L4410"></a><tt class="py-lineno">4410</tt> <tt class="py-line"> <tt class="py-name">thisFunc</tt> <tt class="py-op">=</tt> <tt class="py-name">paArgs</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">__class__</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">+</tt> <tt class="py-string">'.'</tt> <tt class="py-op">+</tt> <tt class="py-name">thisFunc</tt> </tt>
-<a name="L4411"></a><tt class="py-lineno">4411</tt> <tt class="py-line"> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">stderr</tt><tt class="py-op">.</tt><tt class="py-name">write</tt><tt class="py-op">(</tt> <tt class="py-string">">>entering %s(line: '%s', %d, %r)\n"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">thisFunc</tt><tt class="py-op">,</tt><tt id="link-684" class="py-name"><a title="pyparsing.line" class="py-name" href="#" onclick="return doclink('link-684', 'line', 'link-32');">line</a></tt><tt class="py-op">(</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4412"></a><tt class="py-lineno">4412</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4413"></a><tt class="py-lineno">4413</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-name">f</tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">paArgs</tt><tt class="py-op">)</tt> </tt>
-<a name="L4414"></a><tt class="py-lineno">4414</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt> <tt class="py-keyword">as</tt> <tt class="py-name">exc</tt><tt class="py-op">:</tt> </tt>
-<a name="L4415"></a><tt class="py-lineno">4415</tt> <tt class="py-line"> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">stderr</tt><tt class="py-op">.</tt><tt class="py-name">write</tt><tt class="py-op">(</tt> <tt class="py-string">"<<leaving %s (exception: %s)\n"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">thisFunc</tt><tt class="py-op">,</tt><tt class="py-name">exc</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4416"></a><tt class="py-lineno">4416</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> </tt>
-<a name="L4417"></a><tt class="py-lineno">4417</tt> <tt class="py-line"> <tt class="py-name">sys</tt><tt class="py-op">.</tt><tt class="py-name">stderr</tt><tt class="py-op">.</tt><tt class="py-name">write</tt><tt class="py-op">(</tt> <tt class="py-string">"<<leaving %s (ret: %r)\n"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">thisFunc</tt><tt class="py-op">,</tt><tt class="py-name">ret</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4418"></a><tt class="py-lineno">4418</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L4419"></a><tt class="py-lineno">4419</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4420"></a><tt class="py-lineno">4420</tt> <tt class="py-line"> <tt class="py-name">z</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">=</tt> <tt class="py-name">f</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> </tt>
-<a name="L4421"></a><tt class="py-lineno">4421</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">AttributeError</tt><tt class="py-op">:</tt> </tt>
-<a name="L4422"></a><tt class="py-lineno">4422</tt> <tt class="py-line"> <tt class="py-keyword">pass</tt> </tt>
-<a name="L4423"></a><tt class="py-lineno">4423</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">z</tt> </tt>
-</div><a name="L4424"></a><tt class="py-lineno">4424</tt> <tt class="py-line"> </tt>
-<a name="delimitedList"></a><div id="delimitedList-def"><a name="L4425"></a><tt class="py-lineno">4425</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L4426"></a><tt class="py-lineno">4426</tt> <tt class="py-line"><tt class="py-comment"># global helpers</tt> </tt>
-<a name="L4427"></a><tt class="py-lineno">4427</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
-<a name="L4428"></a><tt class="py-lineno">4428</tt> <a class="py-toggle" href="#" id="delimitedList-toggle" onclick="return toggle('delimitedList');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#delimitedList">delimitedList</a><tt class="py-op">(</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">delim</tt><tt class="py-op">=</tt><tt class="py-string">","</tt><tt class="py-op">,</tt> <tt class="py-param">combine</tt><tt class="py-op">=</tt><tt class="py-name">False</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="delimitedList-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="delimitedList-expanded"><a name="L4429"></a><tt class="py-lineno">4429</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4430"></a><tt class="py-lineno">4430</tt> <tt class="py-line"><tt class="py-docstring"> Helper to define a delimited list of expressions - the delimiter defaults to ','.</tt> </tt>
-<a name="L4431"></a><tt class="py-lineno">4431</tt> <tt class="py-line"><tt class="py-docstring"> By default, the list elements and delimiters can have intervening whitespace, and</tt> </tt>
-<a name="L4432"></a><tt class="py-lineno">4432</tt> <tt class="py-line"><tt class="py-docstring"> comments, but this can be overridden by passing C{combine=True} in the constructor.</tt> </tt>
-<a name="L4433"></a><tt class="py-lineno">4433</tt> <tt class="py-line"><tt class="py-docstring"> If C{combine} is set to C{True}, the matching tokens are returned as a single token</tt> </tt>
-<a name="L4434"></a><tt class="py-lineno">4434</tt> <tt class="py-line"><tt class="py-docstring"> string, with the delimiters included; otherwise, the matching tokens are returned</tt> </tt>
-<a name="L4435"></a><tt class="py-lineno">4435</tt> <tt class="py-line"><tt class="py-docstring"> as a list of tokens, with the delimiters suppressed.</tt> </tt>
-<a name="L4436"></a><tt class="py-lineno">4436</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4437"></a><tt class="py-lineno">4437</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4438"></a><tt class="py-lineno">4438</tt> <tt class="py-line"><tt class="py-docstring"> delimitedList(Word(alphas)).parseString("aa,bb,cc") # -> ['aa', 'bb', 'cc']</tt> </tt>
-<a name="L4439"></a><tt class="py-lineno">4439</tt> <tt class="py-line"><tt class="py-docstring"> delimitedList(Word(hexnums), delim=':', combine=True).parseString("AA:BB:CC:DD:EE") # -> ['AA:BB:CC:DD:EE']</tt> </tt>
-<a name="L4440"></a><tt class="py-lineno">4440</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4441"></a><tt class="py-lineno">4441</tt> <tt class="py-line"> <tt class="py-name">dlName</tt> <tt class="py-op">=</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">" ["</tt><tt class="py-op">+</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">delim</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">" "</tt><tt class="py-op">+</tt><tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">"]..."</tt> </tt>
-<a name="L4442"></a><tt class="py-lineno">4442</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">combine</tt><tt class="py-op">:</tt> </tt>
-<a name="L4443"></a><tt class="py-lineno">4443</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-685" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-685', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">+</tt> <tt id="link-686" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-686', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">delim</tt> <tt class="py-op">+</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-687" class="py-name" targets="Method pyparsing.ParserElement.setName()=pyparsing.ParserElement-class.html#setName"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-687', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-name">dlName</tt><tt class="py-op">)</tt> </tt>
-<a name="L4444"></a><tt class="py-lineno">4444</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4445"></a><tt class="py-lineno">4445</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt> <tt class="py-name">expr</tt> <tt class="py-op">+</tt> <tt id="link-688" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-688', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt> <tt id="link-689" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-689', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt> <tt class="py-name">delim</tt> <tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">expr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-690" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-690', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-name">dlName</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4446"></a><tt class="py-lineno">4446</tt> <tt class="py-line"> </tt>
-<a name="countedArray"></a><div id="countedArray-def"><a name="L4447"></a><tt class="py-lineno">4447</tt> <a class="py-toggle" href="#" id="countedArray-toggle" onclick="return toggle('countedArray');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#countedArray">countedArray</a><tt class="py-op">(</tt> <tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">intExpr</tt><tt class="py-op">=</tt><tt class="py-name">None</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="countedArray-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="countedArray-expanded"><a name="L4448"></a><tt class="py-lineno">4448</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4449"></a><tt class="py-lineno">4449</tt> <tt class="py-line"><tt class="py-docstring"> Helper to define a counted list of expressions.</tt> </tt>
-<a name="L4450"></a><tt class="py-lineno">4450</tt> <tt class="py-line"><tt class="py-docstring"> This helper defines a pattern of the form::</tt> </tt>
-<a name="L4451"></a><tt class="py-lineno">4451</tt> <tt class="py-line"><tt class="py-docstring"> integer expr expr expr...</tt> </tt>
-<a name="L4452"></a><tt class="py-lineno">4452</tt> <tt class="py-line"><tt class="py-docstring"> where the leading integer tells how many expr expressions follow.</tt> </tt>
-<a name="L4453"></a><tt class="py-lineno">4453</tt> <tt class="py-line"><tt class="py-docstring"> The matched tokens returns the array of expr tokens as a list - the leading count token is suppressed.</tt> </tt>
-<a name="L4454"></a><tt class="py-lineno">4454</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4455"></a><tt class="py-lineno">4455</tt> <tt class="py-line"><tt class="py-docstring"> If C{intExpr} is specified, it should be a pyparsing expression that produces an integer value.</tt> </tt>
-<a name="L4456"></a><tt class="py-lineno">4456</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4457"></a><tt class="py-lineno">4457</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4458"></a><tt class="py-lineno">4458</tt> <tt class="py-line"><tt class="py-docstring"> countedArray(Word(alphas)).parseString('2 ab cd ef') # -> ['ab', 'cd']</tt> </tt>
-<a name="L4459"></a><tt class="py-lineno">4459</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4460"></a><tt class="py-lineno">4460</tt> <tt class="py-line"><tt class="py-docstring"> # in this parser, the leading integer value is given in binary,</tt> </tt>
-<a name="L4461"></a><tt class="py-lineno">4461</tt> <tt class="py-line"><tt class="py-docstring"> # '10' indicating that 2 values are in the array</tt> </tt>
-<a name="L4462"></a><tt class="py-lineno">4462</tt> <tt class="py-line"><tt class="py-docstring"> binaryConstant = Word('01').setParseAction(lambda t: int(t[0], 2))</tt> </tt>
-<a name="L4463"></a><tt class="py-lineno">4463</tt> <tt class="py-line"><tt class="py-docstring"> countedArray(Word(alphas), intExpr=binaryConstant).parseString('10 ab cd ef') # -> ['ab', 'cd']</tt> </tt>
-<a name="L4464"></a><tt class="py-lineno">4464</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4465"></a><tt class="py-lineno">4465</tt> <tt class="py-line"> <tt class="py-name">arrayExpr</tt> <tt class="py-op">=</tt> <tt id="link-691" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-691', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4466"></a><tt class="py-lineno">4466</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">countFieldParseAction</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4467"></a><tt class="py-lineno">4467</tt> <tt class="py-line"> <tt class="py-name">n</tt> <tt class="py-op">=</tt> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L4468"></a><tt class="py-lineno">4468</tt> <tt class="py-line"> <tt class="py-name">arrayExpr</tt> <tt class="py-op"><<</tt> <tt class="py-op">(</tt><tt class="py-name">n</tt> <tt class="py-keyword">and</tt> <tt id="link-692" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-692', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt id="link-693" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-693', 'And', 'link-274');">And</a></tt><tt class="py-op">(</tt><tt class="py-op">[</tt><tt class="py-name">expr</tt><tt class="py-op">]</tt><tt class="py-op">*</tt><tt class="py-name">n</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-keyword">or</tt> <tt id="link-694" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-694', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt id="link-695" class="py-name" targets="Variable pyparsing.empty=pyparsing-module.html#empty"><a title="pyparsing.empty" class="py-name" href="#" onclick="return doclink('link-695', 'empty', 'link-695');">empty</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4469"></a><tt class="py-lineno">4469</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4470"></a><tt class="py-lineno">4470</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">intExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L4471"></a><tt class="py-lineno">4471</tt> <tt class="py-line"> <tt class="py-name">intExpr</tt> <tt class="py-op">=</tt> <tt id="link-696" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-696', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-697" class="py-name"><a title="pyparsing.nums" class="py-name" href="#" onclick="return doclink('link-697', 'nums', 'link-22');">nums</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-698" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-698', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">int</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4472"></a><tt class="py-lineno">4472</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4473"></a><tt class="py-lineno">4473</tt> <tt class="py-line"> <tt class="py-name">intExpr</tt> <tt class="py-op">=</tt> <tt class="py-name">intExpr</tt><tt class="py-op">.</tt><tt id="link-699" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-699', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4474"></a><tt class="py-lineno">4474</tt> <tt class="py-line"> <tt class="py-name">intExpr</tt><tt class="py-op">.</tt><tt id="link-700" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-700', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"arrayLen"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4475"></a><tt class="py-lineno">4475</tt> <tt class="py-line"> <tt class="py-name">intExpr</tt><tt class="py-op">.</tt><tt id="link-701" class="py-name" targets="Method pyparsing.ParserElement.addParseAction()=pyparsing.ParserElement-class.html#addParseAction"><a title="pyparsing.ParserElement.addParseAction" class="py-name" href="#" onclick="return doclink('link-701', 'addParseAction', 'link-701');">addParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">countFieldParseAction</tt><tt class="py-op">,</tt> <tt class="py-name">callDuringTry</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt> </tt>
-<a name="L4476"></a><tt class="py-lineno">4476</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">(</tt> <tt class="py-name">intExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">arrayExpr</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-702" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-702', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'(len) '</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">'...'</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4477"></a><tt class="py-lineno">4477</tt> <tt class="py-line"> </tt>
-<a name="_flatten"></a><div id="_flatten-def"><a name="L4478"></a><tt class="py-lineno">4478</tt> <a class="py-toggle" href="#" id="_flatten-toggle" onclick="return toggle('_flatten');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_flatten">_flatten</a><tt class="py-op">(</tt><tt class="py-param">L</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_flatten-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_flatten-expanded"><a name="L4479"></a><tt class="py-lineno">4479</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L4480"></a><tt class="py-lineno">4480</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt> <tt class="py-keyword">in</tt> <tt class="py-name">L</tt><tt class="py-op">:</tt> </tt>
-<a name="L4481"></a><tt class="py-lineno">4481</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4482"></a><tt class="py-lineno">4482</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt id="link-703" class="py-name"><a title="pyparsing.ParseResults.extend" class="py-name" href="#" onclick="return doclink('link-703', 'extend', 'link-70');">extend</a></tt><tt class="py-op">(</tt><tt class="py-name">_flatten</tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4483"></a><tt class="py-lineno">4483</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4484"></a><tt class="py-lineno">4484</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt id="link-704" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-704', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">)</tt> </tt>
-<a name="L4485"></a><tt class="py-lineno">4485</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L4486"></a><tt class="py-lineno">4486</tt> <tt class="py-line"> </tt>
-<a name="matchPreviousLiteral"></a><div id="matchPreviousLiteral-def"><a name="L4487"></a><tt class="py-lineno">4487</tt> <a class="py-toggle" href="#" id="matchPreviousLiteral-toggle" onclick="return toggle('matchPreviousLiteral');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#matchPreviousLiteral">matchPreviousLiteral</a><tt class="py-op">(</tt><tt class="py-param">expr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="matchPreviousLiteral-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="matchPreviousLiteral-expanded"><a name="L4488"></a><tt class="py-lineno">4488</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4489"></a><tt class="py-lineno">4489</tt> <tt class="py-line"><tt class="py-docstring"> Helper to define an expression that is indirectly defined from</tt> </tt>
-<a name="L4490"></a><tt class="py-lineno">4490</tt> <tt class="py-line"><tt class="py-docstring"> the tokens matched in a previous expression, that is, it looks</tt> </tt>
-<a name="L4491"></a><tt class="py-lineno">4491</tt> <tt class="py-line"><tt class="py-docstring"> for a 'repeat' of a previous expression. For example::</tt> </tt>
-<a name="L4492"></a><tt class="py-lineno">4492</tt> <tt class="py-line"><tt class="py-docstring"> first = Word(nums)</tt> </tt>
-<a name="L4493"></a><tt class="py-lineno">4493</tt> <tt class="py-line"><tt class="py-docstring"> second = matchPreviousLiteral(first)</tt> </tt>
-<a name="L4494"></a><tt class="py-lineno">4494</tt> <tt class="py-line"><tt class="py-docstring"> matchExpr = first + ":" + second</tt> </tt>
-<a name="L4495"></a><tt class="py-lineno">4495</tt> <tt class="py-line"><tt class="py-docstring"> will match C{"1:1"}, but not C{"1:2"}. Because this matches a</tt> </tt>
-<a name="L4496"></a><tt class="py-lineno">4496</tt> <tt class="py-line"><tt class="py-docstring"> previous literal, will also match the leading C{"1:1"} in C{"1:10"}.</tt> </tt>
-<a name="L4497"></a><tt class="py-lineno">4497</tt> <tt class="py-line"><tt class="py-docstring"> If this is not desired, use C{matchPreviousExpr}.</tt> </tt>
-<a name="L4498"></a><tt class="py-lineno">4498</tt> <tt class="py-line"><tt class="py-docstring"> Do I{not} use with packrat parsing enabled.</tt> </tt>
-<a name="L4499"></a><tt class="py-lineno">4499</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4500"></a><tt class="py-lineno">4500</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op">=</tt> <tt id="link-705" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-705', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4501"></a><tt class="py-lineno">4501</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">copyTokenToRepeater</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4502"></a><tt class="py-lineno">4502</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> </tt>
-<a name="L4503"></a><tt class="py-lineno">4503</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L4504"></a><tt class="py-lineno">4504</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op"><<</tt> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt> </tt>
-<a name="L4505"></a><tt class="py-lineno">4505</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4506"></a><tt class="py-lineno">4506</tt> <tt class="py-line"> <tt class="py-comment"># flatten t tokens</tt> </tt>
-<a name="L4507"></a><tt class="py-lineno">4507</tt> <tt class="py-line"> <tt class="py-name">tflat</tt> <tt class="py-op">=</tt> <tt class="py-name">_flatten</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-706" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-706', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4508"></a><tt class="py-lineno">4508</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op"><<</tt> <tt id="link-707" class="py-name"><a title="pyparsing.And" class="py-name" href="#" onclick="return doclink('link-707', 'And', 'link-274');">And</a></tt><tt class="py-op">(</tt><tt id="link-708" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-708', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">tt</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">tt</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tflat</tt><tt class="py-op">)</tt> </tt>
-<a name="L4509"></a><tt class="py-lineno">4509</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4510"></a><tt class="py-lineno">4510</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op"><<</tt> <tt id="link-709" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-709', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4511"></a><tt class="py-lineno">4511</tt> <tt class="py-line"> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-710" class="py-name"><a title="pyparsing.ParserElement.addParseAction" class="py-name" href="#" onclick="return doclink('link-710', 'addParseAction', 'link-701');">addParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">copyTokenToRepeater</tt><tt class="py-op">,</tt> <tt class="py-name">callDuringTry</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt> </tt>
-<a name="L4512"></a><tt class="py-lineno">4512</tt> <tt class="py-line"> <tt class="py-name">rep</tt><tt class="py-op">.</tt><tt id="link-711" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-711', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'(prev) '</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4513"></a><tt class="py-lineno">4513</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">rep</tt> </tt>
-</div><a name="L4514"></a><tt class="py-lineno">4514</tt> <tt class="py-line"> </tt>
-<a name="matchPreviousExpr"></a><div id="matchPreviousExpr-def"><a name="L4515"></a><tt class="py-lineno">4515</tt> <a class="py-toggle" href="#" id="matchPreviousExpr-toggle" onclick="return toggle('matchPreviousExpr');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#matchPreviousExpr">matchPreviousExpr</a><tt class="py-op">(</tt><tt class="py-param">expr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="matchPreviousExpr-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="matchPreviousExpr-expanded"><a name="L4516"></a><tt class="py-lineno">4516</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4517"></a><tt class="py-lineno">4517</tt> <tt class="py-line"><tt class="py-docstring"> Helper to define an expression that is indirectly defined from</tt> </tt>
-<a name="L4518"></a><tt class="py-lineno">4518</tt> <tt class="py-line"><tt class="py-docstring"> the tokens matched in a previous expression, that is, it looks</tt> </tt>
-<a name="L4519"></a><tt class="py-lineno">4519</tt> <tt class="py-line"><tt class="py-docstring"> for a 'repeat' of a previous expression. For example::</tt> </tt>
-<a name="L4520"></a><tt class="py-lineno">4520</tt> <tt class="py-line"><tt class="py-docstring"> first = Word(nums)</tt> </tt>
-<a name="L4521"></a><tt class="py-lineno">4521</tt> <tt class="py-line"><tt class="py-docstring"> second = matchPreviousExpr(first)</tt> </tt>
-<a name="L4522"></a><tt class="py-lineno">4522</tt> <tt class="py-line"><tt class="py-docstring"> matchExpr = first + ":" + second</tt> </tt>
-<a name="L4523"></a><tt class="py-lineno">4523</tt> <tt class="py-line"><tt class="py-docstring"> will match C{"1:1"}, but not C{"1:2"}. Because this matches by</tt> </tt>
-<a name="L4524"></a><tt class="py-lineno">4524</tt> <tt class="py-line"><tt class="py-docstring"> expressions, will I{not} match the leading C{"1:1"} in C{"1:10"};</tt> </tt>
-<a name="L4525"></a><tt class="py-lineno">4525</tt> <tt class="py-line"><tt class="py-docstring"> the expressions are evaluated first, and then compared, so</tt> </tt>
-<a name="L4526"></a><tt class="py-lineno">4526</tt> <tt class="py-line"><tt class="py-docstring"> C{"1"} is compared with C{"10"}.</tt> </tt>
-<a name="L4527"></a><tt class="py-lineno">4527</tt> <tt class="py-line"><tt class="py-docstring"> Do I{not} use with packrat parsing enabled.</tt> </tt>
-<a name="L4528"></a><tt class="py-lineno">4528</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4529"></a><tt class="py-lineno">4529</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op">=</tt> <tt id="link-712" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-712', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4530"></a><tt class="py-lineno">4530</tt> <tt class="py-line"> <tt class="py-name">e2</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-713" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-713', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4531"></a><tt class="py-lineno">4531</tt> <tt class="py-line"> <tt class="py-name">rep</tt> <tt class="py-op"><<=</tt> <tt class="py-name">e2</tt> </tt>
-<a name="L4532"></a><tt class="py-lineno">4532</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">copyTokenToRepeater</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4533"></a><tt class="py-lineno">4533</tt> <tt class="py-line"> <tt class="py-name">matchTokens</tt> <tt class="py-op">=</tt> <tt class="py-name">_flatten</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-714" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-714', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4534"></a><tt class="py-lineno">4534</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">mustMatchTheseTokens</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4535"></a><tt class="py-lineno">4535</tt> <tt class="py-line"> <tt class="py-name">theseTokens</tt> <tt class="py-op">=</tt> <tt class="py-name">_flatten</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-715" class="py-name"><a title="pyparsing.ParseResults.asList" class="py-name" href="#" onclick="return doclink('link-715', 'asList', 'link-37');">asList</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4536"></a><tt class="py-lineno">4536</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">theseTokens</tt> <tt class="py-op">!=</tt> <tt class="py-name">matchTokens</tt><tt class="py-op">:</tt> </tt>
-<a name="L4537"></a><tt class="py-lineno">4537</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-716" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-716', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-string">""</tt><tt class="py-op">,</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-string">""</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4538"></a><tt class="py-lineno">4538</tt> <tt class="py-line"> <tt class="py-name">rep</tt><tt class="py-op">.</tt><tt id="link-717" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-717', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt> <tt class="py-name">mustMatchTheseTokens</tt><tt class="py-op">,</tt> <tt class="py-name">callDuringTry</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L4539"></a><tt class="py-lineno">4539</tt> <tt class="py-line"> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt id="link-718" class="py-name"><a title="pyparsing.ParserElement.addParseAction" class="py-name" href="#" onclick="return doclink('link-718', 'addParseAction', 'link-701');">addParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">copyTokenToRepeater</tt><tt class="py-op">,</tt> <tt class="py-name">callDuringTry</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt> </tt>
-<a name="L4540"></a><tt class="py-lineno">4540</tt> <tt class="py-line"> <tt class="py-name">rep</tt><tt class="py-op">.</tt><tt id="link-719" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-719', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'(prev) '</tt> <tt class="py-op">+</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4541"></a><tt class="py-lineno">4541</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">rep</tt> </tt>
-</div><a name="L4542"></a><tt class="py-lineno">4542</tt> <tt class="py-line"> </tt>
-<a name="_escapeRegexRangeChars"></a><div id="_escapeRegexRangeChars-def"><a name="L4543"></a><tt class="py-lineno">4543</tt> <a class="py-toggle" href="#" id="_escapeRegexRangeChars-toggle" onclick="return toggle('_escapeRegexRangeChars');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_escapeRegexRangeChars">_escapeRegexRangeChars</a><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_escapeRegexRangeChars-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_escapeRegexRangeChars-expanded"><a name="L4544"></a><tt class="py-lineno">4544</tt> <tt class="py-line"> <tt class="py-comment">#~ escape these chars: ^-]</tt> </tt>
-<a name="L4545"></a><tt class="py-lineno">4545</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-string">r"\^-]"</tt><tt class="py-op">:</tt> </tt>
-<a name="L4546"></a><tt class="py-lineno">4546</tt> <tt class="py-line"> <tt class="py-name">s</tt> <tt class="py-op">=</tt> <tt class="py-name">s</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-name">c</tt><tt class="py-op">,</tt><tt id="link-720" class="py-name"><a title="pyparsing._bslash" class="py-name" href="#" onclick="return doclink('link-720', '_bslash', 'link-28');">_bslash</a></tt><tt class="py-op">+</tt><tt class="py-name">c</tt><tt class="py-op">)</tt> </tt>
-<a name="L4547"></a><tt class="py-lineno">4547</tt> <tt class="py-line"> <tt class="py-name">s</tt> <tt class="py-op">=</tt> <tt class="py-name">s</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">"\n"</tt><tt class="py-op">,</tt><tt class="py-string">r"\n"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4548"></a><tt class="py-lineno">4548</tt> <tt class="py-line"> <tt class="py-name">s</tt> <tt class="py-op">=</tt> <tt class="py-name">s</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">"\t"</tt><tt class="py-op">,</tt><tt class="py-string">r"\t"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4549"></a><tt class="py-lineno">4549</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4550"></a><tt class="py-lineno">4550</tt> <tt class="py-line"> </tt>
-<a name="oneOf"></a><div id="oneOf-def"><a name="L4551"></a><tt class="py-lineno">4551</tt> <a class="py-toggle" href="#" id="oneOf-toggle" onclick="return toggle('oneOf');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#oneOf">oneOf</a><tt class="py-op">(</tt> <tt class="py-param">strs</tt><tt class="py-op">,</tt> <tt class="py-param">caseless</tt><tt class="py-op">=</tt><tt class="py-name">False</tt><tt class="py-op">,</tt> <tt class="py-param">useRegex</tt><tt class="py-op">=</tt><tt class="py-name">True</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="oneOf-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="oneOf-expanded"><a name="L4552"></a><tt class="py-lineno">4552</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4553"></a><tt class="py-lineno">4553</tt> <tt class="py-line"><tt class="py-docstring"> Helper to quickly define a set of alternative Literals, and makes sure to do</tt> </tt>
-<a name="L4554"></a><tt class="py-lineno">4554</tt> <tt class="py-line"><tt class="py-docstring"> longest-first testing when there is a conflict, regardless of the input order,</tt> </tt>
-<a name="L4555"></a><tt class="py-lineno">4555</tt> <tt class="py-line"><tt class="py-docstring"> but returns a C{L{MatchFirst}} for best performance.</tt> </tt>
-<a name="L4556"></a><tt class="py-lineno">4556</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4557"></a><tt class="py-lineno">4557</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L4558"></a><tt class="py-lineno">4558</tt> <tt class="py-line"><tt class="py-docstring"> - strs - a string of space-delimited literals, or a collection of string literals</tt> </tt>
-<a name="L4559"></a><tt class="py-lineno">4559</tt> <tt class="py-line"><tt class="py-docstring"> - caseless - (default=C{False}) - treat all literals as caseless</tt> </tt>
-<a name="L4560"></a><tt class="py-lineno">4560</tt> <tt class="py-line"><tt class="py-docstring"> - useRegex - (default=C{True}) - as an optimization, will generate a Regex</tt> </tt>
-<a name="L4561"></a><tt class="py-lineno">4561</tt> <tt class="py-line"><tt class="py-docstring"> object; otherwise, will generate a C{MatchFirst} object (if C{caseless=True}, or</tt> </tt>
-<a name="L4562"></a><tt class="py-lineno">4562</tt> <tt class="py-line"><tt class="py-docstring"> if creating a C{Regex} raises an exception)</tt> </tt>
-<a name="L4563"></a><tt class="py-lineno">4563</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4564"></a><tt class="py-lineno">4564</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4565"></a><tt class="py-lineno">4565</tt> <tt class="py-line"><tt class="py-docstring"> comp_oper = oneOf("< = > <= >= !=")</tt> </tt>
-<a name="L4566"></a><tt class="py-lineno">4566</tt> <tt class="py-line"><tt class="py-docstring"> var = Word(alphas)</tt> </tt>
-<a name="L4567"></a><tt class="py-lineno">4567</tt> <tt class="py-line"><tt class="py-docstring"> number = Word(nums)</tt> </tt>
-<a name="L4568"></a><tt class="py-lineno">4568</tt> <tt class="py-line"><tt class="py-docstring"> term = var | number</tt> </tt>
-<a name="L4569"></a><tt class="py-lineno">4569</tt> <tt class="py-line"><tt class="py-docstring"> comparison_expr = term + comp_oper + term</tt> </tt>
-<a name="L4570"></a><tt class="py-lineno">4570</tt> <tt class="py-line"><tt class="py-docstring"> print(comparison_expr.searchString("B = 12 AA=23 B<=AA AA>12"))</tt> </tt>
-<a name="L4571"></a><tt class="py-lineno">4571</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4572"></a><tt class="py-lineno">4572</tt> <tt class="py-line"><tt class="py-docstring"> [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']]</tt> </tt>
-<a name="L4573"></a><tt class="py-lineno">4573</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4574"></a><tt class="py-lineno">4574</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">caseless</tt><tt class="py-op">:</tt> </tt>
-<a name="L4575"></a><tt class="py-lineno">4575</tt> <tt class="py-line"> <tt class="py-name">isequal</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">a</tt><tt class="py-op">,</tt><tt class="py-name">b</tt><tt class="py-op">:</tt> <tt class="py-name">a</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-name">b</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4576"></a><tt class="py-lineno">4576</tt> <tt class="py-line"> <tt class="py-name">masks</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">a</tt><tt class="py-op">,</tt><tt class="py-name">b</tt><tt class="py-op">:</tt> <tt class="py-name">b</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">startswith</tt><tt class="py-op">(</tt><tt class="py-name">a</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4577"></a><tt class="py-lineno">4577</tt> <tt class="py-line"> <tt class="py-name">parseElementClass</tt> <tt class="py-op">=</tt> <tt id="link-721" class="py-name"><a title="pyparsing.CaselessLiteral" class="py-name" href="#" onclick="return doclink('link-721', 'CaselessLiteral', 'link-379');">CaselessLiteral</a></tt> </tt>
-<a name="L4578"></a><tt class="py-lineno">4578</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4579"></a><tt class="py-lineno">4579</tt> <tt class="py-line"> <tt class="py-name">isequal</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">a</tt><tt class="py-op">,</tt><tt class="py-name">b</tt><tt class="py-op">:</tt> <tt class="py-name">a</tt> <tt class="py-op">==</tt> <tt class="py-name">b</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4580"></a><tt class="py-lineno">4580</tt> <tt class="py-line"> <tt class="py-name">masks</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">a</tt><tt class="py-op">,</tt><tt class="py-name">b</tt><tt class="py-op">:</tt> <tt class="py-name">b</tt><tt class="py-op">.</tt><tt class="py-name">startswith</tt><tt class="py-op">(</tt><tt class="py-name">a</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L4581"></a><tt class="py-lineno">4581</tt> <tt class="py-line"> <tt class="py-name">parseElementClass</tt> <tt class="py-op">=</tt> <tt id="link-722" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-722', 'Literal', 'link-326');">Literal</a></tt> </tt>
-<a name="L4582"></a><tt class="py-lineno">4582</tt> <tt class="py-line"> </tt>
-<a name="L4583"></a><tt class="py-lineno">4583</tt> <tt class="py-line"> <tt class="py-name">symbols</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">]</tt> </tt>
-<a name="L4584"></a><tt class="py-lineno">4584</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">strs</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4585"></a><tt class="py-lineno">4585</tt> <tt class="py-line"> <tt class="py-name">symbols</tt> <tt class="py-op">=</tt> <tt class="py-name">strs</tt><tt class="py-op">.</tt><tt id="link-723" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-723', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4586"></a><tt class="py-lineno">4586</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">strs</tt><tt class="py-op">,</tt> <tt class="py-name">collections</tt><tt class="py-op">.</tt><tt class="py-name">Iterable</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4587"></a><tt class="py-lineno">4587</tt> <tt class="py-line"> <tt class="py-name">symbols</tt> <tt class="py-op">=</tt> <tt class="py-name">list</tt><tt class="py-op">(</tt><tt class="py-name">strs</tt><tt class="py-op">)</tt> </tt>
-<a name="L4588"></a><tt class="py-lineno">4588</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4589"></a><tt class="py-lineno">4589</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Invalid argument to oneOf, expected string or iterable"</tt><tt class="py-op">,</tt> </tt>
-<a name="L4590"></a><tt class="py-lineno">4590</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L4591"></a><tt class="py-lineno">4591</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">symbols</tt><tt class="py-op">:</tt> </tt>
-<a name="L4592"></a><tt class="py-lineno">4592</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-724" class="py-name"><a title="pyparsing.NoMatch" class="py-name" href="#" onclick="return doclink('link-724', 'NoMatch', 'link-347');">NoMatch</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4593"></a><tt class="py-lineno">4593</tt> <tt class="py-line"> </tt>
-<a name="L4594"></a><tt class="py-lineno">4594</tt> <tt class="py-line"> <tt class="py-name">i</tt> <tt class="py-op">=</tt> <tt class="py-number">0</tt> </tt>
-<a name="L4595"></a><tt class="py-lineno">4595</tt> <tt class="py-line"> <tt class="py-keyword">while</tt> <tt class="py-name">i</tt> <tt class="py-op"><</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L4596"></a><tt class="py-lineno">4596</tt> <tt class="py-line"> <tt class="py-name">cur</tt> <tt class="py-op">=</tt> <tt class="py-name">symbols</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">]</tt> </tt>
-<a name="L4597"></a><tt class="py-lineno">4597</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">j</tt><tt class="py-op">,</tt><tt class="py-name">other</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4598"></a><tt class="py-lineno">4598</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt> <tt class="py-name">isequal</tt><tt class="py-op">(</tt><tt class="py-name">other</tt><tt class="py-op">,</tt> <tt class="py-name">cur</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4599"></a><tt class="py-lineno">4599</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">symbols</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">+</tt><tt class="py-name">j</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L4600"></a><tt class="py-lineno">4600</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L4601"></a><tt class="py-lineno">4601</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-op">(</tt> <tt class="py-name">masks</tt><tt class="py-op">(</tt><tt class="py-name">cur</tt><tt class="py-op">,</tt> <tt class="py-name">other</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4602"></a><tt class="py-lineno">4602</tt> <tt class="py-line"> <tt class="py-keyword">del</tt> <tt class="py-name">symbols</tt><tt class="py-op">[</tt><tt class="py-name">i</tt><tt class="py-op">+</tt><tt class="py-name">j</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-<a name="L4603"></a><tt class="py-lineno">4603</tt> <tt class="py-line"> <tt class="py-name">symbols</tt><tt class="py-op">.</tt><tt id="link-725" class="py-name"><a title="pyparsing.ParseResults.insert" class="py-name" href="#" onclick="return doclink('link-725', 'insert', 'link-66');">insert</a></tt><tt class="py-op">(</tt><tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">other</tt><tt class="py-op">)</tt> </tt>
-<a name="L4604"></a><tt class="py-lineno">4604</tt> <tt class="py-line"> <tt class="py-name">cur</tt> <tt class="py-op">=</tt> <tt class="py-name">other</tt> </tt>
-<a name="L4605"></a><tt class="py-lineno">4605</tt> <tt class="py-line"> <tt class="py-keyword">break</tt> </tt>
-<a name="L4606"></a><tt class="py-lineno">4606</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4607"></a><tt class="py-lineno">4607</tt> <tt class="py-line"> <tt class="py-name">i</tt> <tt class="py-op">+=</tt> <tt class="py-number">1</tt> </tt>
-<a name="L4608"></a><tt class="py-lineno">4608</tt> <tt class="py-line"> </tt>
-<a name="L4609"></a><tt class="py-lineno">4609</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">caseless</tt> <tt class="py-keyword">and</tt> <tt class="py-name">useRegex</tt><tt class="py-op">:</tt> </tt>
-<a name="L4610"></a><tt class="py-lineno">4610</tt> <tt class="py-line"> <tt class="py-comment">#~ print (strs,"->", "|".join( [ _escapeRegexChars(sym) for sym in symbols] ))</tt> </tt>
-<a name="L4611"></a><tt class="py-lineno">4611</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4612"></a><tt class="py-lineno">4612</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">==</tt><tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4613"></a><tt class="py-lineno">4613</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-726" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-726', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt> <tt class="py-string">"[%s]"</tt> <tt class="py-op">%</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_escapeRegexRangeChars</tt><tt class="py-op">(</tt><tt class="py-name">sym</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">sym</tt> <tt class="py-keyword">in</tt> <tt class="py-name">symbols</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-727" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-727', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">' | '</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4614"></a><tt class="py-lineno">4614</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4615"></a><tt class="py-lineno">4615</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-728" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-728', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt> <tt class="py-string">"|"</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">escape</tt><tt class="py-op">(</tt><tt class="py-name">sym</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">sym</tt> <tt class="py-keyword">in</tt> <tt class="py-name">symbols</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-729" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-729', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">' | '</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4616"></a><tt class="py-lineno">4616</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L4617"></a><tt class="py-lineno">4617</tt> <tt class="py-line"> <tt class="py-name">warnings</tt><tt class="py-op">.</tt><tt class="py-name">warn</tt><tt class="py-op">(</tt><tt class="py-string">"Exception creating Regex for oneOf, building MatchFirst"</tt><tt class="py-op">,</tt> </tt>
-<a name="L4618"></a><tt class="py-lineno">4618</tt> <tt class="py-line"> <tt class="py-name">SyntaxWarning</tt><tt class="py-op">,</tt> <tt class="py-name">stacklevel</tt><tt class="py-op">=</tt><tt class="py-number">2</tt><tt class="py-op">)</tt> </tt>
-<a name="L4619"></a><tt class="py-lineno">4619</tt> <tt class="py-line"> </tt>
-<a name="L4620"></a><tt class="py-lineno">4620</tt> <tt class="py-line"> </tt>
-<a name="L4621"></a><tt class="py-lineno">4621</tt> <tt class="py-line"> <tt class="py-comment"># last resort, just use MatchFirst</tt> </tt>
-<a name="L4622"></a><tt class="py-lineno">4622</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-730" class="py-name"><a title="pyparsing.MatchFirst" class="py-name" href="#" onclick="return doclink('link-730', 'MatchFirst', 'link-292');">MatchFirst</a></tt><tt class="py-op">(</tt><tt class="py-name">parseElementClass</tt><tt class="py-op">(</tt><tt class="py-name">sym</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">sym</tt> <tt class="py-keyword">in</tt> <tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-731" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-731', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">' | '</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">symbols</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4623"></a><tt class="py-lineno">4623</tt> <tt class="py-line"> </tt>
-<a name="dictOf"></a><div id="dictOf-def"><a name="L4624"></a><tt class="py-lineno">4624</tt> <a class="py-toggle" href="#" id="dictOf-toggle" onclick="return toggle('dictOf');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#dictOf">dictOf</a><tt class="py-op">(</tt> <tt class="py-param">key</tt><tt class="py-op">,</tt> <tt class="py-param">value</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="dictOf-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="dictOf-expanded"><a name="L4625"></a><tt class="py-lineno">4625</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4626"></a><tt class="py-lineno">4626</tt> <tt class="py-line"><tt class="py-docstring"> Helper to easily and clearly define a dictionary by specifying the respective patterns</tt> </tt>
-<a name="L4627"></a><tt class="py-lineno">4627</tt> <tt class="py-line"><tt class="py-docstring"> for the key and value. Takes care of defining the C{L{Dict}}, C{L{ZeroOrMore}}, and C{L{Group}} tokens</tt> </tt>
-<a name="L4628"></a><tt class="py-lineno">4628</tt> <tt class="py-line"><tt class="py-docstring"> in the proper order. The key pattern can include delimiting markers or punctuation,</tt> </tt>
-<a name="L4629"></a><tt class="py-lineno">4629</tt> <tt class="py-line"><tt class="py-docstring"> as long as they are suppressed, thereby leaving the significant key text. The value</tt> </tt>
-<a name="L4630"></a><tt class="py-lineno">4630</tt> <tt class="py-line"><tt class="py-docstring"> pattern can include named results, so that the C{Dict} results can include named token</tt> </tt>
-<a name="L4631"></a><tt class="py-lineno">4631</tt> <tt class="py-line"><tt class="py-docstring"> fields.</tt> </tt>
-<a name="L4632"></a><tt class="py-lineno">4632</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4633"></a><tt class="py-lineno">4633</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4634"></a><tt class="py-lineno">4634</tt> <tt class="py-line"><tt class="py-docstring"> text = "shape: SQUARE posn: upper left color: light blue texture: burlap"</tt> </tt>
-<a name="L4635"></a><tt class="py-lineno">4635</tt> <tt class="py-line"><tt class="py-docstring"> attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))</tt> </tt>
-<a name="L4636"></a><tt class="py-lineno">4636</tt> <tt class="py-line"><tt class="py-docstring"> print(OneOrMore(attr_expr).parseString(text).dump())</tt> </tt>
-<a name="L4637"></a><tt class="py-lineno">4637</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4638"></a><tt class="py-lineno">4638</tt> <tt class="py-line"><tt class="py-docstring"> attr_label = label</tt> </tt>
-<a name="L4639"></a><tt class="py-lineno">4639</tt> <tt class="py-line"><tt class="py-docstring"> attr_value = Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)</tt> </tt>
-<a name="L4640"></a><tt class="py-lineno">4640</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4641"></a><tt class="py-lineno">4641</tt> <tt class="py-line"><tt class="py-docstring"> # similar to Dict, but simpler call format</tt> </tt>
-<a name="L4642"></a><tt class="py-lineno">4642</tt> <tt class="py-line"><tt class="py-docstring"> result = dictOf(attr_label, attr_value).parseString(text)</tt> </tt>
-<a name="L4643"></a><tt class="py-lineno">4643</tt> <tt class="py-line"><tt class="py-docstring"> print(result.dump())</tt> </tt>
-<a name="L4644"></a><tt class="py-lineno">4644</tt> <tt class="py-line"><tt class="py-docstring"> print(result['shape'])</tt> </tt>
-<a name="L4645"></a><tt class="py-lineno">4645</tt> <tt class="py-line"><tt class="py-docstring"> print(result.shape) # object attribute access works too</tt> </tt>
-<a name="L4646"></a><tt class="py-lineno">4646</tt> <tt class="py-line"><tt class="py-docstring"> print(result.asDict())</tt> </tt>
-<a name="L4647"></a><tt class="py-lineno">4647</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4648"></a><tt class="py-lineno">4648</tt> <tt class="py-line"><tt class="py-docstring"> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]</tt> </tt>
-<a name="L4649"></a><tt class="py-lineno">4649</tt> <tt class="py-line"><tt class="py-docstring"> - color: light blue</tt> </tt>
-<a name="L4650"></a><tt class="py-lineno">4650</tt> <tt class="py-line"><tt class="py-docstring"> - posn: upper left</tt> </tt>
-<a name="L4651"></a><tt class="py-lineno">4651</tt> <tt class="py-line"><tt class="py-docstring"> - shape: SQUARE</tt> </tt>
-<a name="L4652"></a><tt class="py-lineno">4652</tt> <tt class="py-line"><tt class="py-docstring"> - texture: burlap</tt> </tt>
-<a name="L4653"></a><tt class="py-lineno">4653</tt> <tt class="py-line"><tt class="py-docstring"> SQUARE</tt> </tt>
-<a name="L4654"></a><tt class="py-lineno">4654</tt> <tt class="py-line"><tt class="py-docstring"> SQUARE</tt> </tt>
-<a name="L4655"></a><tt class="py-lineno">4655</tt> <tt class="py-line"><tt class="py-docstring"> {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'}</tt> </tt>
-<a name="L4656"></a><tt class="py-lineno">4656</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4657"></a><tt class="py-lineno">4657</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-732" class="py-name"><a title="pyparsing.Dict" class="py-name" href="#" onclick="return doclink('link-732', 'Dict', 'link-677');">Dict</a></tt><tt class="py-op">(</tt> <tt id="link-733" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-733', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt> <tt id="link-734" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-734', 'Group', 'link-675');">Group</a></tt> <tt class="py-op">(</tt> <tt class="py-name">key</tt> <tt class="py-op">+</tt> <tt class="py-name">value</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L4658"></a><tt class="py-lineno">4658</tt> <tt class="py-line"> </tt>
-<a name="originalTextFor"></a><div id="originalTextFor-def"><a name="L4659"></a><tt class="py-lineno">4659</tt> <a class="py-toggle" href="#" id="originalTextFor-toggle" onclick="return toggle('originalTextFor');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#originalTextFor">originalTextFor</a><tt class="py-op">(</tt><tt class="py-param">expr</tt><tt class="py-op">,</tt> <tt class="py-param">asString</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="originalTextFor-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="originalTextFor-expanded"><a name="L4660"></a><tt class="py-lineno">4660</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4661"></a><tt class="py-lineno">4661</tt> <tt class="py-line"><tt class="py-docstring"> Helper to return the original, untokenized text for a given expression. Useful to</tt> </tt>
-<a name="L4662"></a><tt class="py-lineno">4662</tt> <tt class="py-line"><tt class="py-docstring"> restore the parsed fields of an HTML start tag into the raw tag text itself, or to</tt> </tt>
-<a name="L4663"></a><tt class="py-lineno">4663</tt> <tt class="py-line"><tt class="py-docstring"> revert separate tokens with intervening whitespace back to the original matching</tt> </tt>
-<a name="L4664"></a><tt class="py-lineno">4664</tt> <tt class="py-line"><tt class="py-docstring"> input text. By default, returns astring containing the original parsed text. </tt> </tt>
-<a name="L4665"></a><tt class="py-lineno">4665</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4666"></a><tt class="py-lineno">4666</tt> <tt class="py-line"><tt class="py-docstring"> If the optional C{asString} argument is passed as C{False}, then the return value is a </tt> </tt>
-<a name="L4667"></a><tt class="py-lineno">4667</tt> <tt class="py-line"><tt class="py-docstring"> C{L{ParseResults}} containing any results names that were originally matched, and a </tt> </tt>
-<a name="L4668"></a><tt class="py-lineno">4668</tt> <tt class="py-line"><tt class="py-docstring"> single token containing the original matched text from the input string. So if </tt> </tt>
-<a name="L4669"></a><tt class="py-lineno">4669</tt> <tt class="py-line"><tt class="py-docstring"> the expression passed to C{L{originalTextFor}} contains expressions with defined</tt> </tt>
-<a name="L4670"></a><tt class="py-lineno">4670</tt> <tt class="py-line"><tt class="py-docstring"> results names, you must set C{asString} to C{False} if you want to preserve those</tt> </tt>
-<a name="L4671"></a><tt class="py-lineno">4671</tt> <tt class="py-line"><tt class="py-docstring"> results name values.</tt> </tt>
-<a name="L4672"></a><tt class="py-lineno">4672</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4673"></a><tt class="py-lineno">4673</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4674"></a><tt class="py-lineno">4674</tt> <tt class="py-line"><tt class="py-docstring"> src = "this is test <b> bold <i>text</i> </b> normal text "</tt> </tt>
-<a name="L4675"></a><tt class="py-lineno">4675</tt> <tt class="py-line"><tt class="py-docstring"> for tag in ("b","i"):</tt> </tt>
-<a name="L4676"></a><tt class="py-lineno">4676</tt> <tt class="py-line"><tt class="py-docstring"> opener,closer = makeHTMLTags(tag)</tt> </tt>
-<a name="L4677"></a><tt class="py-lineno">4677</tt> <tt class="py-line"><tt class="py-docstring"> patt = originalTextFor(opener + SkipTo(closer) + closer)</tt> </tt>
-<a name="L4678"></a><tt class="py-lineno">4678</tt> <tt class="py-line"><tt class="py-docstring"> print(patt.searchString(src)[0])</tt> </tt>
-<a name="L4679"></a><tt class="py-lineno">4679</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4680"></a><tt class="py-lineno">4680</tt> <tt class="py-line"><tt class="py-docstring"> ['<b> bold <i>text</i> </b>']</tt> </tt>
-<a name="L4681"></a><tt class="py-lineno">4681</tt> <tt class="py-line"><tt class="py-docstring"> ['<i>text</i>']</tt> </tt>
-<a name="L4682"></a><tt class="py-lineno">4682</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4683"></a><tt class="py-lineno">4683</tt> <tt class="py-line"> <tt class="py-name">locMarker</tt> <tt class="py-op">=</tt> <tt id="link-735" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-735', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-736" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-736', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">loc</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">loc</tt><tt class="py-op">)</tt> </tt>
-<a name="L4684"></a><tt class="py-lineno">4684</tt> <tt class="py-line"> <tt class="py-name">endlocMarker</tt> <tt class="py-op">=</tt> <tt class="py-name">locMarker</tt><tt class="py-op">.</tt><tt id="link-737" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-737', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4685"></a><tt class="py-lineno">4685</tt> <tt class="py-line"> <tt class="py-name">endlocMarker</tt><tt class="py-op">.</tt><tt class="py-name">callPreparse</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt> </tt>
-<a name="L4686"></a><tt class="py-lineno">4686</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt class="py-name">locMarker</tt><tt class="py-op">(</tt><tt class="py-string">"_original_start"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">expr</tt> <tt class="py-op">+</tt> <tt class="py-name">endlocMarker</tt><tt class="py-op">(</tt><tt class="py-string">"_original_end"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4687"></a><tt class="py-lineno">4687</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">asString</tt><tt class="py-op">:</tt> </tt>
-<a name="L4688"></a><tt class="py-lineno">4688</tt> <tt class="py-line"> <tt class="py-name">extractText</tt> <tt class="py-op">=</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">s</tt><tt class="py-op">[</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt class="py-name">_original_start</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt class="py-name">_original_end</tt><tt class="py-op">]</tt> </tt>
-<a name="L4689"></a><tt class="py-lineno">4689</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4690"></a><tt class="py-lineno">4690</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">extractText</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4691"></a><tt class="py-lineno">4691</tt> <tt class="py-line"> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-name">s</tt><tt class="py-op">[</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-738" class="py-name"><a title="pyparsing.ParseResults.pop" class="py-name" href="#" onclick="return doclink('link-738', 'pop', 'link-188');">pop</a></tt><tt class="py-op">(</tt><tt class="py-string">'_original_start'</tt><tt class="py-op">)</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt id="link-739" class="py-name"><a title="pyparsing.ParseResults.pop" class="py-name" href="#" onclick="return doclink('link-739', 'pop', 'link-188');">pop</a></tt><tt class="py-op">(</tt><tt class="py-string">'_original_end'</tt><tt class="py-op">)</tt><tt class="py-op">]</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4692"></a><tt class="py-lineno">4692</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt><tt class="py-op">.</tt><tt id="link-740" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-740', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">extractText</tt><tt class="py-op">)</tt> </tt>
-<a name="L4693"></a><tt class="py-lineno">4693</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt> <tt class="py-op">=</tt> <tt class="py-name">expr</tt><tt class="py-op">.</tt><tt class="py-name">ignoreExprs</tt> </tt>
-<a name="L4694"></a><tt class="py-lineno">4694</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">matchExpr</tt> </tt>
-</div><a name="L4695"></a><tt class="py-lineno">4695</tt> <tt class="py-line"> </tt>
-<a name="ungroup"></a><div id="ungroup-def"><a name="L4696"></a><tt class="py-lineno">4696</tt> <a class="py-toggle" href="#" id="ungroup-toggle" onclick="return toggle('ungroup');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#ungroup">ungroup</a><tt class="py-op">(</tt><tt class="py-param">expr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><a name="L4697"></a><tt class="py-lineno">4697</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4698"></a><tt class="py-lineno">4698</tt> <tt class="py-line"><tt class="py-docstring"> Helper to undo pyparsing's default grouping of And expressions, even</tt> </tt>
-<a name="L4699"></a><tt class="py-lineno">4699</tt> <tt class="py-line"><tt class="py-docstring"> if all but one are non-empty.</tt> </tt>
-<a name="L4700"></a><tt class="py-lineno">4700</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4701"></a><tt class="py-lineno">4701</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-741" class="py-name"><a title="pyparsing.TokenConverter" class="py-name" href="#" onclick="return doclink('link-741', 'TokenConverter', 'link-663');">TokenConverter</a></tt><tt class="py-op">(</tt><tt class="py-name">expr</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-742" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-742', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4702"></a><tt class="py-lineno">4702</tt> <tt class="py-line"> </tt>
-<a name="locatedExpr"></a><div id="locatedExpr-def"><a name="L4703"></a><tt class="py-lineno">4703</tt> <a class="py-toggle" href="#" id="locatedExpr-toggle" onclick="return toggle('locatedExpr');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#locatedExpr">locatedExpr</a><tt class="py-op">(</tt><tt class="py-param">expr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="locatedExpr-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="locatedExpr-expanded"><a name="L4704"></a><tt class="py-lineno">4704</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4705"></a><tt class="py-lineno">4705</tt> <tt class="py-line"><tt class="py-docstring"> Helper to decorate a returned token with its starting and ending locations in the input string.</tt> </tt>
-<a name="L4706"></a><tt class="py-lineno">4706</tt> <tt class="py-line"><tt class="py-docstring"> This helper adds the following results names:</tt> </tt>
-<a name="L4707"></a><tt class="py-lineno">4707</tt> <tt class="py-line"><tt class="py-docstring"> - locn_start = location where matched expression begins</tt> </tt>
-<a name="L4708"></a><tt class="py-lineno">4708</tt> <tt class="py-line"><tt class="py-docstring"> - locn_end = location where matched expression ends</tt> </tt>
-<a name="L4709"></a><tt class="py-lineno">4709</tt> <tt class="py-line"><tt class="py-docstring"> - value = the actual parsed results</tt> </tt>
-<a name="L4710"></a><tt class="py-lineno">4710</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4711"></a><tt class="py-lineno">4711</tt> <tt class="py-line"><tt class="py-docstring"> Be careful if the input text contains C{<TAB>} characters, you may want to call</tt> </tt>
-<a name="L4712"></a><tt class="py-lineno">4712</tt> <tt class="py-line"><tt class="py-docstring"> C{L{ParserElement.parseWithTabs}}</tt> </tt>
-<a name="L4713"></a><tt class="py-lineno">4713</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4714"></a><tt class="py-lineno">4714</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4715"></a><tt class="py-lineno">4715</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas)</tt> </tt>
-<a name="L4716"></a><tt class="py-lineno">4716</tt> <tt class="py-line"><tt class="py-docstring"> for match in locatedExpr(wd).searchString("ljsdf123lksdjjf123lkkjj1222"):</tt> </tt>
-<a name="L4717"></a><tt class="py-lineno">4717</tt> <tt class="py-line"><tt class="py-docstring"> print(match)</tt> </tt>
-<a name="L4718"></a><tt class="py-lineno">4718</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4719"></a><tt class="py-lineno">4719</tt> <tt class="py-line"><tt class="py-docstring"> [[0, 'ljsdf', 5]]</tt> </tt>
-<a name="L4720"></a><tt class="py-lineno">4720</tt> <tt class="py-line"><tt class="py-docstring"> [[8, 'lksdjjf', 15]]</tt> </tt>
-<a name="L4721"></a><tt class="py-lineno">4721</tt> <tt class="py-line"><tt class="py-docstring"> [[18, 'lkkjj', 23]]</tt> </tt>
-<a name="L4722"></a><tt class="py-lineno">4722</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4723"></a><tt class="py-lineno">4723</tt> <tt class="py-line"> <tt class="py-name">locator</tt> <tt class="py-op">=</tt> <tt id="link-743" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-743', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-744" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-744', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">l</tt><tt class="py-op">)</tt> </tt>
-<a name="L4724"></a><tt class="py-lineno">4724</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-745" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-745', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt class="py-name">locator</tt><tt class="py-op">(</tt><tt class="py-string">"locn_start"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">expr</tt><tt class="py-op">(</tt><tt class="py-string">"value"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">locator</tt><tt class="py-op">.</tt><tt id="link-746" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-746', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-747" class="py-name"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-747', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">(</tt><tt class="py-string">"locn_end"</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4725"></a><tt class="py-lineno">4725</tt> <tt class="py-line"> </tt>
-<a name="L4726"></a><tt class="py-lineno">4726</tt> <tt class="py-line"> </tt>
-<a name="L4727"></a><tt class="py-lineno">4727</tt> <tt class="py-line"><tt class="py-comment"># convenience constants for positional expressions</tt> </tt>
-<a name="L4728"></a><tt class="py-lineno">4728</tt> <tt class="py-line"><tt id="link-748" class="py-name"><a title="pyparsing.empty" class="py-name" href="#" onclick="return doclink('link-748', 'empty', 'link-695');">empty</a></tt> <tt class="py-op">=</tt> <tt id="link-749" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-749', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-750" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-750', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"empty"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4729"></a><tt class="py-lineno">4729</tt> <tt class="py-line"><tt id="link-751" class="py-name" targets="Variable pyparsing.lineStart=pyparsing-module.html#lineStart"><a title="pyparsing.lineStart" class="py-name" href="#" onclick="return doclink('link-751', 'lineStart', 'link-751');">lineStart</a></tt> <tt class="py-op">=</tt> <tt id="link-752" class="py-name"><a title="pyparsing.LineStart" class="py-name" href="#" onclick="return doclink('link-752', 'LineStart', 'link-476');">LineStart</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-753" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-753', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"lineStart"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4730"></a><tt class="py-lineno">4730</tt> <tt class="py-line"><tt id="link-754" class="py-name" targets="Variable pyparsing.lineEnd=pyparsing-module.html#lineEnd"><a title="pyparsing.lineEnd" class="py-name" href="#" onclick="return doclink('link-754', 'lineEnd', 'link-754');">lineEnd</a></tt> <tt class="py-op">=</tt> <tt id="link-755" class="py-name"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-755', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-756" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-756', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"lineEnd"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4731"></a><tt class="py-lineno">4731</tt> <tt class="py-line"><tt id="link-757" class="py-name" targets="Variable pyparsing.stringStart=pyparsing-module.html#stringStart"><a title="pyparsing.stringStart" class="py-name" href="#" onclick="return doclink('link-757', 'stringStart', 'link-757');">stringStart</a></tt> <tt class="py-op">=</tt> <tt id="link-758" class="py-name"><a title="pyparsing.StringStart" class="py-name" href="#" onclick="return doclink('link-758', 'StringStart', 'link-487');">StringStart</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-759" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-759', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"stringStart"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4732"></a><tt class="py-lineno">4732</tt> <tt class="py-line"><tt id="link-760" class="py-name" targets="Variable pyparsing.stringEnd=pyparsing-module.html#stringEnd"><a title="pyparsing.stringEnd" class="py-name" href="#" onclick="return doclink('link-760', 'stringEnd', 'link-760');">stringEnd</a></tt> <tt class="py-op">=</tt> <tt id="link-761" class="py-name"><a title="pyparsing.StringEnd" class="py-name" href="#" onclick="return doclink('link-761', 'StringEnd', 'link-238');">StringEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-762" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-762', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"stringEnd"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4733"></a><tt class="py-lineno">4733</tt> <tt class="py-line"> </tt>
-<a name="L4734"></a><tt class="py-lineno">4734</tt> <tt class="py-line"><tt id="link-763" class="py-name" targets="Variable pyparsing._escapedPunc=pyparsing-module.html#_escapedPunc"><a title="pyparsing._escapedPunc" class="py-name" href="#" onclick="return doclink('link-763', '_escapedPunc', 'link-763');">_escapedPunc</a></tt> <tt class="py-op">=</tt> <tt id="link-764" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-764', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt> <tt id="link-765" class="py-name"><a title="pyparsing._bslash" class="py-name" href="#" onclick="return doclink('link-765', '_bslash', 'link-28');">_bslash</a></tt><tt class="py-op">,</tt> <tt class="py-string">r"\[]-*.$+^?()~ "</tt><tt class="py-op">,</tt> <tt class="py-name">exact</tt><tt class="py-op">=</tt><tt class="py-number">2</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-766" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-766', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L4735"></a><tt class="py-lineno">4735</tt> <tt class="py-line"><tt id="link-767" class="py-name" targets="Variable pyparsing._escapedHexChar=pyparsing-module.html#_escapedHexChar"><a title="pyparsing._escapedHexChar" class="py-name" href="#" onclick="return doclink('link-767', '_escapedHexChar', 'link-767');">_escapedHexChar</a></tt> <tt class="py-op">=</tt> <tt id="link-768" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-768', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"\\0?[xX][0-9a-fA-F]+"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-769" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-769', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">unichr</tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">lstrip</tt><tt class="py-op">(</tt><tt class="py-string">r'\0x'</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-number">16</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4736"></a><tt class="py-lineno">4736</tt> <tt class="py-line"><tt id="link-770" class="py-name" targets="Variable pyparsing._escapedOctChar=pyparsing-module.html#_escapedOctChar"><a title="pyparsing._escapedOctChar" class="py-name" href="#" onclick="return doclink('link-770', '_escapedOctChar', 'link-770');">_escapedOctChar</a></tt> <tt class="py-op">=</tt> <tt id="link-771" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-771', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"\\0[0-7]+"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-772" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-772', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">unichr</tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-op">]</tt><tt class="py-op">,</tt><tt class="py-number">8</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4737"></a><tt class="py-lineno">4737</tt> <tt class="py-line"><tt id="link-773" class="py-name" targets="Variable pyparsing._singleChar=pyparsing-module.html#_singleChar"><a title="pyparsing._singleChar" class="py-name" href="#" onclick="return doclink('link-773', '_singleChar', 'link-773');">_singleChar</a></tt> <tt class="py-op">=</tt> <tt id="link-774" class="py-name"><a title="pyparsing._escapedPunc" class="py-name" href="#" onclick="return doclink('link-774', '_escapedPunc', 'link-763');">_escapedPunc</a></tt> <tt class="py-op">|</tt> <tt id="link-775" class="py-name"><a title="pyparsing._escapedHexChar" class="py-name" href="#" onclick="return doclink('link-775', '_escapedHexChar', 'link-767');">_escapedHexChar</a></tt> <tt class="py-op">|</tt> <tt id="link-776" class="py-name"><a title="pyparsing._escapedOctChar" class="py-name" href="#" onclick="return doclink('link-776', '_escapedOctChar', 'link-770');">_escapedOctChar</a></tt> <tt class="py-op">|</tt> <tt id="link-777" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-777', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-778" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-778', 'printables', 'link-29');">printables</a></tt><tt class="py-op">,</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">=</tt><tt class="py-string">r'\]'</tt><tt class="py-op">,</tt> <tt class="py-name">exact</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt id="link-779" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-779', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"\w"</tt><tt class="py-op">,</tt> <tt class="py-name">re</tt><tt class="py-op">.</tt><tt class="py-name">UNICODE</tt><tt class="py-op">)</tt> </tt>
-<a name="L4738"></a><tt class="py-lineno">4738</tt> <tt class="py-line"><tt id="link-780" class="py-name" targets="Variable pyparsing._charRange=pyparsing-module.html#_charRange"><a title="pyparsing._charRange" class="py-name" href="#" onclick="return doclink('link-780', '_charRange', 'link-780');">_charRange</a></tt> <tt class="py-op">=</tt> <tt id="link-781" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-781', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt id="link-782" class="py-name"><a title="pyparsing._singleChar" class="py-name" href="#" onclick="return doclink('link-782', '_singleChar', 'link-773');">_singleChar</a></tt> <tt class="py-op">+</tt> <tt id="link-783" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-783', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">"-"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-784" class="py-name"><a title="pyparsing._singleChar" class="py-name" href="#" onclick="return doclink('link-784', '_singleChar', 'link-773');">_singleChar</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L4739"></a><tt class="py-lineno">4739</tt> <tt class="py-line"><tt id="link-785" class="py-name" targets="Variable pyparsing._reBracketExpr=pyparsing-module.html#_reBracketExpr"><a title="pyparsing._reBracketExpr" class="py-name" href="#" onclick="return doclink('link-785', '_reBracketExpr', 'link-785');">_reBracketExpr</a></tt> <tt class="py-op">=</tt> <tt id="link-786" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-786', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-string">"["</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-787" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-787', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-string">"^"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-788" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-788', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"negate"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-789" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-789', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt id="link-790" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-790', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt id="link-791" class="py-name"><a title="pyparsing._charRange" class="py-name" href="#" onclick="return doclink('link-791', '_charRange', 'link-780');">_charRange</a></tt> <tt class="py-op">|</tt> <tt id="link-792" class="py-name"><a title="pyparsing._singleChar" class="py-name" href="#" onclick="return doclink('link-792', '_singleChar', 'link-773');">_singleChar</a></tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-793" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-793', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"body"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"]"</tt> </tt>
-<a name="srange"></a><div id="srange-def"><a name="L4740"></a><tt class="py-lineno">4740</tt> <tt class="py-line"> </tt>
-<a name="L4741"></a><tt class="py-lineno">4741</tt> <a class="py-toggle" href="#" id="srange-toggle" onclick="return toggle('srange');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#srange">srange</a><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="srange-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="srange-expanded"><a name="L4742"></a><tt class="py-lineno">4742</tt> <tt class="py-line"> <tt class="py-docstring">r"""</tt> </tt>
-<a name="L4743"></a><tt class="py-lineno">4743</tt> <tt class="py-line"><tt class="py-docstring"> Helper to easily define string ranges for use in Word construction. Borrows</tt> </tt>
-<a name="L4744"></a><tt class="py-lineno">4744</tt> <tt class="py-line"><tt class="py-docstring"> syntax from regexp '[]' string range definitions::</tt> </tt>
-<a name="L4745"></a><tt class="py-lineno">4745</tt> <tt class="py-line"><tt class="py-docstring"> srange("[0-9]") -> "0123456789"</tt> </tt>
-<a name="L4746"></a><tt class="py-lineno">4746</tt> <tt class="py-line"><tt class="py-docstring"> srange("[a-z]") -> "abcdefghijklmnopqrstuvwxyz"</tt> </tt>
-<a name="L4747"></a><tt class="py-lineno">4747</tt> <tt class="py-line"><tt class="py-docstring"> srange("[a-z$_]") -> "abcdefghijklmnopqrstuvwxyz$_"</tt> </tt>
-<a name="L4748"></a><tt class="py-lineno">4748</tt> <tt class="py-line"><tt class="py-docstring"> The input string must be enclosed in []'s, and the returned string is the expanded</tt> </tt>
-<a name="L4749"></a><tt class="py-lineno">4749</tt> <tt class="py-line"><tt class="py-docstring"> character set joined into a single string.</tt> </tt>
-<a name="L4750"></a><tt class="py-lineno">4750</tt> <tt class="py-line"><tt class="py-docstring"> The values enclosed in the []'s may be:</tt> </tt>
-<a name="L4751"></a><tt class="py-lineno">4751</tt> <tt class="py-line"><tt class="py-docstring"> - a single character</tt> </tt>
-<a name="L4752"></a><tt class="py-lineno">4752</tt> <tt class="py-line"><tt class="py-docstring"> - an escaped character with a leading backslash (such as C{\-} or C{\]})</tt> </tt>
-<a name="L4753"></a><tt class="py-lineno">4753</tt> <tt class="py-line"><tt class="py-docstring"> - an escaped hex character with a leading C{'\x'} (C{\x21}, which is a C{'!'} character) </tt> </tt>
-<a name="L4754"></a><tt class="py-lineno">4754</tt> <tt class="py-line"><tt class="py-docstring"> (C{\0x##} is also supported for backwards compatibility) </tt> </tt>
-<a name="L4755"></a><tt class="py-lineno">4755</tt> <tt class="py-line"><tt class="py-docstring"> - an escaped octal character with a leading C{'\0'} (C{\041}, which is a C{'!'} character)</tt> </tt>
-<a name="L4756"></a><tt class="py-lineno">4756</tt> <tt class="py-line"><tt class="py-docstring"> - a range of any of the above, separated by a dash (C{'a-z'}, etc.)</tt> </tt>
-<a name="L4757"></a><tt class="py-lineno">4757</tt> <tt class="py-line"><tt class="py-docstring"> - any combination of the above (C{'aeiouy'}, C{'a-zA-Z0-9_$'}, etc.)</tt> </tt>
-<a name="L4758"></a><tt class="py-lineno">4758</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4759"></a><tt class="py-lineno">4759</tt> <tt class="py-line"> <tt class="py-name">_expanded</tt> <tt class="py-op">=</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">p</tt><tt class="py-op">:</tt> <tt class="py-name">p</tt> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">p</tt><tt class="py-op">,</tt><tt id="link-794" class="py-name"><a title="pyparsing.ParseResults" class="py-name" href="#" onclick="return doclink('link-794', 'ParseResults', 'link-39');">ParseResults</a></tt><tt class="py-op">)</tt> <tt class="py-keyword">else</tt> <tt class="py-string">''</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">unichr</tt><tt class="py-op">(</tt><tt class="py-name">c</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt class="py-name">range</tt><tt class="py-op">(</tt><tt class="py-name">ord</tt><tt class="py-op">(</tt><tt class="py-name">p</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-name">ord</tt><tt class="py-op">(</tt><tt class="py-name">p</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4760"></a><tt class="py-lineno">4760</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4761"></a><tt class="py-lineno">4761</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">_expanded</tt><tt class="py-op">(</tt><tt class="py-name">part</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">part</tt> <tt class="py-keyword">in</tt> <tt id="link-795" class="py-name"><a title="pyparsing._reBracketExpr" class="py-name" href="#" onclick="return doclink('link-795', '_reBracketExpr', 'link-785');">_reBracketExpr</a></tt><tt class="py-op">.</tt><tt id="link-796" class="py-name"><a title="pyparsing.ParserElement.parseString" class="py-name" href="#" onclick="return doclink('link-796', 'parseString', 'link-317');">parseString</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">body</tt><tt class="py-op">)</tt> </tt>
-<a name="L4762"></a><tt class="py-lineno">4762</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L4763"></a><tt class="py-lineno">4763</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">""</tt> </tt>
-</div><a name="L4764"></a><tt class="py-lineno">4764</tt> <tt class="py-line"> </tt>
-<a name="matchOnlyAtCol"></a><div id="matchOnlyAtCol-def"><a name="L4765"></a><tt class="py-lineno">4765</tt> <a class="py-toggle" href="#" id="matchOnlyAtCol-toggle" onclick="return toggle('matchOnlyAtCol');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#matchOnlyAtCol">matchOnlyAtCol</a><tt class="py-op">(</tt><tt class="py-param">n</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="matchOnlyAtCol-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="matchOnlyAtCol-expanded"><a name="L4766"></a><tt class="py-lineno">4766</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4767"></a><tt class="py-lineno">4767</tt> <tt class="py-line"><tt class="py-docstring"> Helper method for defining parse actions that require matching at a specific</tt> </tt>
-<a name="L4768"></a><tt class="py-lineno">4768</tt> <tt class="py-line"><tt class="py-docstring"> column in the input text.</tt> </tt>
-<a name="L4769"></a><tt class="py-lineno">4769</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4770"></a><tt class="py-lineno">4770</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">verifyCol</tt><tt class="py-op">(</tt><tt class="py-param">strg</tt><tt class="py-op">,</tt><tt class="py-param">locn</tt><tt class="py-op">,</tt><tt class="py-param">toks</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4771"></a><tt class="py-lineno">4771</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt id="link-797" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-797', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">locn</tt><tt class="py-op">,</tt><tt class="py-name">strg</tt><tt class="py-op">)</tt> <tt class="py-op">!=</tt> <tt class="py-name">n</tt><tt class="py-op">:</tt> </tt>
-<a name="L4772"></a><tt class="py-lineno">4772</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-798" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-798', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">strg</tt><tt class="py-op">,</tt><tt class="py-name">locn</tt><tt class="py-op">,</tt><tt class="py-string">"matched token not at column %d"</tt> <tt class="py-op">%</tt> <tt class="py-name">n</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4773"></a><tt class="py-lineno">4773</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">verifyCol</tt> </tt>
-</div><a name="L4774"></a><tt class="py-lineno">4774</tt> <tt class="py-line"> </tt>
-<a name="replaceWith"></a><div id="replaceWith-def"><a name="L4775"></a><tt class="py-lineno">4775</tt> <a class="py-toggle" href="#" id="replaceWith-toggle" onclick="return toggle('replaceWith');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#replaceWith">replaceWith</a><tt class="py-op">(</tt><tt class="py-param">replStr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="replaceWith-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="replaceWith-expanded"><a name="L4776"></a><tt class="py-lineno">4776</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4777"></a><tt class="py-lineno">4777</tt> <tt class="py-line"><tt class="py-docstring"> Helper method for common parse actions that simply return a literal value. Especially</tt> </tt>
-<a name="L4778"></a><tt class="py-lineno">4778</tt> <tt class="py-line"><tt class="py-docstring"> useful when used with C{L{transformString<ParserElement.transformString>}()}.</tt> </tt>
-<a name="L4779"></a><tt class="py-lineno">4779</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4780"></a><tt class="py-lineno">4780</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4781"></a><tt class="py-lineno">4781</tt> <tt class="py-line"><tt class="py-docstring"> num = Word(nums).setParseAction(lambda toks: int(toks[0]))</tt> </tt>
-<a name="L4782"></a><tt class="py-lineno">4782</tt> <tt class="py-line"><tt class="py-docstring"> na = oneOf("N/A NA").setParseAction(replaceWith(math.nan))</tt> </tt>
-<a name="L4783"></a><tt class="py-lineno">4783</tt> <tt class="py-line"><tt class="py-docstring"> term = na | num</tt> </tt>
-<a name="L4784"></a><tt class="py-lineno">4784</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4785"></a><tt class="py-lineno">4785</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(term).parseString("324 234 N/A 234") # -> [324, 234, nan, 234]</tt> </tt>
-<a name="L4786"></a><tt class="py-lineno">4786</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4787"></a><tt class="py-lineno">4787</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-op">[</tt><tt class="py-name">replStr</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4788"></a><tt class="py-lineno">4788</tt> <tt class="py-line"> </tt>
-<a name="removeQuotes"></a><div id="removeQuotes-def"><a name="L4789"></a><tt class="py-lineno">4789</tt> <a class="py-toggle" href="#" id="removeQuotes-toggle" onclick="return toggle('removeQuotes');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#removeQuotes">removeQuotes</a><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="removeQuotes-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="removeQuotes-expanded"><a name="L4790"></a><tt class="py-lineno">4790</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4791"></a><tt class="py-lineno">4791</tt> <tt class="py-line"><tt class="py-docstring"> Helper parse action for removing quotation marks from parsed quoted strings.</tt> </tt>
-<a name="L4792"></a><tt class="py-lineno">4792</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4793"></a><tt class="py-lineno">4793</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4794"></a><tt class="py-lineno">4794</tt> <tt class="py-line"><tt class="py-docstring"> # by default, quotation marks are included in parsed results</tt> </tt>
-<a name="L4795"></a><tt class="py-lineno">4795</tt> <tt class="py-line"><tt class="py-docstring"> quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["'Now is the Winter of our Discontent'"]</tt> </tt>
-<a name="L4796"></a><tt class="py-lineno">4796</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4797"></a><tt class="py-lineno">4797</tt> <tt class="py-line"><tt class="py-docstring"> # use removeQuotes to strip quotation marks from parsed results</tt> </tt>
-<a name="L4798"></a><tt class="py-lineno">4798</tt> <tt class="py-line"><tt class="py-docstring"> quotedString.setParseAction(removeQuotes)</tt> </tt>
-<a name="L4799"></a><tt class="py-lineno">4799</tt> <tt class="py-line"><tt class="py-docstring"> quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"]</tt> </tt>
-<a name="L4800"></a><tt class="py-lineno">4800</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4801"></a><tt class="py-lineno">4801</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">[</tt><tt class="py-number">1</tt><tt class="py-op">:</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4802"></a><tt class="py-lineno">4802</tt> <tt class="py-line"> </tt>
-<a name="tokenMap"></a><div id="tokenMap-def"><a name="L4803"></a><tt class="py-lineno">4803</tt> <a class="py-toggle" href="#" id="tokenMap-toggle" onclick="return toggle('tokenMap');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#tokenMap">tokenMap</a><tt class="py-op">(</tt><tt class="py-param">func</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="tokenMap-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="tokenMap-expanded"><a name="L4804"></a><tt class="py-lineno">4804</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4805"></a><tt class="py-lineno">4805</tt> <tt class="py-line"><tt class="py-docstring"> Helper to define a parse action by mapping a function to all elements of a ParseResults list.If any additional </tt> </tt>
-<a name="L4806"></a><tt class="py-lineno">4806</tt> <tt class="py-line"><tt class="py-docstring"> args are passed, they are forwarded to the given function as additional arguments after</tt> </tt>
-<a name="L4807"></a><tt class="py-lineno">4807</tt> <tt class="py-line"><tt class="py-docstring"> the token, as in C{hex_integer = Word(hexnums).setParseAction(tokenMap(int, 16))}, which will convert the</tt> </tt>
-<a name="L4808"></a><tt class="py-lineno">4808</tt> <tt class="py-line"><tt class="py-docstring"> parsed data to an integer using base 16.</tt> </tt>
-<a name="L4809"></a><tt class="py-lineno">4809</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4810"></a><tt class="py-lineno">4810</tt> <tt class="py-line"><tt class="py-docstring"> Example (compare the last to example in L{ParserElement.transformString}::</tt> </tt>
-<a name="L4811"></a><tt class="py-lineno">4811</tt> <tt class="py-line"><tt class="py-docstring"> hex_ints = OneOrMore(Word(hexnums)).setParseAction(tokenMap(int, 16))</tt> </tt>
-<a name="L4812"></a><tt class="py-lineno">4812</tt> <tt class="py-line"><tt class="py-docstring"> hex_ints.runTests('''</tt> </tt>
-<a name="L4813"></a><tt class="py-lineno">4813</tt> <tt class="py-line"><tt class="py-docstring"> 00 11 22 aa FF 0a 0d 1a</tt> </tt>
-<a name="L4814"></a><tt class="py-lineno">4814</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L4815"></a><tt class="py-lineno">4815</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4816"></a><tt class="py-lineno">4816</tt> <tt class="py-line"><tt class="py-docstring"> upperword = Word(alphas).setParseAction(tokenMap(str.upper))</tt> </tt>
-<a name="L4817"></a><tt class="py-lineno">4817</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(upperword).runTests('''</tt> </tt>
-<a name="L4818"></a><tt class="py-lineno">4818</tt> <tt class="py-line"><tt class="py-docstring"> my kingdom for a horse</tt> </tt>
-<a name="L4819"></a><tt class="py-lineno">4819</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L4820"></a><tt class="py-lineno">4820</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4821"></a><tt class="py-lineno">4821</tt> <tt class="py-line"><tt class="py-docstring"> wd = Word(alphas).setParseAction(tokenMap(str.title))</tt> </tt>
-<a name="L4822"></a><tt class="py-lineno">4822</tt> <tt class="py-line"><tt class="py-docstring"> OneOrMore(wd).setParseAction(' '.join).runTests('''</tt> </tt>
-<a name="L4823"></a><tt class="py-lineno">4823</tt> <tt class="py-line"><tt class="py-docstring"> now is the winter of our discontent made glorious summer by this sun of york</tt> </tt>
-<a name="L4824"></a><tt class="py-lineno">4824</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L4825"></a><tt class="py-lineno">4825</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4826"></a><tt class="py-lineno">4826</tt> <tt class="py-line"><tt class="py-docstring"> 00 11 22 aa FF 0a 0d 1a</tt> </tt>
-<a name="L4827"></a><tt class="py-lineno">4827</tt> <tt class="py-line"><tt class="py-docstring"> [0, 17, 34, 170, 255, 10, 13, 26]</tt> </tt>
-<a name="L4828"></a><tt class="py-lineno">4828</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4829"></a><tt class="py-lineno">4829</tt> <tt class="py-line"><tt class="py-docstring"> my kingdom for a horse</tt> </tt>
-<a name="L4830"></a><tt class="py-lineno">4830</tt> <tt class="py-line"><tt class="py-docstring"> ['MY', 'KINGDOM', 'FOR', 'A', 'HORSE']</tt> </tt>
-<a name="L4831"></a><tt class="py-lineno">4831</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4832"></a><tt class="py-lineno">4832</tt> <tt class="py-line"><tt class="py-docstring"> now is the winter of our discontent made glorious summer by this sun of york</tt> </tt>
-<a name="L4833"></a><tt class="py-lineno">4833</tt> <tt class="py-line"><tt class="py-docstring"> ['Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York']</tt> </tt>
-<a name="L4834"></a><tt class="py-lineno">4834</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4835"></a><tt class="py-lineno">4835</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">pa</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4836"></a><tt class="py-lineno">4836</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-op">[</tt><tt class="py-name">func</tt><tt class="py-op">(</tt><tt class="py-name">tokn</tt><tt class="py-op">,</tt> <tt class="py-op">*</tt><tt class="py-name">args</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">tokn</tt> <tt class="py-keyword">in</tt> <tt class="py-name">t</tt><tt class="py-op">]</tt> </tt>
-</div><a name="L4837"></a><tt class="py-lineno">4837</tt> <tt class="py-line"> </tt>
-<a name="L4838"></a><tt class="py-lineno">4838</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L4839"></a><tt class="py-lineno">4839</tt> <tt class="py-line"> <tt class="py-name">func_name</tt> <tt class="py-op">=</tt> <tt class="py-name">getattr</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">,</tt> <tt class="py-string">'__name__'</tt><tt class="py-op">,</tt> </tt>
-<a name="L4840"></a><tt class="py-lineno">4840</tt> <tt class="py-line"> <tt class="py-name">getattr</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">,</tt> <tt class="py-string">'__class__'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt><tt class="py-op">)</tt> </tt>
-<a name="L4841"></a><tt class="py-lineno">4841</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">Exception</tt><tt class="py-op">:</tt> </tt>
-<a name="L4842"></a><tt class="py-lineno">4842</tt> <tt class="py-line"> <tt class="py-name">func_name</tt> <tt class="py-op">=</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">func</tt><tt class="py-op">)</tt> </tt>
-<a name="L4843"></a><tt class="py-lineno">4843</tt> <tt class="py-line"> <tt class="py-name">pa</tt><tt class="py-op">.</tt><tt class="py-name">__name__</tt> <tt class="py-op">=</tt> <tt class="py-name">func_name</tt> </tt>
-<a name="L4844"></a><tt class="py-lineno">4844</tt> <tt class="py-line"> </tt>
-<a name="L4845"></a><tt class="py-lineno">4845</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">pa</tt> </tt>
-</div><a name="L4846"></a><tt class="py-lineno">4846</tt> <tt class="py-line"> </tt>
-<a name="L4847"></a><tt class="py-lineno">4847</tt> <tt class="py-line"><tt id="link-799" class="py-name" targets="Static Method pyparsing.pyparsing_common.upcaseTokens()=pyparsing.pyparsing_common-class.html#upcaseTokens,Function pyparsing.upcaseTokens()=pyparsing-module.html#upcaseTokens"><a title="pyparsing.pyparsing_common.upcaseTokens
-pyparsing.upcaseTokens" class="py-name" href="#" onclick="return doclink('link-799', 'upcaseTokens', 'link-799');">upcaseTokens</a></tt> <tt class="py-op">=</tt> <tt id="link-800" class="py-name" targets="Function pyparsing.tokenMap()=pyparsing-module.html#tokenMap"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-800', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4848"></a><tt class="py-lineno">4848</tt> <tt class="py-line"><tt class="py-string">"""(Deprecated) Helper parse action to convert tokens to upper case. Deprecated in favor of L{pyparsing_common.upcaseTokens}"""</tt> </tt>
-<a name="L4849"></a><tt class="py-lineno">4849</tt> <tt class="py-line"> </tt>
-<a name="L4850"></a><tt class="py-lineno">4850</tt> <tt class="py-line"><tt id="link-801" class="py-name" targets="Function pyparsing.downcaseTokens()=pyparsing-module.html#downcaseTokens,Static Method pyparsing.pyparsing_common.downcaseTokens()=pyparsing.pyparsing_common-class.html#downcaseTokens"><a title="pyparsing.downcaseTokens
-pyparsing.pyparsing_common.downcaseTokens" class="py-name" href="#" onclick="return doclink('link-801', 'downcaseTokens', 'link-801');">downcaseTokens</a></tt> <tt class="py-op">=</tt> <tt id="link-802" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-802', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">lower</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L4851"></a><tt class="py-lineno">4851</tt> <tt class="py-line"><tt class="py-string">"""(Deprecated) Helper parse action to convert tokens to lower case. Deprecated in favor of L{pyparsing_common.downcaseTokens}"""</tt> </tt>
-<a name="_makeTags"></a><div id="_makeTags-def"><a name="L4852"></a><tt class="py-lineno">4852</tt> <tt class="py-line"> </tt>
-<a name="L4853"></a><tt class="py-lineno">4853</tt> <a class="py-toggle" href="#" id="_makeTags-toggle" onclick="return toggle('_makeTags');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#_makeTags">_makeTags</a><tt class="py-op">(</tt><tt class="py-param">tagStr</tt><tt class="py-op">,</tt> <tt class="py-param">xml</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="_makeTags-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="_makeTags-expanded"><a name="L4854"></a><tt class="py-lineno">4854</tt> <tt class="py-line"> <tt class="py-docstring">"""Internal helper to construct opening and closing tag expressions, given a tag name"""</tt> </tt>
-<a name="L4855"></a><tt class="py-lineno">4855</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">tagStr</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4856"></a><tt class="py-lineno">4856</tt> <tt class="py-line"> <tt class="py-name">resname</tt> <tt class="py-op">=</tt> <tt class="py-name">tagStr</tt> </tt>
-<a name="L4857"></a><tt class="py-lineno">4857</tt> <tt class="py-line"> <tt class="py-name">tagStr</tt> <tt class="py-op">=</tt> <tt id="link-803" class="py-name"><a title="pyparsing.Keyword" class="py-name" href="#" onclick="return doclink('link-803', 'Keyword', 'link-363');">Keyword</a></tt><tt class="py-op">(</tt><tt class="py-name">tagStr</tt><tt class="py-op">,</tt> <tt class="py-name">caseless</tt><tt class="py-op">=</tt><tt class="py-keyword">not</tt> <tt class="py-name">xml</tt><tt class="py-op">)</tt> </tt>
-<a name="L4858"></a><tt class="py-lineno">4858</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4859"></a><tt class="py-lineno">4859</tt> <tt class="py-line"> <tt class="py-name">resname</tt> <tt class="py-op">=</tt> <tt class="py-name">tagStr</tt><tt class="py-op">.</tt><tt class="py-name">name</tt> </tt>
-<a name="L4860"></a><tt class="py-lineno">4860</tt> <tt class="py-line"> </tt>
-<a name="L4861"></a><tt class="py-lineno">4861</tt> <tt class="py-line"> <tt class="py-name">tagAttrName</tt> <tt class="py-op">=</tt> <tt id="link-804" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-804', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-805" class="py-name"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-805', 'alphas', 'link-21');">alphas</a></tt><tt class="py-op">,</tt><tt id="link-806" class="py-name"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-806', 'alphanums', 'link-25');">alphanums</a></tt><tt class="py-op">+</tt><tt class="py-string">"_-:"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4862"></a><tt class="py-lineno">4862</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-op">(</tt><tt class="py-name">xml</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4863"></a><tt class="py-lineno">4863</tt> <tt class="py-line"> <tt class="py-name">tagAttrValue</tt> <tt class="py-op">=</tt> <tt id="link-807" class="py-name" targets="Variable pyparsing.dblQuotedString=pyparsing-module.html#dblQuotedString"><a title="pyparsing.dblQuotedString" class="py-name" href="#" onclick="return doclink('link-807', 'dblQuotedString', 'link-807');">dblQuotedString</a></tt><tt class="py-op">.</tt><tt id="link-808" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-808', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-809" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-809', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt> <tt id="link-810" class="py-name" targets="Function pyparsing.removeQuotes()=pyparsing-module.html#removeQuotes"><a title="pyparsing.removeQuotes" class="py-name" href="#" onclick="return doclink('link-810', 'removeQuotes', 'link-810');">removeQuotes</a></tt> <tt class="py-op">)</tt> </tt>
-<a name="L4864"></a><tt class="py-lineno">4864</tt> <tt class="py-line"> <tt class="py-name">openTag</tt> <tt class="py-op">=</tt> <tt id="link-811" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-811', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">"<"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">tagStr</tt><tt class="py-op">(</tt><tt class="py-string">"tag"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L4865"></a><tt class="py-lineno">4865</tt> <tt class="py-line"> <tt id="link-812" class="py-name"><a title="pyparsing.Dict" class="py-name" href="#" onclick="return doclink('link-812', 'Dict', 'link-677');">Dict</a></tt><tt class="py-op">(</tt><tt id="link-813" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-813', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt><tt id="link-814" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-814', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">tagAttrName</tt> <tt class="py-op">+</tt> <tt id="link-815" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-815', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">"="</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">tagAttrValue</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L4866"></a><tt class="py-lineno">4866</tt> <tt class="py-line"> <tt id="link-816" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-816', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-string">"/"</tt><tt class="py-op">,</tt><tt class="py-name">default</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-name">False</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-817" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-817', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"empty"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-818" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-818', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">==</tt><tt class="py-string">'/'</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-819" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-819', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">">"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4867"></a><tt class="py-lineno">4867</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4868"></a><tt class="py-lineno">4868</tt> <tt class="py-line"> <tt class="py-name">printablesLessRAbrack</tt> <tt class="py-op">=</tt> <tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">c</tt> <tt class="py-keyword">for</tt> <tt class="py-name">c</tt> <tt class="py-keyword">in</tt> <tt id="link-820" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-820', 'printables', 'link-29');">printables</a></tt> <tt class="py-keyword">if</tt> <tt class="py-name">c</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-string">">"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4869"></a><tt class="py-lineno">4869</tt> <tt class="py-line"> <tt class="py-name">tagAttrValue</tt> <tt class="py-op">=</tt> <tt id="link-821" class="py-name" targets="Variable pyparsing.quotedString=pyparsing-module.html#quotedString"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-821', 'quotedString', 'link-821');">quotedString</a></tt><tt class="py-op">.</tt><tt id="link-822" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-822', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-823" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-823', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt> <tt id="link-824" class="py-name"><a title="pyparsing.removeQuotes" class="py-name" href="#" onclick="return doclink('link-824', 'removeQuotes', 'link-810');">removeQuotes</a></tt> <tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt id="link-825" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-825', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt class="py-name">printablesLessRAbrack</tt><tt class="py-op">)</tt> </tt>
-<a name="L4870"></a><tt class="py-lineno">4870</tt> <tt class="py-line"> <tt class="py-name">openTag</tt> <tt class="py-op">=</tt> <tt id="link-826" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-826', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">"<"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">tagStr</tt><tt class="py-op">(</tt><tt class="py-string">"tag"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L4871"></a><tt class="py-lineno">4871</tt> <tt class="py-line"> <tt id="link-827" class="py-name"><a title="pyparsing.Dict" class="py-name" href="#" onclick="return doclink('link-827', 'Dict', 'link-677');">Dict</a></tt><tt class="py-op">(</tt><tt id="link-828" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-828', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt><tt id="link-829" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-829', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">tagAttrName</tt><tt class="py-op">.</tt><tt id="link-830" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-830', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-831" class="py-name"><a title="pyparsing.downcaseTokens
-pyparsing.pyparsing_common.downcaseTokens" class="py-name" href="#" onclick="return doclink('link-831', 'downcaseTokens', 'link-801');">downcaseTokens</a></tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L4872"></a><tt class="py-lineno">4872</tt> <tt class="py-line"> <tt id="link-832" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-832', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt> <tt id="link-833" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-833', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">"="</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">tagAttrValue</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L4873"></a><tt class="py-lineno">4873</tt> <tt class="py-line"> <tt id="link-834" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-834', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-string">"/"</tt><tt class="py-op">,</tt><tt class="py-name">default</tt><tt class="py-op">=</tt><tt class="py-op">[</tt><tt class="py-name">False</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-835" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-835', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"empty"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-836" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-836', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">==</tt><tt class="py-string">'/'</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-837" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-837', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">">"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4874"></a><tt class="py-lineno">4874</tt> <tt class="py-line"> <tt class="py-name">closeTag</tt> <tt class="py-op">=</tt> <tt id="link-838" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-838', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt class="py-name">_L</tt><tt class="py-op">(</tt><tt class="py-string">"</"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">tagStr</tt> <tt class="py-op">+</tt> <tt class="py-string">">"</tt><tt class="py-op">)</tt> </tt>
-<a name="L4875"></a><tt class="py-lineno">4875</tt> <tt class="py-line"> </tt>
-<a name="L4876"></a><tt class="py-lineno">4876</tt> <tt class="py-line"> <tt class="py-name">openTag</tt> <tt class="py-op">=</tt> <tt class="py-name">openTag</tt><tt class="py-op">.</tt><tt id="link-839" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-839', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"start"</tt><tt class="py-op">+</tt><tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">resname</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">":"</tt><tt class="py-op">,</tt><tt class="py-string">" "</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">title</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-840" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-840', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-841" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-841', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"<%s>"</tt> <tt class="py-op">%</tt> <tt class="py-name">resname</tt><tt class="py-op">)</tt> </tt>
-<a name="L4877"></a><tt class="py-lineno">4877</tt> <tt class="py-line"> <tt class="py-name">closeTag</tt> <tt class="py-op">=</tt> <tt class="py-name">closeTag</tt><tt class="py-op">.</tt><tt id="link-842" class="py-name"><a title="pyparsing.ParseExpression.setResultsName
-pyparsing.ParserElement.setResultsName" class="py-name" href="#" onclick="return doclink('link-842', 'setResultsName', 'link-306');">setResultsName</a></tt><tt class="py-op">(</tt><tt class="py-string">"end"</tt><tt class="py-op">+</tt><tt class="py-string">""</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt class="py-name">resname</tt><tt class="py-op">.</tt><tt class="py-name">replace</tt><tt class="py-op">(</tt><tt class="py-string">":"</tt><tt class="py-op">,</tt><tt class="py-string">" "</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">title</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-843" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-843', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-844" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-844', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"</%s>"</tt> <tt class="py-op">%</tt> <tt class="py-name">resname</tt><tt class="py-op">)</tt> </tt>
-<a name="L4878"></a><tt class="py-lineno">4878</tt> <tt class="py-line"> <tt class="py-name">openTag</tt><tt class="py-op">.</tt><tt class="py-name">tag</tt> <tt class="py-op">=</tt> <tt class="py-name">resname</tt> </tt>
-<a name="L4879"></a><tt class="py-lineno">4879</tt> <tt class="py-line"> <tt class="py-name">closeTag</tt><tt class="py-op">.</tt><tt class="py-name">tag</tt> <tt class="py-op">=</tt> <tt class="py-name">resname</tt> </tt>
-<a name="L4880"></a><tt class="py-lineno">4880</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">openTag</tt><tt class="py-op">,</tt> <tt class="py-name">closeTag</tt> </tt>
-</div><a name="L4881"></a><tt class="py-lineno">4881</tt> <tt class="py-line"> </tt>
-<a name="makeHTMLTags"></a><div id="makeHTMLTags-def"><a name="L4882"></a><tt class="py-lineno">4882</tt> <a class="py-toggle" href="#" id="makeHTMLTags-toggle" onclick="return toggle('makeHTMLTags');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#makeHTMLTags">makeHTMLTags</a><tt class="py-op">(</tt><tt class="py-param">tagStr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="makeHTMLTags-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="makeHTMLTags-expanded"><a name="L4883"></a><tt class="py-lineno">4883</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4884"></a><tt class="py-lineno">4884</tt> <tt class="py-line"><tt class="py-docstring"> Helper to construct opening and closing tag expressions for HTML, given a tag name. Matches</tt> </tt>
-<a name="L4885"></a><tt class="py-lineno">4885</tt> <tt class="py-line"><tt class="py-docstring"> tags in either upper or lower case, attributes with namespaces and with quoted or unquoted values.</tt> </tt>
-<a name="L4886"></a><tt class="py-lineno">4886</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4887"></a><tt class="py-lineno">4887</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4888"></a><tt class="py-lineno">4888</tt> <tt class="py-line"><tt class="py-docstring"> text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'</tt> </tt>
-<a name="L4889"></a><tt class="py-lineno">4889</tt> <tt class="py-line"><tt class="py-docstring"> # makeHTMLTags returns pyparsing expressions for the opening and closing tags as a 2-tuple</tt> </tt>
-<a name="L4890"></a><tt class="py-lineno">4890</tt> <tt class="py-line"><tt class="py-docstring"> a,a_end = makeHTMLTags("A")</tt> </tt>
-<a name="L4891"></a><tt class="py-lineno">4891</tt> <tt class="py-line"><tt class="py-docstring"> link_expr = a + SkipTo(a_end)("link_text") + a_end</tt> </tt>
-<a name="L4892"></a><tt class="py-lineno">4892</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4893"></a><tt class="py-lineno">4893</tt> <tt class="py-line"><tt class="py-docstring"> for link in link_expr.searchString(text):</tt> </tt>
-<a name="L4894"></a><tt class="py-lineno">4894</tt> <tt class="py-line"><tt class="py-docstring"> # attributes in the <A> tag (like "href" shown here) are also accessible as named results</tt> </tt>
-<a name="L4895"></a><tt class="py-lineno">4895</tt> <tt class="py-line"><tt class="py-docstring"> print(link.link_text, '->', link.href)</tt> </tt>
-<a name="L4896"></a><tt class="py-lineno">4896</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4897"></a><tt class="py-lineno">4897</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing -> http://pyparsing.wikispaces.com</tt> </tt>
-<a name="L4898"></a><tt class="py-lineno">4898</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4899"></a><tt class="py-lineno">4899</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_makeTags</tt><tt class="py-op">(</tt> <tt class="py-name">tagStr</tt><tt class="py-op">,</tt> <tt class="py-name">False</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L4900"></a><tt class="py-lineno">4900</tt> <tt class="py-line"> </tt>
-<a name="makeXMLTags"></a><div id="makeXMLTags-def"><a name="L4901"></a><tt class="py-lineno">4901</tt> <a class="py-toggle" href="#" id="makeXMLTags-toggle" onclick="return toggle('makeXMLTags');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#makeXMLTags">makeXMLTags</a><tt class="py-op">(</tt><tt class="py-param">tagStr</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="makeXMLTags-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="makeXMLTags-expanded"><a name="L4902"></a><tt class="py-lineno">4902</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4903"></a><tt class="py-lineno">4903</tt> <tt class="py-line"><tt class="py-docstring"> Helper to construct opening and closing tag expressions for XML, given a tag name. Matches</tt> </tt>
-<a name="L4904"></a><tt class="py-lineno">4904</tt> <tt class="py-line"><tt class="py-docstring"> tags only in the given upper/lower case.</tt> </tt>
-<a name="L4905"></a><tt class="py-lineno">4905</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4906"></a><tt class="py-lineno">4906</tt> <tt class="py-line"><tt class="py-docstring"> Example: similar to L{makeHTMLTags}</tt> </tt>
-<a name="L4907"></a><tt class="py-lineno">4907</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4908"></a><tt class="py-lineno">4908</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_makeTags</tt><tt class="py-op">(</tt> <tt class="py-name">tagStr</tt><tt class="py-op">,</tt> <tt class="py-name">True</tt> <tt class="py-op">)</tt> </tt>
-</div><a name="L4909"></a><tt class="py-lineno">4909</tt> <tt class="py-line"> </tt>
-<a name="withAttribute"></a><div id="withAttribute-def"><a name="L4910"></a><tt class="py-lineno">4910</tt> <a class="py-toggle" href="#" id="withAttribute-toggle" onclick="return toggle('withAttribute');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#withAttribute">withAttribute</a><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-param">args</tt><tt class="py-op">,</tt><tt class="py-op">**</tt><tt class="py-param">attrDict</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="withAttribute-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="withAttribute-expanded"><a name="L4911"></a><tt class="py-lineno">4911</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4912"></a><tt class="py-lineno">4912</tt> <tt class="py-line"><tt class="py-docstring"> Helper to create a validating parse action to be used with start tags created</tt> </tt>
-<a name="L4913"></a><tt class="py-lineno">4913</tt> <tt class="py-line"><tt class="py-docstring"> with C{L{makeXMLTags}} or C{L{makeHTMLTags}}. Use C{withAttribute} to qualify a starting tag</tt> </tt>
-<a name="L4914"></a><tt class="py-lineno">4914</tt> <tt class="py-line"><tt class="py-docstring"> with a required attribute value, to avoid false matches on common tags such as</tt> </tt>
-<a name="L4915"></a><tt class="py-lineno">4915</tt> <tt class="py-line"><tt class="py-docstring"> C{<TD>} or C{<DIV>}.</tt> </tt>
-<a name="L4916"></a><tt class="py-lineno">4916</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4917"></a><tt class="py-lineno">4917</tt> <tt class="py-line"><tt class="py-docstring"> Call C{withAttribute} with a series of attribute names and values. Specify the list</tt> </tt>
-<a name="L4918"></a><tt class="py-lineno">4918</tt> <tt class="py-line"><tt class="py-docstring"> of filter attributes names and values as:</tt> </tt>
-<a name="L4919"></a><tt class="py-lineno">4919</tt> <tt class="py-line"><tt class="py-docstring"> - keyword arguments, as in C{(align="right")}, or</tt> </tt>
-<a name="L4920"></a><tt class="py-lineno">4920</tt> <tt class="py-line"><tt class="py-docstring"> - as an explicit dict with C{**} operator, when an attribute name is also a Python</tt> </tt>
-<a name="L4921"></a><tt class="py-lineno">4921</tt> <tt class="py-line"><tt class="py-docstring"> reserved word, as in C{**{"class":"Customer", "align":"right"}}</tt> </tt>
-<a name="L4922"></a><tt class="py-lineno">4922</tt> <tt class="py-line"><tt class="py-docstring"> - a list of name-value tuples, as in ( ("ns1:class", "Customer"), ("ns2:align","right") )</tt> </tt>
-<a name="L4923"></a><tt class="py-lineno">4923</tt> <tt class="py-line"><tt class="py-docstring"> For attribute names with a namespace prefix, you must use the second form. Attribute</tt> </tt>
-<a name="L4924"></a><tt class="py-lineno">4924</tt> <tt class="py-line"><tt class="py-docstring"> names are matched insensitive to upper/lower case.</tt> </tt>
-<a name="L4925"></a><tt class="py-lineno">4925</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4926"></a><tt class="py-lineno">4926</tt> <tt class="py-line"><tt class="py-docstring"> If just testing for C{class} (with or without a namespace), use C{L{withClass}}.</tt> </tt>
-<a name="L4927"></a><tt class="py-lineno">4927</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4928"></a><tt class="py-lineno">4928</tt> <tt class="py-line"><tt class="py-docstring"> To verify that the attribute exists, but without specifying a value, pass</tt> </tt>
-<a name="L4929"></a><tt class="py-lineno">4929</tt> <tt class="py-line"><tt class="py-docstring"> C{withAttribute.ANY_VALUE} as the value.</tt> </tt>
-<a name="L4930"></a><tt class="py-lineno">4930</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4931"></a><tt class="py-lineno">4931</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4932"></a><tt class="py-lineno">4932</tt> <tt class="py-line"><tt class="py-docstring"> html = '''</tt> </tt>
-<a name="L4933"></a><tt class="py-lineno">4933</tt> <tt class="py-line"><tt class="py-docstring"> <div></tt> </tt>
-<a name="L4934"></a><tt class="py-lineno">4934</tt> <tt class="py-line"><tt class="py-docstring"> Some text</tt> </tt>
-<a name="L4935"></a><tt class="py-lineno">4935</tt> <tt class="py-line"><tt class="py-docstring"> <div type="grid">1 4 0 1 0</div></tt> </tt>
-<a name="L4936"></a><tt class="py-lineno">4936</tt> <tt class="py-line"><tt class="py-docstring"> <div type="graph">1,3 2,3 1,1</div></tt> </tt>
-<a name="L4937"></a><tt class="py-lineno">4937</tt> <tt class="py-line"><tt class="py-docstring"> <div>this has no type</div></tt> </tt>
-<a name="L4938"></a><tt class="py-lineno">4938</tt> <tt class="py-line"><tt class="py-docstring"> </div></tt> </tt>
-<a name="L4939"></a><tt class="py-lineno">4939</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4940"></a><tt class="py-lineno">4940</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L4941"></a><tt class="py-lineno">4941</tt> <tt class="py-line"><tt class="py-docstring"> div,div_end = makeHTMLTags("div")</tt> </tt>
-<a name="L4942"></a><tt class="py-lineno">4942</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4943"></a><tt class="py-lineno">4943</tt> <tt class="py-line"><tt class="py-docstring"> # only match div tag having a type attribute with value "grid"</tt> </tt>
-<a name="L4944"></a><tt class="py-lineno">4944</tt> <tt class="py-line"><tt class="py-docstring"> div_grid = div().setParseAction(withAttribute(type="grid"))</tt> </tt>
-<a name="L4945"></a><tt class="py-lineno">4945</tt> <tt class="py-line"><tt class="py-docstring"> grid_expr = div_grid + SkipTo(div | div_end)("body")</tt> </tt>
-<a name="L4946"></a><tt class="py-lineno">4946</tt> <tt class="py-line"><tt class="py-docstring"> for grid_header in grid_expr.searchString(html):</tt> </tt>
-<a name="L4947"></a><tt class="py-lineno">4947</tt> <tt class="py-line"><tt class="py-docstring"> print(grid_header.body)</tt> </tt>
-<a name="L4948"></a><tt class="py-lineno">4948</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4949"></a><tt class="py-lineno">4949</tt> <tt class="py-line"><tt class="py-docstring"> # construct a match with any div tag having a type attribute, regardless of the value</tt> </tt>
-<a name="L4950"></a><tt class="py-lineno">4950</tt> <tt class="py-line"><tt class="py-docstring"> div_any_type = div().setParseAction(withAttribute(type=withAttribute.ANY_VALUE))</tt> </tt>
-<a name="L4951"></a><tt class="py-lineno">4951</tt> <tt class="py-line"><tt class="py-docstring"> div_expr = div_any_type + SkipTo(div | div_end)("body")</tt> </tt>
-<a name="L4952"></a><tt class="py-lineno">4952</tt> <tt class="py-line"><tt class="py-docstring"> for div_header in div_expr.searchString(html):</tt> </tt>
-<a name="L4953"></a><tt class="py-lineno">4953</tt> <tt class="py-line"><tt class="py-docstring"> print(div_header.body)</tt> </tt>
-<a name="L4954"></a><tt class="py-lineno">4954</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L4955"></a><tt class="py-lineno">4955</tt> <tt class="py-line"><tt class="py-docstring"> 1 4 0 1 0</tt> </tt>
-<a name="L4956"></a><tt class="py-lineno">4956</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4957"></a><tt class="py-lineno">4957</tt> <tt class="py-line"><tt class="py-docstring"> 1 4 0 1 0</tt> </tt>
-<a name="L4958"></a><tt class="py-lineno">4958</tt> <tt class="py-line"><tt class="py-docstring"> 1,3 2,3 1,1</tt> </tt>
-<a name="L4959"></a><tt class="py-lineno">4959</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L4960"></a><tt class="py-lineno">4960</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">args</tt><tt class="py-op">:</tt> </tt>
-<a name="L4961"></a><tt class="py-lineno">4961</tt> <tt class="py-line"> <tt class="py-name">attrs</tt> <tt class="py-op">=</tt> <tt class="py-name">args</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-op">]</tt> </tt>
-<a name="L4962"></a><tt class="py-lineno">4962</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L4963"></a><tt class="py-lineno">4963</tt> <tt class="py-line"> <tt class="py-name">attrs</tt> <tt class="py-op">=</tt> <tt class="py-name">attrDict</tt><tt class="py-op">.</tt><tt id="link-845" class="py-name"><a title="pyparsing.ParseResults.items" class="py-name" href="#" onclick="return doclink('link-845', 'items', 'link-51');">items</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L4964"></a><tt class="py-lineno">4964</tt> <tt class="py-line"> <tt class="py-name">attrs</tt> <tt class="py-op">=</tt> <tt class="py-op">[</tt><tt class="py-op">(</tt><tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt><tt class="py-op">)</tt> <tt class="py-keyword">for</tt> <tt class="py-name">k</tt><tt class="py-op">,</tt><tt class="py-name">v</tt> <tt class="py-keyword">in</tt> <tt class="py-name">attrs</tt><tt class="py-op">]</tt> </tt>
-<a name="L4965"></a><tt class="py-lineno">4965</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">pa</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">tokens</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L4966"></a><tt class="py-lineno">4966</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">attrName</tt><tt class="py-op">,</tt><tt class="py-name">attrValue</tt> <tt class="py-keyword">in</tt> <tt class="py-name">attrs</tt><tt class="py-op">:</tt> </tt>
-<a name="L4967"></a><tt class="py-lineno">4967</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">attrName</tt> <tt class="py-keyword">not</tt> <tt class="py-keyword">in</tt> <tt class="py-name">tokens</tt><tt class="py-op">:</tt> </tt>
-<a name="L4968"></a><tt class="py-lineno">4968</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-846" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-846', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"no matching attribute "</tt> <tt class="py-op">+</tt> <tt class="py-name">attrName</tt><tt class="py-op">)</tt> </tt>
-<a name="L4969"></a><tt class="py-lineno">4969</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">attrValue</tt> <tt class="py-op">!=</tt> <tt id="link-847" class="py-name" targets="Function pyparsing.withAttribute()=pyparsing-module.html#withAttribute"><a title="pyparsing.withAttribute" class="py-name" href="#" onclick="return doclink('link-847', 'withAttribute', 'link-847');">withAttribute</a></tt><tt class="py-op">.</tt><tt class="py-name">ANY_VALUE</tt> <tt class="py-keyword">and</tt> <tt class="py-name">tokens</tt><tt class="py-op">[</tt><tt class="py-name">attrName</tt><tt class="py-op">]</tt> <tt class="py-op">!=</tt> <tt class="py-name">attrValue</tt><tt class="py-op">:</tt> </tt>
-<a name="L4970"></a><tt class="py-lineno">4970</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-848" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-848', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"attribute '%s' has value '%s', must be '%s'"</tt> <tt class="py-op">%</tt> </tt>
-<a name="L4971"></a><tt class="py-lineno">4971</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt class="py-name">attrName</tt><tt class="py-op">,</tt> <tt class="py-name">tokens</tt><tt class="py-op">[</tt><tt class="py-name">attrName</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">attrValue</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L4972"></a><tt class="py-lineno">4972</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">pa</tt> </tt>
-</div><a name="L4973"></a><tt class="py-lineno">4973</tt> <tt class="py-line"><tt id="link-849" class="py-name"><a title="pyparsing.withAttribute" class="py-name" href="#" onclick="return doclink('link-849', 'withAttribute', 'link-847');">withAttribute</a></tt><tt class="py-op">.</tt><tt class="py-name">ANY_VALUE</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="withClass"></a><div id="withClass-def"><a name="L4974"></a><tt class="py-lineno">4974</tt> <tt class="py-line"> </tt>
-<a name="L4975"></a><tt class="py-lineno">4975</tt> <a class="py-toggle" href="#" id="withClass-toggle" onclick="return toggle('withClass');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#withClass">withClass</a><tt class="py-op">(</tt><tt class="py-param">classname</tt><tt class="py-op">,</tt> <tt class="py-param">namespace</tt><tt class="py-op">=</tt><tt class="py-string">''</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="withClass-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="withClass-expanded"><a name="L4976"></a><tt class="py-lineno">4976</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L4977"></a><tt class="py-lineno">4977</tt> <tt class="py-line"><tt class="py-docstring"> Simplified version of C{L{withAttribute}} when matching on a div class - made</tt> </tt>
-<a name="L4978"></a><tt class="py-lineno">4978</tt> <tt class="py-line"><tt class="py-docstring"> difficult because C{class} is a reserved word in Python.</tt> </tt>
-<a name="L4979"></a><tt class="py-lineno">4979</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L4980"></a><tt class="py-lineno">4980</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L4981"></a><tt class="py-lineno">4981</tt> <tt class="py-line"><tt class="py-docstring"> html = '''</tt> </tt>
-<a name="L4982"></a><tt class="py-lineno">4982</tt> <tt class="py-line"><tt class="py-docstring"> <div></tt> </tt>
-<a name="L4983"></a><tt class="py-lineno">4983</tt> <tt class="py-line"><tt class="py-docstring"> Some text</tt> </tt>
-<a name="L4984"></a><tt class="py-lineno">4984</tt> <tt class="py-line"><tt class="py-docstring"> <div class="grid">1 4 0 1 0</div></tt> </tt>
-<a name="L4985"></a><tt class="py-lineno">4985</tt> <tt class="py-line"><tt class="py-docstring"> <div class="graph">1,3 2,3 1,1</div></tt> </tt>
-<a name="L4986"></a><tt class="py-lineno">4986</tt> <tt class="py-line"><tt class="py-docstring"> <div>this &lt;div&gt; has no class</div></tt> </tt>
-<a name="L4987"></a><tt class="py-lineno">4987</tt> <tt class="py-line"><tt class="py-docstring"> </div></tt> </tt>
-<a name="L4988"></a><tt class="py-lineno">4988</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4989"></a><tt class="py-lineno">4989</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L4990"></a><tt class="py-lineno">4990</tt> <tt class="py-line"><tt class="py-docstring"> div,div_end = makeHTMLTags("div")</tt> </tt>
-<a name="L4991"></a><tt class="py-lineno">4991</tt> <tt class="py-line"><tt class="py-docstring"> div_grid = div().setParseAction(withClass("grid"))</tt> </tt>
-<a name="L4992"></a><tt class="py-lineno">4992</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4993"></a><tt class="py-lineno">4993</tt> <tt class="py-line"><tt class="py-docstring"> grid_expr = div_grid + SkipTo(div | div_end)("body")</tt> </tt>
-<a name="L4994"></a><tt class="py-lineno">4994</tt> <tt class="py-line"><tt class="py-docstring"> for grid_header in grid_expr.searchString(html):</tt> </tt>
-<a name="L4995"></a><tt class="py-lineno">4995</tt> <tt class="py-line"><tt class="py-docstring"> print(grid_header.body)</tt> </tt>
-<a name="L4996"></a><tt class="py-lineno">4996</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L4997"></a><tt class="py-lineno">4997</tt> <tt class="py-line"><tt class="py-docstring"> div_any_type = div().setParseAction(withClass(withAttribute.ANY_VALUE))</tt> </tt>
-<a name="L4998"></a><tt class="py-lineno">4998</tt> <tt class="py-line"><tt class="py-docstring"> div_expr = div_any_type + SkipTo(div | div_end)("body")</tt> </tt>
-<a name="L4999"></a><tt class="py-lineno">4999</tt> <tt class="py-line"><tt class="py-docstring"> for div_header in div_expr.searchString(html):</tt> </tt>
-<a name="L5000"></a><tt class="py-lineno">5000</tt> <tt class="py-line"><tt class="py-docstring"> print(div_header.body)</tt> </tt>
-<a name="L5001"></a><tt class="py-lineno">5001</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5002"></a><tt class="py-lineno">5002</tt> <tt class="py-line"><tt class="py-docstring"> 1 4 0 1 0</tt> </tt>
-<a name="L5003"></a><tt class="py-lineno">5003</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5004"></a><tt class="py-lineno">5004</tt> <tt class="py-line"><tt class="py-docstring"> 1 4 0 1 0</tt> </tt>
-<a name="L5005"></a><tt class="py-lineno">5005</tt> <tt class="py-line"><tt class="py-docstring"> 1,3 2,3 1,1</tt> </tt>
-<a name="L5006"></a><tt class="py-lineno">5006</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5007"></a><tt class="py-lineno">5007</tt> <tt class="py-line"> <tt class="py-name">classattr</tt> <tt class="py-op">=</tt> <tt class="py-string">"%s:class"</tt> <tt class="py-op">%</tt> <tt class="py-name">namespace</tt> <tt class="py-keyword">if</tt> <tt class="py-name">namespace</tt> <tt class="py-keyword">else</tt> <tt class="py-string">"class"</tt> </tt>
-<a name="L5008"></a><tt class="py-lineno">5008</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-850" class="py-name"><a title="pyparsing.withAttribute" class="py-name" href="#" onclick="return doclink('link-850', 'withAttribute', 'link-847');">withAttribute</a></tt><tt class="py-op">(</tt><tt class="py-op">**</tt><tt class="py-op">{</tt><tt class="py-name">classattr</tt> <tt class="py-op">:</tt> <tt class="py-name">classname</tt><tt class="py-op">}</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5009"></a><tt class="py-lineno">5009</tt> <tt class="py-line"> </tt>
-<a name="L5010"></a><tt class="py-lineno">5010</tt> <tt class="py-line"><tt id="link-851" class="py-name" targets="Variable pyparsing.opAssoc=pyparsing-module.html#opAssoc"><a title="pyparsing.opAssoc" class="py-name" href="#" onclick="return doclink('link-851', 'opAssoc', 'link-851');">opAssoc</a></tt> <tt class="py-op">=</tt> <tt class="py-name">_Constants</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5011"></a><tt class="py-lineno">5011</tt> <tt class="py-line"><tt id="link-852" class="py-name"><a title="pyparsing.opAssoc" class="py-name" href="#" onclick="return doclink('link-852', 'opAssoc', 'link-851');">opAssoc</a></tt><tt class="py-op">.</tt><tt class="py-name">LEFT</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5012"></a><tt class="py-lineno">5012</tt> <tt class="py-line"><tt id="link-853" class="py-name"><a title="pyparsing.opAssoc" class="py-name" href="#" onclick="return doclink('link-853', 'opAssoc', 'link-851');">opAssoc</a></tt><tt class="py-op">.</tt><tt class="py-name">RIGHT</tt> <tt class="py-op">=</tt> <tt class="py-name">object</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="infixNotation"></a><div id="infixNotation-def"><a name="L5013"></a><tt class="py-lineno">5013</tt> <tt class="py-line"> </tt>
-<a name="L5014"></a><tt class="py-lineno">5014</tt> <a class="py-toggle" href="#" id="infixNotation-toggle" onclick="return toggle('infixNotation');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#infixNotation">infixNotation</a><tt class="py-op">(</tt> <tt class="py-param">baseExpr</tt><tt class="py-op">,</tt> <tt class="py-param">opList</tt><tt class="py-op">,</tt> <tt class="py-param">lpar</tt><tt class="py-op">=</tt><tt id="link-854" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-854', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">'('</tt><tt class="py-op">)</tt><tt class="py-op">,</tt> <tt class="py-param">rpar</tt><tt class="py-op">=</tt><tt id="link-855" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-855', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-string">')'</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="infixNotation-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="infixNotation-expanded"><a name="L5015"></a><tt class="py-lineno">5015</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5016"></a><tt class="py-lineno">5016</tt> <tt class="py-line"><tt class="py-docstring"> Helper method for constructing grammars of expressions made up of</tt> </tt>
-<a name="L5017"></a><tt class="py-lineno">5017</tt> <tt class="py-line"><tt class="py-docstring"> operators working in a precedence hierarchy. Operators may be unary or</tt> </tt>
-<a name="L5018"></a><tt class="py-lineno">5018</tt> <tt class="py-line"><tt class="py-docstring"> binary, left- or right-associative. Parse actions can also be attached</tt> </tt>
-<a name="L5019"></a><tt class="py-lineno">5019</tt> <tt class="py-line"><tt class="py-docstring"> to operator expressions. The generated parser will also recognize the use </tt> </tt>
-<a name="L5020"></a><tt class="py-lineno">5020</tt> <tt class="py-line"><tt class="py-docstring"> of parentheses to override operator precedences (see example below).</tt> </tt>
-<a name="L5021"></a><tt class="py-lineno">5021</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5022"></a><tt class="py-lineno">5022</tt> <tt class="py-line"><tt class="py-docstring"> Note: if you define a deep operator list, you may see performance issues</tt> </tt>
-<a name="L5023"></a><tt class="py-lineno">5023</tt> <tt class="py-line"><tt class="py-docstring"> when using infixNotation. See L{ParserElement.enablePackrat} for a</tt> </tt>
-<a name="L5024"></a><tt class="py-lineno">5024</tt> <tt class="py-line"><tt class="py-docstring"> mechanism to potentially improve your parser performance.</tt> </tt>
-<a name="L5025"></a><tt class="py-lineno">5025</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5026"></a><tt class="py-lineno">5026</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L5027"></a><tt class="py-lineno">5027</tt> <tt class="py-line"><tt class="py-docstring"> - baseExpr - expression representing the most basic element for the nested</tt> </tt>
-<a name="L5028"></a><tt class="py-lineno">5028</tt> <tt class="py-line"><tt class="py-docstring"> - opList - list of tuples, one for each operator precedence level in the</tt> </tt>
-<a name="L5029"></a><tt class="py-lineno">5029</tt> <tt class="py-line"><tt class="py-docstring"> expression grammar; each tuple is of the form</tt> </tt>
-<a name="L5030"></a><tt class="py-lineno">5030</tt> <tt class="py-line"><tt class="py-docstring"> (opExpr, numTerms, rightLeftAssoc, parseAction), where:</tt> </tt>
-<a name="L5031"></a><tt class="py-lineno">5031</tt> <tt class="py-line"><tt class="py-docstring"> - opExpr is the pyparsing expression for the operator;</tt> </tt>
-<a name="L5032"></a><tt class="py-lineno">5032</tt> <tt class="py-line"><tt class="py-docstring"> may also be a string, which will be converted to a Literal;</tt> </tt>
-<a name="L5033"></a><tt class="py-lineno">5033</tt> <tt class="py-line"><tt class="py-docstring"> if numTerms is 3, opExpr is a tuple of two expressions, for the</tt> </tt>
-<a name="L5034"></a><tt class="py-lineno">5034</tt> <tt class="py-line"><tt class="py-docstring"> two operators separating the 3 terms</tt> </tt>
-<a name="L5035"></a><tt class="py-lineno">5035</tt> <tt class="py-line"><tt class="py-docstring"> - numTerms is the number of terms for this operator (must</tt> </tt>
-<a name="L5036"></a><tt class="py-lineno">5036</tt> <tt class="py-line"><tt class="py-docstring"> be 1, 2, or 3)</tt> </tt>
-<a name="L5037"></a><tt class="py-lineno">5037</tt> <tt class="py-line"><tt class="py-docstring"> - rightLeftAssoc is the indicator whether the operator is</tt> </tt>
-<a name="L5038"></a><tt class="py-lineno">5038</tt> <tt class="py-line"><tt class="py-docstring"> right or left associative, using the pyparsing-defined</tt> </tt>
-<a name="L5039"></a><tt class="py-lineno">5039</tt> <tt class="py-line"><tt class="py-docstring"> constants C{opAssoc.RIGHT} and C{opAssoc.LEFT}.</tt> </tt>
-<a name="L5040"></a><tt class="py-lineno">5040</tt> <tt class="py-line"><tt class="py-docstring"> - parseAction is the parse action to be associated with</tt> </tt>
-<a name="L5041"></a><tt class="py-lineno">5041</tt> <tt class="py-line"><tt class="py-docstring"> expressions matching this operator expression (the</tt> </tt>
-<a name="L5042"></a><tt class="py-lineno">5042</tt> <tt class="py-line"><tt class="py-docstring"> parse action tuple member may be omitted); if the parse action</tt> </tt>
-<a name="L5043"></a><tt class="py-lineno">5043</tt> <tt class="py-line"><tt class="py-docstring"> is passed a tuple or list of functions, this is equivalent to</tt> </tt>
-<a name="L5044"></a><tt class="py-lineno">5044</tt> <tt class="py-line"><tt class="py-docstring"> calling C{setParseAction(*fn)} (L{ParserElement.setParseAction})</tt> </tt>
-<a name="L5045"></a><tt class="py-lineno">5045</tt> <tt class="py-line"><tt class="py-docstring"> - lpar - expression for matching left-parentheses (default=C{Suppress('(')})</tt> </tt>
-<a name="L5046"></a><tt class="py-lineno">5046</tt> <tt class="py-line"><tt class="py-docstring"> - rpar - expression for matching right-parentheses (default=C{Suppress(')')})</tt> </tt>
-<a name="L5047"></a><tt class="py-lineno">5047</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5048"></a><tt class="py-lineno">5048</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5049"></a><tt class="py-lineno">5049</tt> <tt class="py-line"><tt class="py-docstring"> # simple example of four-function arithmetic with ints and variable names</tt> </tt>
-<a name="L5050"></a><tt class="py-lineno">5050</tt> <tt class="py-line"><tt class="py-docstring"> integer = pyparsing_common.signed_integer</tt> </tt>
-<a name="L5051"></a><tt class="py-lineno">5051</tt> <tt class="py-line"><tt class="py-docstring"> varname = pyparsing_common.identifier </tt> </tt>
-<a name="L5052"></a><tt class="py-lineno">5052</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5053"></a><tt class="py-lineno">5053</tt> <tt class="py-line"><tt class="py-docstring"> arith_expr = infixNotation(integer | varname,</tt> </tt>
-<a name="L5054"></a><tt class="py-lineno">5054</tt> <tt class="py-line"><tt class="py-docstring"> [</tt> </tt>
-<a name="L5055"></a><tt class="py-lineno">5055</tt> <tt class="py-line"><tt class="py-docstring"> ('-', 1, opAssoc.RIGHT),</tt> </tt>
-<a name="L5056"></a><tt class="py-lineno">5056</tt> <tt class="py-line"><tt class="py-docstring"> (oneOf('* /'), 2, opAssoc.LEFT),</tt> </tt>
-<a name="L5057"></a><tt class="py-lineno">5057</tt> <tt class="py-line"><tt class="py-docstring"> (oneOf('+ -'), 2, opAssoc.LEFT),</tt> </tt>
-<a name="L5058"></a><tt class="py-lineno">5058</tt> <tt class="py-line"><tt class="py-docstring"> ])</tt> </tt>
-<a name="L5059"></a><tt class="py-lineno">5059</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5060"></a><tt class="py-lineno">5060</tt> <tt class="py-line"><tt class="py-docstring"> arith_expr.runTests('''</tt> </tt>
-<a name="L5061"></a><tt class="py-lineno">5061</tt> <tt class="py-line"><tt class="py-docstring"> 5+3*6</tt> </tt>
-<a name="L5062"></a><tt class="py-lineno">5062</tt> <tt class="py-line"><tt class="py-docstring"> (5+3)*6</tt> </tt>
-<a name="L5063"></a><tt class="py-lineno">5063</tt> <tt class="py-line"><tt class="py-docstring"> -2--11</tt> </tt>
-<a name="L5064"></a><tt class="py-lineno">5064</tt> <tt class="py-line"><tt class="py-docstring"> ''', fullDump=False)</tt> </tt>
-<a name="L5065"></a><tt class="py-lineno">5065</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5066"></a><tt class="py-lineno">5066</tt> <tt class="py-line"><tt class="py-docstring"> 5+3*6</tt> </tt>
-<a name="L5067"></a><tt class="py-lineno">5067</tt> <tt class="py-line"><tt class="py-docstring"> [[5, '+', [3, '*', 6]]]</tt> </tt>
-<a name="L5068"></a><tt class="py-lineno">5068</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5069"></a><tt class="py-lineno">5069</tt> <tt class="py-line"><tt class="py-docstring"> (5+3)*6</tt> </tt>
-<a name="L5070"></a><tt class="py-lineno">5070</tt> <tt class="py-line"><tt class="py-docstring"> [[[5, '+', 3], '*', 6]]</tt> </tt>
-<a name="L5071"></a><tt class="py-lineno">5071</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5072"></a><tt class="py-lineno">5072</tt> <tt class="py-line"><tt class="py-docstring"> -2--11</tt> </tt>
-<a name="L5073"></a><tt class="py-lineno">5073</tt> <tt class="py-line"><tt class="py-docstring"> [[['-', 2], '-', ['-', 11]]]</tt> </tt>
-<a name="L5074"></a><tt class="py-lineno">5074</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5075"></a><tt class="py-lineno">5075</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-856" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-856', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5076"></a><tt class="py-lineno">5076</tt> <tt class="py-line"> <tt class="py-name">lastExpr</tt> <tt class="py-op">=</tt> <tt class="py-name">baseExpr</tt> <tt class="py-op">|</tt> <tt class="py-op">(</tt> <tt class="py-name">lpar</tt> <tt class="py-op">+</tt> <tt class="py-name">ret</tt> <tt class="py-op">+</tt> <tt class="py-name">rpar</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5077"></a><tt class="py-lineno">5077</tt> <tt class="py-line"> <tt class="py-keyword">for</tt> <tt class="py-name">i</tt><tt class="py-op">,</tt><tt class="py-name">operDef</tt> <tt class="py-keyword">in</tt> <tt class="py-name">enumerate</tt><tt class="py-op">(</tt><tt class="py-name">opList</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5078"></a><tt class="py-lineno">5078</tt> <tt class="py-line"> <tt class="py-name">opExpr</tt><tt class="py-op">,</tt><tt class="py-name">arity</tt><tt class="py-op">,</tt><tt class="py-name">rightLeftAssoc</tt><tt class="py-op">,</tt><tt class="py-name">pa</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-name">operDef</tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-name">None</tt><tt class="py-op">,</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">[</tt><tt class="py-op">:</tt><tt class="py-number">4</tt><tt class="py-op">]</tt> </tt>
-<a name="L5079"></a><tt class="py-lineno">5079</tt> <tt class="py-line"> <tt class="py-name">termName</tt> <tt class="py-op">=</tt> <tt class="py-string">"%s term"</tt> <tt class="py-op">%</tt> <tt class="py-name">opExpr</tt> <tt class="py-keyword">if</tt> <tt class="py-name">arity</tt> <tt class="py-op"><</tt> <tt class="py-number">3</tt> <tt class="py-keyword">else</tt> <tt class="py-string">"%s%s term"</tt> <tt class="py-op">%</tt> <tt class="py-name">opExpr</tt> </tt>
-<a name="L5080"></a><tt class="py-lineno">5080</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">3</tt><tt class="py-op">:</tt> </tt>
-<a name="L5081"></a><tt class="py-lineno">5081</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">opExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt> <tt class="py-keyword">or</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">opExpr</tt><tt class="py-op">)</tt> <tt class="py-op">!=</tt> <tt class="py-number">2</tt><tt class="py-op">:</tt> </tt>
-<a name="L5082"></a><tt class="py-lineno">5082</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"if numterms=3, opExpr must be a tuple or list of two expressions"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5083"></a><tt class="py-lineno">5083</tt> <tt class="py-line"> <tt class="py-name">opExpr1</tt><tt class="py-op">,</tt> <tt class="py-name">opExpr2</tt> <tt class="py-op">=</tt> <tt class="py-name">opExpr</tt> </tt>
-<a name="L5084"></a><tt class="py-lineno">5084</tt> <tt class="py-line"> <tt class="py-name">thisExpr</tt> <tt class="py-op">=</tt> <tt id="link-857" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-857', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-858" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-858', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-name">termName</tt><tt class="py-op">)</tt> </tt>
-<a name="L5085"></a><tt class="py-lineno">5085</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">rightLeftAssoc</tt> <tt class="py-op">==</tt> <tt id="link-859" class="py-name"><a title="pyparsing.opAssoc" class="py-name" href="#" onclick="return doclink('link-859', 'opAssoc', 'link-851');">opAssoc</a></tt><tt class="py-op">.</tt><tt class="py-name">LEFT</tt><tt class="py-op">:</tt> </tt>
-<a name="L5086"></a><tt class="py-lineno">5086</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L5087"></a><tt class="py-lineno">5087</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-860" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-860', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-861" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-861', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt id="link-862" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-862', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5088"></a><tt class="py-lineno">5088</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">2</tt><tt class="py-op">:</tt> </tt>
-<a name="L5089"></a><tt class="py-lineno">5089</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">opExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5090"></a><tt class="py-lineno">5090</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-863" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-863', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-864" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-864', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt id="link-865" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-865', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5091"></a><tt class="py-lineno">5091</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5092"></a><tt class="py-lineno">5092</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-866" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-866', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt><tt class="py-op">+</tt><tt class="py-name">lastExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-867" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-867', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt id="link-868" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-868', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5093"></a><tt class="py-lineno">5093</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">3</tt><tt class="py-op">:</tt> </tt>
-<a name="L5094"></a><tt class="py-lineno">5094</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-869" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-869', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr1</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr2</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L5095"></a><tt class="py-lineno">5095</tt> <tt class="py-line"> <tt id="link-870" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-870', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr1</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr2</tt> <tt class="py-op">+</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5096"></a><tt class="py-lineno">5096</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5097"></a><tt class="py-lineno">5097</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"operator must be unary (1), binary (2), or ternary (3)"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5098"></a><tt class="py-lineno">5098</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">rightLeftAssoc</tt> <tt class="py-op">==</tt> <tt id="link-871" class="py-name"><a title="pyparsing.opAssoc" class="py-name" href="#" onclick="return doclink('link-871', 'opAssoc', 'link-851');">opAssoc</a></tt><tt class="py-op">.</tt><tt class="py-name">RIGHT</tt><tt class="py-op">:</tt> </tt>
-<a name="L5099"></a><tt class="py-lineno">5099</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L5100"></a><tt class="py-lineno">5100</tt> <tt class="py-line"> <tt class="py-comment"># try to avoid LR with this extra test</tt> </tt>
-<a name="L5101"></a><tt class="py-lineno">5101</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">opExpr</tt><tt class="py-op">,</tt> <tt id="link-872" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-872', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5102"></a><tt class="py-lineno">5102</tt> <tt class="py-line"> <tt class="py-name">opExpr</tt> <tt class="py-op">=</tt> <tt id="link-873" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-873', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">opExpr</tt><tt class="py-op">)</tt> </tt>
-<a name="L5103"></a><tt class="py-lineno">5103</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-874" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-874', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">opExpr</tt><tt class="py-op">.</tt><tt class="py-name">expr</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-875" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-875', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5104"></a><tt class="py-lineno">5104</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">2</tt><tt class="py-op">:</tt> </tt>
-<a name="L5105"></a><tt class="py-lineno">5105</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">opExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5106"></a><tt class="py-lineno">5106</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-876" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-876', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-877" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-877', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt id="link-878" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-878', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">opExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5107"></a><tt class="py-lineno">5107</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5108"></a><tt class="py-lineno">5108</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-879" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-879', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-880" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-880', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt id="link-881" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-881', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5109"></a><tt class="py-lineno">5109</tt> <tt class="py-line"> <tt class="py-keyword">elif</tt> <tt class="py-name">arity</tt> <tt class="py-op">==</tt> <tt class="py-number">3</tt><tt class="py-op">:</tt> </tt>
-<a name="L5110"></a><tt class="py-lineno">5110</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt> <tt class="py-op">=</tt> <tt id="link-882" class="py-name"><a title="pyparsing.FollowedBy" class="py-name" href="#" onclick="return doclink('link-882', 'FollowedBy', 'link-616');">FollowedBy</a></tt><tt class="py-op">(</tt><tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr1</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr2</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> \ </tt>
-<a name="L5111"></a><tt class="py-lineno">5111</tt> <tt class="py-line"> <tt id="link-883" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-883', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr1</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">+</tt> <tt class="py-name">opExpr2</tt> <tt class="py-op">+</tt> <tt class="py-name">thisExpr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5112"></a><tt class="py-lineno">5112</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5113"></a><tt class="py-lineno">5113</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"operator must be unary (1), binary (2), or ternary (3)"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5114"></a><tt class="py-lineno">5114</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5115"></a><tt class="py-lineno">5115</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"operator must indicate right or left associativity"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5116"></a><tt class="py-lineno">5116</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">pa</tt><tt class="py-op">:</tt> </tt>
-<a name="L5117"></a><tt class="py-lineno">5117</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">pa</tt><tt class="py-op">,</tt> <tt class="py-op">(</tt><tt class="py-name">tuple</tt><tt class="py-op">,</tt> <tt class="py-name">list</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5118"></a><tt class="py-lineno">5118</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt><tt class="py-op">.</tt><tt id="link-884" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-884', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-op">*</tt><tt class="py-name">pa</tt><tt class="py-op">)</tt> </tt>
-<a name="L5119"></a><tt class="py-lineno">5119</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5120"></a><tt class="py-lineno">5120</tt> <tt class="py-line"> <tt class="py-name">matchExpr</tt><tt class="py-op">.</tt><tt id="link-885" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-885', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">pa</tt><tt class="py-op">)</tt> </tt>
-<a name="L5121"></a><tt class="py-lineno">5121</tt> <tt class="py-line"> <tt class="py-name">thisExpr</tt> <tt class="py-op"><<=</tt> <tt class="py-op">(</tt> <tt class="py-name">matchExpr</tt><tt class="py-op">.</tt><tt id="link-886" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-886', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-name">termName</tt><tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt class="py-name">lastExpr</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5122"></a><tt class="py-lineno">5122</tt> <tt class="py-line"> <tt class="py-name">lastExpr</tt> <tt class="py-op">=</tt> <tt class="py-name">thisExpr</tt> </tt>
-<a name="L5123"></a><tt class="py-lineno">5123</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op"><<=</tt> <tt class="py-name">lastExpr</tt> </tt>
-<a name="L5124"></a><tt class="py-lineno">5124</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L5125"></a><tt class="py-lineno">5125</tt> <tt class="py-line"> </tt>
-<a name="L5126"></a><tt class="py-lineno">5126</tt> <tt class="py-line"><tt class="py-name">operatorPrecedence</tt> <tt class="py-op">=</tt> <tt id="link-887" class="py-name" targets="Function pyparsing.infixNotation()=pyparsing-module.html#infixNotation"><a title="pyparsing.infixNotation" class="py-name" href="#" onclick="return doclink('link-887', 'infixNotation', 'link-887');">infixNotation</a></tt> </tt>
-<a name="L5127"></a><tt class="py-lineno">5127</tt> <tt class="py-line"><tt class="py-string">"""(Deprecated) Former name of C{L{infixNotation}}, will be dropped in a future release."""</tt> </tt>
-<a name="L5128"></a><tt class="py-lineno">5128</tt> <tt class="py-line"> </tt>
-<a name="L5129"></a><tt class="py-lineno">5129</tt> <tt class="py-line"><tt id="link-888" class="py-name"><a title="pyparsing.dblQuotedString" class="py-name" href="#" onclick="return doclink('link-888', 'dblQuotedString', 'link-807');">dblQuotedString</a></tt> <tt class="py-op">=</tt> <tt id="link-889" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-889', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-890" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-890', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'"(?:[^"\n\r\\]|(?:"")|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*'</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">'"'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-891" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-891', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"string enclosed in double quotes"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5130"></a><tt class="py-lineno">5130</tt> <tt class="py-line"><tt id="link-892" class="py-name" targets="Variable pyparsing.sglQuotedString=pyparsing-module.html#sglQuotedString"><a title="pyparsing.sglQuotedString" class="py-name" href="#" onclick="return doclink('link-892', 'sglQuotedString', 'link-892');">sglQuotedString</a></tt> <tt class="py-op">=</tt> <tt id="link-893" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-893', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-894" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-894', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"'(?:[^'\n\r\\]|(?:'')|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*"</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">"'"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-895" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-895', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"string enclosed in single quotes"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5131"></a><tt class="py-lineno">5131</tt> <tt class="py-line"><tt id="link-896" class="py-name"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-896', 'quotedString', 'link-821');">quotedString</a></tt> <tt class="py-op">=</tt> <tt id="link-897" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-897', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-898" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-898', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'"(?:[^"\n\r\\]|(?:"")|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*'</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">'"'</tt><tt class="py-op">|</tt> </tt>
-<a name="L5132"></a><tt class="py-lineno">5132</tt> <tt class="py-line"> <tt id="link-899" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-899', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"'(?:[^'\n\r\\]|(?:'')|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*"</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt class="py-string">"'"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-900" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-900', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"quotedString using single or double quotes"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5133"></a><tt class="py-lineno">5133</tt> <tt class="py-line"><tt id="link-901" class="py-name" targets="Variable pyparsing.unicodeString=pyparsing-module.html#unicodeString"><a title="pyparsing.unicodeString" class="py-name" href="#" onclick="return doclink('link-901', 'unicodeString', 'link-901');">unicodeString</a></tt> <tt class="py-op">=</tt> <tt id="link-902" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-902', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt class="py-name">_L</tt><tt class="py-op">(</tt><tt class="py-string">'u'</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-903" class="py-name"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-903', 'quotedString', 'link-821');">quotedString</a></tt><tt class="py-op">.</tt><tt id="link-904" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-904', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-905" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-905', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"unicode string literal"</tt><tt class="py-op">)</tt> </tt>
-<a name="nestedExpr"></a><div id="nestedExpr-def"><a name="L5134"></a><tt class="py-lineno">5134</tt> <tt class="py-line"> </tt>
-<a name="L5135"></a><tt class="py-lineno">5135</tt> <a class="py-toggle" href="#" id="nestedExpr-toggle" onclick="return toggle('nestedExpr');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#nestedExpr">nestedExpr</a><tt class="py-op">(</tt><tt class="py-param">opener</tt><tt class="py-op">=</tt><tt class="py-string">"("</tt><tt class="py-op">,</tt> <tt class="py-param">closer</tt><tt class="py-op">=</tt><tt class="py-string">")"</tt><tt class="py-op">,</tt> <tt class="py-param">content</tt><tt class="py-op">=</tt><tt class="py-name">None</tt><tt class="py-op">,</tt> <tt class="py-param">ignoreExpr</tt><tt class="py-op">=</tt><tt id="link-906" class="py-name"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-906', 'quotedString', 'link-821');">quotedString</a></tt><tt class="py-op">.</tt><tt id="link-907" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-907', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="nestedExpr-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="nestedExpr-expanded"><a name="L5136"></a><tt class="py-lineno">5136</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5137"></a><tt class="py-lineno">5137</tt> <tt class="py-line"><tt class="py-docstring"> Helper method for defining nested lists enclosed in opening and closing</tt> </tt>
-<a name="L5138"></a><tt class="py-lineno">5138</tt> <tt class="py-line"><tt class="py-docstring"> delimiters ("(" and ")" are the default).</tt> </tt>
-<a name="L5139"></a><tt class="py-lineno">5139</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5140"></a><tt class="py-lineno">5140</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L5141"></a><tt class="py-lineno">5141</tt> <tt class="py-line"><tt class="py-docstring"> - opener - opening character for a nested list (default=C{"("}); can also be a pyparsing expression</tt> </tt>
-<a name="L5142"></a><tt class="py-lineno">5142</tt> <tt class="py-line"><tt class="py-docstring"> - closer - closing character for a nested list (default=C{")"}); can also be a pyparsing expression</tt> </tt>
-<a name="L5143"></a><tt class="py-lineno">5143</tt> <tt class="py-line"><tt class="py-docstring"> - content - expression for items within the nested lists (default=C{None})</tt> </tt>
-<a name="L5144"></a><tt class="py-lineno">5144</tt> <tt class="py-line"><tt class="py-docstring"> - ignoreExpr - expression for ignoring opening and closing delimiters (default=C{quotedString})</tt> </tt>
-<a name="L5145"></a><tt class="py-lineno">5145</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5146"></a><tt class="py-lineno">5146</tt> <tt class="py-line"><tt class="py-docstring"> If an expression is not provided for the content argument, the nested</tt> </tt>
-<a name="L5147"></a><tt class="py-lineno">5147</tt> <tt class="py-line"><tt class="py-docstring"> expression will capture all whitespace-delimited content between delimiters</tt> </tt>
-<a name="L5148"></a><tt class="py-lineno">5148</tt> <tt class="py-line"><tt class="py-docstring"> as a list of separate values.</tt> </tt>
-<a name="L5149"></a><tt class="py-lineno">5149</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5150"></a><tt class="py-lineno">5150</tt> <tt class="py-line"><tt class="py-docstring"> Use the C{ignoreExpr} argument to define expressions that may contain</tt> </tt>
-<a name="L5151"></a><tt class="py-lineno">5151</tt> <tt class="py-line"><tt class="py-docstring"> opening or closing characters that should not be treated as opening</tt> </tt>
-<a name="L5152"></a><tt class="py-lineno">5152</tt> <tt class="py-line"><tt class="py-docstring"> or closing characters for nesting, such as quotedString or a comment</tt> </tt>
-<a name="L5153"></a><tt class="py-lineno">5153</tt> <tt class="py-line"><tt class="py-docstring"> expression. Specify multiple expressions using an C{L{Or}} or C{L{MatchFirst}}.</tt> </tt>
-<a name="L5154"></a><tt class="py-lineno">5154</tt> <tt class="py-line"><tt class="py-docstring"> The default is L{quotedString}, but if no expressions are to be ignored,</tt> </tt>
-<a name="L5155"></a><tt class="py-lineno">5155</tt> <tt class="py-line"><tt class="py-docstring"> then pass C{None} for this argument.</tt> </tt>
-<a name="L5156"></a><tt class="py-lineno">5156</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5157"></a><tt class="py-lineno">5157</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5158"></a><tt class="py-lineno">5158</tt> <tt class="py-line"><tt class="py-docstring"> data_type = oneOf("void int short long char float double")</tt> </tt>
-<a name="L5159"></a><tt class="py-lineno">5159</tt> <tt class="py-line"><tt class="py-docstring"> decl_data_type = Combine(data_type + Optional(Word('*')))</tt> </tt>
-<a name="L5160"></a><tt class="py-lineno">5160</tt> <tt class="py-line"><tt class="py-docstring"> ident = Word(alphas+'_', alphanums+'_')</tt> </tt>
-<a name="L5161"></a><tt class="py-lineno">5161</tt> <tt class="py-line"><tt class="py-docstring"> number = pyparsing_common.number</tt> </tt>
-<a name="L5162"></a><tt class="py-lineno">5162</tt> <tt class="py-line"><tt class="py-docstring"> arg = Group(decl_data_type + ident)</tt> </tt>
-<a name="L5163"></a><tt class="py-lineno">5163</tt> <tt class="py-line"><tt class="py-docstring"> LPAR,RPAR = map(Suppress, "()")</tt> </tt>
-<a name="L5164"></a><tt class="py-lineno">5164</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5165"></a><tt class="py-lineno">5165</tt> <tt class="py-line"><tt class="py-docstring"> code_body = nestedExpr('{', '}', ignoreExpr=(quotedString | cStyleComment))</tt> </tt>
-<a name="L5166"></a><tt class="py-lineno">5166</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5167"></a><tt class="py-lineno">5167</tt> <tt class="py-line"><tt class="py-docstring"> c_function = (decl_data_type("type") </tt> </tt>
-<a name="L5168"></a><tt class="py-lineno">5168</tt> <tt class="py-line"><tt class="py-docstring"> + ident("name")</tt> </tt>
-<a name="L5169"></a><tt class="py-lineno">5169</tt> <tt class="py-line"><tt class="py-docstring"> + LPAR + Optional(delimitedList(arg), [])("args") + RPAR </tt> </tt>
-<a name="L5170"></a><tt class="py-lineno">5170</tt> <tt class="py-line"><tt class="py-docstring"> + code_body("body"))</tt> </tt>
-<a name="L5171"></a><tt class="py-lineno">5171</tt> <tt class="py-line"><tt class="py-docstring"> c_function.ignore(cStyleComment)</tt> </tt>
-<a name="L5172"></a><tt class="py-lineno">5172</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5173"></a><tt class="py-lineno">5173</tt> <tt class="py-line"><tt class="py-docstring"> source_code = '''</tt> </tt>
-<a name="L5174"></a><tt class="py-lineno">5174</tt> <tt class="py-line"><tt class="py-docstring"> int is_odd(int x) { </tt> </tt>
-<a name="L5175"></a><tt class="py-lineno">5175</tt> <tt class="py-line"><tt class="py-docstring"> return (x%2); </tt> </tt>
-<a name="L5176"></a><tt class="py-lineno">5176</tt> <tt class="py-line"><tt class="py-docstring"> }</tt> </tt>
-<a name="L5177"></a><tt class="py-lineno">5177</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5178"></a><tt class="py-lineno">5178</tt> <tt class="py-line"><tt class="py-docstring"> int dec_to_hex(char hchar) { </tt> </tt>
-<a name="L5179"></a><tt class="py-lineno">5179</tt> <tt class="py-line"><tt class="py-docstring"> if (hchar >= '0' && hchar <= '9') { </tt> </tt>
-<a name="L5180"></a><tt class="py-lineno">5180</tt> <tt class="py-line"><tt class="py-docstring"> return (ord(hchar)-ord('0')); </tt> </tt>
-<a name="L5181"></a><tt class="py-lineno">5181</tt> <tt class="py-line"><tt class="py-docstring"> } else { </tt> </tt>
-<a name="L5182"></a><tt class="py-lineno">5182</tt> <tt class="py-line"><tt class="py-docstring"> return (10+ord(hchar)-ord('A'));</tt> </tt>
-<a name="L5183"></a><tt class="py-lineno">5183</tt> <tt class="py-line"><tt class="py-docstring"> } </tt> </tt>
-<a name="L5184"></a><tt class="py-lineno">5184</tt> <tt class="py-line"><tt class="py-docstring"> }</tt> </tt>
-<a name="L5185"></a><tt class="py-lineno">5185</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L5186"></a><tt class="py-lineno">5186</tt> <tt class="py-line"><tt class="py-docstring"> for func in c_function.searchString(source_code):</tt> </tt>
-<a name="L5187"></a><tt class="py-lineno">5187</tt> <tt class="py-line"><tt class="py-docstring"> print("%(name)s (%(type)s) args: %(args)s" % func)</tt> </tt>
-<a name="L5188"></a><tt class="py-lineno">5188</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5189"></a><tt class="py-lineno">5189</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5190"></a><tt class="py-lineno">5190</tt> <tt class="py-line"><tt class="py-docstring"> is_odd (int) args: [['int', 'x']]</tt> </tt>
-<a name="L5191"></a><tt class="py-lineno">5191</tt> <tt class="py-line"><tt class="py-docstring"> dec_to_hex (int) args: [['char', 'hchar']]</tt> </tt>
-<a name="L5192"></a><tt class="py-lineno">5192</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5193"></a><tt class="py-lineno">5193</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">opener</tt> <tt class="py-op">==</tt> <tt class="py-name">closer</tt><tt class="py-op">:</tt> </tt>
-<a name="L5194"></a><tt class="py-lineno">5194</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"opening and closing strings cannot be the same"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5195"></a><tt class="py-lineno">5195</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">content</tt> <tt class="py-keyword">is</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5196"></a><tt class="py-lineno">5196</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt> <tt class="py-keyword">and</tt> <tt class="py-name">isinstance</tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">,</tt><tt class="py-name">basestring</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5197"></a><tt class="py-lineno">5197</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">)</tt> <tt class="py-op">==</tt> <tt class="py-number">1</tt> <tt class="py-keyword">and</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt><tt class="py-op">==</tt><tt class="py-number">1</tt><tt class="py-op">:</tt> </tt>
-<a name="L5198"></a><tt class="py-lineno">5198</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">ignoreExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5199"></a><tt class="py-lineno">5199</tt> <tt class="py-line"> <tt class="py-name">content</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-908" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-908', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-909" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-909', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-op">~</tt><tt class="py-name">ignoreExpr</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5200"></a><tt class="py-lineno">5200</tt> <tt class="py-line"> <tt id="link-910" class="py-name"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-910', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">+</tt><tt class="py-name">closer</tt><tt class="py-op">+</tt><tt id="link-911" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-911', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-912" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-912', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt><tt class="py-op">,</tt><tt class="py-name">exact</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5201"></a><tt class="py-lineno">5201</tt> <tt class="py-line"> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-913" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-913', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5202"></a><tt class="py-lineno">5202</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5203"></a><tt class="py-lineno">5203</tt> <tt class="py-line"> <tt class="py-name">content</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-914" class="py-name"><a title="pyparsing.empty" class="py-name" href="#" onclick="return doclink('link-914', 'empty', 'link-695');">empty</a></tt><tt class="py-op">.</tt><tt id="link-915" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-915', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">+</tt><tt id="link-916" class="py-name"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-916', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">+</tt><tt class="py-name">closer</tt><tt class="py-op">+</tt><tt id="link-917" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-917', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-918" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-918', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt> </tt>
-<a name="L5204"></a><tt class="py-lineno">5204</tt> <tt class="py-line"> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-919" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-919', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5205"></a><tt class="py-lineno">5205</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5206"></a><tt class="py-lineno">5206</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">ignoreExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5207"></a><tt class="py-lineno">5207</tt> <tt class="py-line"> <tt class="py-name">content</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-920" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-920', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-921" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-921', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-op">~</tt><tt class="py-name">ignoreExpr</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5208"></a><tt class="py-lineno">5208</tt> <tt class="py-line"> <tt class="py-op">~</tt><tt id="link-922" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-922', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">~</tt><tt id="link-923" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-923', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5209"></a><tt class="py-lineno">5209</tt> <tt class="py-line"> <tt id="link-924" class="py-name"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-924', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">(</tt><tt id="link-925" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-925', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-926" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-926', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt><tt class="py-op">,</tt><tt class="py-name">exact</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5210"></a><tt class="py-lineno">5210</tt> <tt class="py-line"> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-927" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-927', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5211"></a><tt class="py-lineno">5211</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5212"></a><tt class="py-lineno">5212</tt> <tt class="py-line"> <tt class="py-name">content</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-928" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-928', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-929" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-929', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-op">~</tt><tt id="link-930" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-930', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">~</tt><tt id="link-931" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-931', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5213"></a><tt class="py-lineno">5213</tt> <tt class="py-line"> <tt id="link-932" class="py-name"><a title="pyparsing.CharsNotIn" class="py-name" href="#" onclick="return doclink('link-932', 'CharsNotIn', 'link-448');">CharsNotIn</a></tt><tt class="py-op">(</tt><tt id="link-933" class="py-name"><a title="pyparsing.ParserElement" class="py-name" href="#" onclick="return doclink('link-933', 'ParserElement', 'link-132');">ParserElement</a></tt><tt class="py-op">.</tt><tt id="link-934" class="py-name"><a title="pyparsing.ParserElement.DEFAULT_WHITE_CHARS" class="py-name" href="#" onclick="return doclink('link-934', 'DEFAULT_WHITE_CHARS', 'link-130');">DEFAULT_WHITE_CHARS</a></tt><tt class="py-op">,</tt><tt class="py-name">exact</tt><tt class="py-op">=</tt><tt class="py-number">1</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5214"></a><tt class="py-lineno">5214</tt> <tt class="py-line"> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-935" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-935', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">.</tt><tt class="py-name">strip</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5215"></a><tt class="py-lineno">5215</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5216"></a><tt class="py-lineno">5216</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt class="py-name">ValueError</tt><tt class="py-op">(</tt><tt class="py-string">"opening and closing arguments must be strings if no content expression is given"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5217"></a><tt class="py-lineno">5217</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op">=</tt> <tt id="link-936" class="py-name"><a title="pyparsing.Forward" class="py-name" href="#" onclick="return doclink('link-936', 'Forward', 'link-652');">Forward</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5218"></a><tt class="py-lineno">5218</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">ignoreExpr</tt> <tt class="py-keyword">is</tt> <tt class="py-keyword">not</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
-<a name="L5219"></a><tt class="py-lineno">5219</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op"><<=</tt> <tt id="link-937" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-937', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt id="link-938" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-938', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-939" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-939', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">ignoreExpr</tt> <tt class="py-op">|</tt> <tt class="py-name">ret</tt> <tt class="py-op">|</tt> <tt class="py-name">content</tt> <tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-940" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-940', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5220"></a><tt class="py-lineno">5220</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5221"></a><tt class="py-lineno">5221</tt> <tt class="py-line"> <tt class="py-name">ret</tt> <tt class="py-op"><<=</tt> <tt id="link-941" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-941', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt id="link-942" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-942', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-943" class="py-name"><a title="pyparsing.ZeroOrMore" class="py-name" href="#" onclick="return doclink('link-943', 'ZeroOrMore', 'link-282');">ZeroOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">ret</tt> <tt class="py-op">|</tt> <tt class="py-name">content</tt> <tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-944" class="py-name"><a title="pyparsing.Suppress" class="py-name" href="#" onclick="return doclink('link-944', 'Suppress', 'link-308');">Suppress</a></tt><tt class="py-op">(</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5222"></a><tt class="py-lineno">5222</tt> <tt class="py-line"> <tt class="py-name">ret</tt><tt class="py-op">.</tt><tt id="link-945" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-945', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'nested %s%s expression'</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">opener</tt><tt class="py-op">,</tt><tt class="py-name">closer</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5223"></a><tt class="py-lineno">5223</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">ret</tt> </tt>
-</div><a name="L5224"></a><tt class="py-lineno">5224</tt> <tt class="py-line"> </tt>
-<a name="indentedBlock"></a><div id="indentedBlock-def"><a name="L5225"></a><tt class="py-lineno">5225</tt> <a class="py-toggle" href="#" id="indentedBlock-toggle" onclick="return toggle('indentedBlock');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#indentedBlock">indentedBlock</a><tt class="py-op">(</tt><tt class="py-param">blockStatementExpr</tt><tt class="py-op">,</tt> <tt class="py-param">indentStack</tt><tt class="py-op">,</tt> <tt class="py-param">indent</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="indentedBlock-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="indentedBlock-expanded"><a name="L5226"></a><tt class="py-lineno">5226</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5227"></a><tt class="py-lineno">5227</tt> <tt class="py-line"><tt class="py-docstring"> Helper method for defining space-delimited indentation blocks, such as</tt> </tt>
-<a name="L5228"></a><tt class="py-lineno">5228</tt> <tt class="py-line"><tt class="py-docstring"> those used to define block statements in Python source code.</tt> </tt>
-<a name="L5229"></a><tt class="py-lineno">5229</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5230"></a><tt class="py-lineno">5230</tt> <tt class="py-line"><tt class="py-docstring"> Parameters:</tt> </tt>
-<a name="L5231"></a><tt class="py-lineno">5231</tt> <tt class="py-line"><tt class="py-docstring"> - blockStatementExpr - expression defining syntax of statement that</tt> </tt>
-<a name="L5232"></a><tt class="py-lineno">5232</tt> <tt class="py-line"><tt class="py-docstring"> is repeated within the indented block</tt> </tt>
-<a name="L5233"></a><tt class="py-lineno">5233</tt> <tt class="py-line"><tt class="py-docstring"> - indentStack - list created by caller to manage indentation stack</tt> </tt>
-<a name="L5234"></a><tt class="py-lineno">5234</tt> <tt class="py-line"><tt class="py-docstring"> (multiple statementWithIndentedBlock expressions within a single grammar</tt> </tt>
-<a name="L5235"></a><tt class="py-lineno">5235</tt> <tt class="py-line"><tt class="py-docstring"> should share a common indentStack)</tt> </tt>
-<a name="L5236"></a><tt class="py-lineno">5236</tt> <tt class="py-line"><tt class="py-docstring"> - indent - boolean indicating whether block must be indented beyond the</tt> </tt>
-<a name="L5237"></a><tt class="py-lineno">5237</tt> <tt class="py-line"><tt class="py-docstring"> the current level; set to False for block of left-most statements</tt> </tt>
-<a name="L5238"></a><tt class="py-lineno">5238</tt> <tt class="py-line"><tt class="py-docstring"> (default=C{True})</tt> </tt>
-<a name="L5239"></a><tt class="py-lineno">5239</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5240"></a><tt class="py-lineno">5240</tt> <tt class="py-line"><tt class="py-docstring"> A valid block must contain at least one C{blockStatement}.</tt> </tt>
-<a name="L5241"></a><tt class="py-lineno">5241</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5242"></a><tt class="py-lineno">5242</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5243"></a><tt class="py-lineno">5243</tt> <tt class="py-line"><tt class="py-docstring"> data = '''</tt> </tt>
-<a name="L5244"></a><tt class="py-lineno">5244</tt> <tt class="py-line"><tt class="py-docstring"> def A(z):</tt> </tt>
-<a name="L5245"></a><tt class="py-lineno">5245</tt> <tt class="py-line"><tt class="py-docstring"> A1</tt> </tt>
-<a name="L5246"></a><tt class="py-lineno">5246</tt> <tt class="py-line"><tt class="py-docstring"> B = 100</tt> </tt>
-<a name="L5247"></a><tt class="py-lineno">5247</tt> <tt class="py-line"><tt class="py-docstring"> G = A2</tt> </tt>
-<a name="L5248"></a><tt class="py-lineno">5248</tt> <tt class="py-line"><tt class="py-docstring"> A2</tt> </tt>
-<a name="L5249"></a><tt class="py-lineno">5249</tt> <tt class="py-line"><tt class="py-docstring"> A3</tt> </tt>
-<a name="L5250"></a><tt class="py-lineno">5250</tt> <tt class="py-line"><tt class="py-docstring"> B</tt> </tt>
-<a name="L5251"></a><tt class="py-lineno">5251</tt> <tt class="py-line"><tt class="py-docstring"> def BB(a,b,c):</tt> </tt>
-<a name="L5252"></a><tt class="py-lineno">5252</tt> <tt class="py-line"><tt class="py-docstring"> BB1</tt> </tt>
-<a name="L5253"></a><tt class="py-lineno">5253</tt> <tt class="py-line"><tt class="py-docstring"> def BBA():</tt> </tt>
-<a name="L5254"></a><tt class="py-lineno">5254</tt> <tt class="py-line"><tt class="py-docstring"> bba1</tt> </tt>
-<a name="L5255"></a><tt class="py-lineno">5255</tt> <tt class="py-line"><tt class="py-docstring"> bba2</tt> </tt>
-<a name="L5256"></a><tt class="py-lineno">5256</tt> <tt class="py-line"><tt class="py-docstring"> bba3</tt> </tt>
-<a name="L5257"></a><tt class="py-lineno">5257</tt> <tt class="py-line"><tt class="py-docstring"> C</tt> </tt>
-<a name="L5258"></a><tt class="py-lineno">5258</tt> <tt class="py-line"><tt class="py-docstring"> D</tt> </tt>
-<a name="L5259"></a><tt class="py-lineno">5259</tt> <tt class="py-line"><tt class="py-docstring"> def spam(x,y):</tt> </tt>
-<a name="L5260"></a><tt class="py-lineno">5260</tt> <tt class="py-line"><tt class="py-docstring"> def eggs(z):</tt> </tt>
-<a name="L5261"></a><tt class="py-lineno">5261</tt> <tt class="py-line"><tt class="py-docstring"> pass</tt> </tt>
-<a name="L5262"></a><tt class="py-lineno">5262</tt> <tt class="py-line"><tt class="py-docstring"> '''</tt> </tt>
-<a name="L5263"></a><tt class="py-lineno">5263</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5264"></a><tt class="py-lineno">5264</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5265"></a><tt class="py-lineno">5265</tt> <tt class="py-line"><tt class="py-docstring"> indentStack = [1]</tt> </tt>
-<a name="L5266"></a><tt class="py-lineno">5266</tt> <tt class="py-line"><tt class="py-docstring"> stmt = Forward()</tt> </tt>
-<a name="L5267"></a><tt class="py-lineno">5267</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5268"></a><tt class="py-lineno">5268</tt> <tt class="py-line"><tt class="py-docstring"> identifier = Word(alphas, alphanums)</tt> </tt>
-<a name="L5269"></a><tt class="py-lineno">5269</tt> <tt class="py-line"><tt class="py-docstring"> funcDecl = ("def" + identifier + Group( "(" + Optional( delimitedList(identifier) ) + ")" ) + ":")</tt> </tt>
-<a name="L5270"></a><tt class="py-lineno">5270</tt> <tt class="py-line"><tt class="py-docstring"> func_body = indentedBlock(stmt, indentStack)</tt> </tt>
-<a name="L5271"></a><tt class="py-lineno">5271</tt> <tt class="py-line"><tt class="py-docstring"> funcDef = Group( funcDecl + func_body )</tt> </tt>
-<a name="L5272"></a><tt class="py-lineno">5272</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5273"></a><tt class="py-lineno">5273</tt> <tt class="py-line"><tt class="py-docstring"> rvalue = Forward()</tt> </tt>
-<a name="L5274"></a><tt class="py-lineno">5274</tt> <tt class="py-line"><tt class="py-docstring"> funcCall = Group(identifier + "(" + Optional(delimitedList(rvalue)) + ")")</tt> </tt>
-<a name="L5275"></a><tt class="py-lineno">5275</tt> <tt class="py-line"><tt class="py-docstring"> rvalue << (funcCall | identifier | Word(nums))</tt> </tt>
-<a name="L5276"></a><tt class="py-lineno">5276</tt> <tt class="py-line"><tt class="py-docstring"> assignment = Group(identifier + "=" + rvalue)</tt> </tt>
-<a name="L5277"></a><tt class="py-lineno">5277</tt> <tt class="py-line"><tt class="py-docstring"> stmt << ( funcDef | assignment | identifier )</tt> </tt>
-<a name="L5278"></a><tt class="py-lineno">5278</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5279"></a><tt class="py-lineno">5279</tt> <tt class="py-line"><tt class="py-docstring"> module_body = OneOrMore(stmt)</tt> </tt>
-<a name="L5280"></a><tt class="py-lineno">5280</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5281"></a><tt class="py-lineno">5281</tt> <tt class="py-line"><tt class="py-docstring"> parseTree = module_body.parseString(data)</tt> </tt>
-<a name="L5282"></a><tt class="py-lineno">5282</tt> <tt class="py-line"><tt class="py-docstring"> parseTree.pprint()</tt> </tt>
-<a name="L5283"></a><tt class="py-lineno">5283</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5284"></a><tt class="py-lineno">5284</tt> <tt class="py-line"><tt class="py-docstring"> [['def',</tt> </tt>
-<a name="L5285"></a><tt class="py-lineno">5285</tt> <tt class="py-line"><tt class="py-docstring"> 'A',</tt> </tt>
-<a name="L5286"></a><tt class="py-lineno">5286</tt> <tt class="py-line"><tt class="py-docstring"> ['(', 'z', ')'],</tt> </tt>
-<a name="L5287"></a><tt class="py-lineno">5287</tt> <tt class="py-line"><tt class="py-docstring"> ':',</tt> </tt>
-<a name="L5288"></a><tt class="py-lineno">5288</tt> <tt class="py-line"><tt class="py-docstring"> [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]],</tt> </tt>
-<a name="L5289"></a><tt class="py-lineno">5289</tt> <tt class="py-line"><tt class="py-docstring"> 'B',</tt> </tt>
-<a name="L5290"></a><tt class="py-lineno">5290</tt> <tt class="py-line"><tt class="py-docstring"> ['def',</tt> </tt>
-<a name="L5291"></a><tt class="py-lineno">5291</tt> <tt class="py-line"><tt class="py-docstring"> 'BB',</tt> </tt>
-<a name="L5292"></a><tt class="py-lineno">5292</tt> <tt class="py-line"><tt class="py-docstring"> ['(', 'a', 'b', 'c', ')'],</tt> </tt>
-<a name="L5293"></a><tt class="py-lineno">5293</tt> <tt class="py-line"><tt class="py-docstring"> ':',</tt> </tt>
-<a name="L5294"></a><tt class="py-lineno">5294</tt> <tt class="py-line"><tt class="py-docstring"> [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]],</tt> </tt>
-<a name="L5295"></a><tt class="py-lineno">5295</tt> <tt class="py-line"><tt class="py-docstring"> 'C',</tt> </tt>
-<a name="L5296"></a><tt class="py-lineno">5296</tt> <tt class="py-line"><tt class="py-docstring"> 'D',</tt> </tt>
-<a name="L5297"></a><tt class="py-lineno">5297</tt> <tt class="py-line"><tt class="py-docstring"> ['def',</tt> </tt>
-<a name="L5298"></a><tt class="py-lineno">5298</tt> <tt class="py-line"><tt class="py-docstring"> 'spam',</tt> </tt>
-<a name="L5299"></a><tt class="py-lineno">5299</tt> <tt class="py-line"><tt class="py-docstring"> ['(', 'x', 'y', ')'],</tt> </tt>
-<a name="L5300"></a><tt class="py-lineno">5300</tt> <tt class="py-line"><tt class="py-docstring"> ':',</tt> </tt>
-<a name="L5301"></a><tt class="py-lineno">5301</tt> <tt class="py-line"><tt class="py-docstring"> [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] </tt> </tt>
-<a name="L5302"></a><tt class="py-lineno">5302</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5303"></a><tt class="py-lineno">5303</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">checkPeerIndent</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5304"></a><tt class="py-lineno">5304</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">l</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> </tt>
-<a name="L5305"></a><tt class="py-lineno">5305</tt> <tt class="py-line"> <tt class="py-name">curCol</tt> <tt class="py-op">=</tt> <tt id="link-946" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-946', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">)</tt> </tt>
-<a name="L5306"></a><tt class="py-lineno">5306</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">curCol</tt> <tt class="py-op">!=</tt> <tt class="py-name">indentStack</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L5307"></a><tt class="py-lineno">5307</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">curCol</tt> <tt class="py-op">></tt> <tt class="py-name">indentStack</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L5308"></a><tt class="py-lineno">5308</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-947" class="py-name"><a title="pyparsing.ParseFatalException" class="py-name" href="#" onclick="return doclink('link-947', 'ParseFatalException', 'link-145');">ParseFatalException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"illegal nesting"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5309"></a><tt class="py-lineno">5309</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-948" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-948', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"not a peer entry"</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5310"></a><tt class="py-lineno">5310</tt> <tt class="py-line"> </tt>
-<a name="L5311"></a><tt class="py-lineno">5311</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">checkSubIndent</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5312"></a><tt class="py-lineno">5312</tt> <tt class="py-line"> <tt class="py-name">curCol</tt> <tt class="py-op">=</tt> <tt id="link-949" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-949', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">)</tt> </tt>
-<a name="L5313"></a><tt class="py-lineno">5313</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">curCol</tt> <tt class="py-op">></tt> <tt class="py-name">indentStack</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">:</tt> </tt>
-<a name="L5314"></a><tt class="py-lineno">5314</tt> <tt class="py-line"> <tt class="py-name">indentStack</tt><tt class="py-op">.</tt><tt id="link-950" class="py-name"><a title="pyparsing.ParseExpression.append
-pyparsing.ParseResults.append" class="py-name" href="#" onclick="return doclink('link-950', 'append', 'link-18');">append</a></tt><tt class="py-op">(</tt> <tt class="py-name">curCol</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5315"></a><tt class="py-lineno">5315</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5316"></a><tt class="py-lineno">5316</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-951" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-951', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"not a subentry"</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5317"></a><tt class="py-lineno">5317</tt> <tt class="py-line"> </tt>
-<a name="L5318"></a><tt class="py-lineno">5318</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">checkUnindent</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5319"></a><tt class="py-lineno">5319</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">l</tt> <tt class="py-op">>=</tt> <tt class="py-name">len</tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> <tt class="py-keyword">return</tt> </tt>
-<a name="L5320"></a><tt class="py-lineno">5320</tt> <tt class="py-line"> <tt class="py-name">curCol</tt> <tt class="py-op">=</tt> <tt id="link-952" class="py-name"><a title="pyparsing.col" class="py-name" href="#" onclick="return doclink('link-952', 'col', 'link-31');">col</a></tt><tt class="py-op">(</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-name">s</tt><tt class="py-op">)</tt> </tt>
-<a name="L5321"></a><tt class="py-lineno">5321</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-keyword">not</tt><tt class="py-op">(</tt><tt class="py-name">indentStack</tt> <tt class="py-keyword">and</tt> <tt class="py-name">curCol</tt> <tt class="py-op"><</tt> <tt class="py-name">indentStack</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt> <tt class="py-keyword">and</tt> <tt class="py-name">curCol</tt> <tt class="py-op"><=</tt> <tt class="py-name">indentStack</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">2</tt><tt class="py-op">]</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5322"></a><tt class="py-lineno">5322</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-953" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-953', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt><tt class="py-name">l</tt><tt class="py-op">,</tt><tt class="py-string">"not an unindent"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5323"></a><tt class="py-lineno">5323</tt> <tt class="py-line"> <tt class="py-name">indentStack</tt><tt class="py-op">.</tt><tt id="link-954" class="py-name"><a title="pyparsing.ParseResults.pop" class="py-name" href="#" onclick="return doclink('link-954', 'pop', 'link-188');">pop</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5324"></a><tt class="py-lineno">5324</tt> <tt class="py-line"> </tt>
-<a name="L5325"></a><tt class="py-lineno">5325</tt> <tt class="py-line"> <tt class="py-name">NL</tt> <tt class="py-op">=</tt> <tt id="link-955" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-955', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt id="link-956" class="py-name"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-956', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-957" class="py-name"><a title="pyparsing.ParserElement.setWhitespaceChars" class="py-name" href="#" onclick="return doclink('link-957', 'setWhitespaceChars', 'link-458');">setWhitespaceChars</a></tt><tt class="py-op">(</tt><tt class="py-string">"\t "</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-958" class="py-name" targets="Method pyparsing.ParserElement.suppress()=pyparsing.ParserElement-class.html#suppress,Method pyparsing.Suppress.suppress()=pyparsing.Suppress-class.html#suppress"><a title="pyparsing.ParserElement.suppress
-pyparsing.Suppress.suppress" class="py-name" href="#" onclick="return doclink('link-958', 'suppress', 'link-958');">suppress</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5326"></a><tt class="py-lineno">5326</tt> <tt class="py-line"> <tt class="py-name">INDENT</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-959" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-959', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-960" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-960', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-961" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-961', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">checkSubIndent</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-962" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-962', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'INDENT'</tt><tt class="py-op">)</tt> </tt>
-<a name="L5327"></a><tt class="py-lineno">5327</tt> <tt class="py-line"> <tt class="py-name">PEER</tt> <tt class="py-op">=</tt> <tt id="link-963" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-963', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-964" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-964', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">checkPeerIndent</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-965" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-965', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">''</tt><tt class="py-op">)</tt> </tt>
-<a name="L5328"></a><tt class="py-lineno">5328</tt> <tt class="py-line"> <tt class="py-name">UNDENT</tt> <tt class="py-op">=</tt> <tt id="link-966" class="py-name"><a title="pyparsing.Empty" class="py-name" href="#" onclick="return doclink('link-966', 'Empty', 'link-237');">Empty</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-967" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-967', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">checkUnindent</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-968" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-968', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'UNINDENT'</tt><tt class="py-op">)</tt> </tt>
-<a name="L5329"></a><tt class="py-lineno">5329</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">indent</tt><tt class="py-op">:</tt> </tt>
-<a name="L5330"></a><tt class="py-lineno">5330</tt> <tt class="py-line"> <tt class="py-name">smExpr</tt> <tt class="py-op">=</tt> <tt id="link-969" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-969', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt id="link-970" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-970', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">NL</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5331"></a><tt class="py-lineno">5331</tt> <tt class="py-line"> <tt class="py-comment">#~ FollowedBy(blockStatementExpr) +</tt> </tt>
-<a name="L5332"></a><tt class="py-lineno">5332</tt> <tt class="py-line"> <tt class="py-name">INDENT</tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt id="link-971" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-971', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">PEER</tt> <tt class="py-op">+</tt> <tt id="link-972" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-972', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt class="py-name">blockStatementExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-973" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-973', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">NL</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">UNDENT</tt><tt class="py-op">)</tt> </tt>
-<a name="L5333"></a><tt class="py-lineno">5333</tt> <tt class="py-line"> <tt class="py-keyword">else</tt><tt class="py-op">:</tt> </tt>
-<a name="L5334"></a><tt class="py-lineno">5334</tt> <tt class="py-line"> <tt class="py-name">smExpr</tt> <tt class="py-op">=</tt> <tt id="link-974" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-974', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt> <tt id="link-975" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-975', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">NL</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5335"></a><tt class="py-lineno">5335</tt> <tt class="py-line"> <tt class="py-op">(</tt><tt id="link-976" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-976', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt> <tt class="py-name">PEER</tt> <tt class="py-op">+</tt> <tt id="link-977" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-977', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt class="py-name">blockStatementExpr</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-978" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-978', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-name">NL</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> </tt>
-<a name="L5336"></a><tt class="py-lineno">5336</tt> <tt class="py-line"> <tt class="py-name">blockStatementExpr</tt><tt class="py-op">.</tt><tt id="link-979" class="py-name"><a title="pyparsing.Combine.ignore
-pyparsing.ParseElementEnhance.ignore
-pyparsing.ParseExpression.ignore
-pyparsing.ParserElement.ignore" class="py-name" href="#" onclick="return doclink('link-979', 'ignore', 'link-512');">ignore</a></tt><tt class="py-op">(</tt><tt id="link-980" class="py-name"><a title="pyparsing._bslash" class="py-name" href="#" onclick="return doclink('link-980', '_bslash', 'link-28');">_bslash</a></tt> <tt class="py-op">+</tt> <tt id="link-981" class="py-name"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-981', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5337"></a><tt class="py-lineno">5337</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">smExpr</tt><tt class="py-op">.</tt><tt id="link-982" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-982', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'indented block'</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5338"></a><tt class="py-lineno">5338</tt> <tt class="py-line"> </tt>
-<a name="L5339"></a><tt class="py-lineno">5339</tt> <tt class="py-line"><tt id="link-983" class="py-name" targets="Variable pyparsing.alphas8bit=pyparsing-module.html#alphas8bit"><a title="pyparsing.alphas8bit" class="py-name" href="#" onclick="return doclink('link-983', 'alphas8bit', 'link-983');">alphas8bit</a></tt> <tt class="py-op">=</tt> <tt id="link-984" class="py-name" targets="Function pyparsing.srange()=pyparsing-module.html#srange"><a title="pyparsing.srange" class="py-name" href="#" onclick="return doclink('link-984', 'srange', 'link-984');">srange</a></tt><tt class="py-op">(</tt><tt class="py-string">r"[\0xc0-\0xd6\0xd8-\0xf6\0xf8-\0xff]"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5340"></a><tt class="py-lineno">5340</tt> <tt class="py-line"><tt id="link-985" class="py-name" targets="Variable pyparsing.punc8bit=pyparsing-module.html#punc8bit"><a title="pyparsing.punc8bit" class="py-name" href="#" onclick="return doclink('link-985', 'punc8bit', 'link-985');">punc8bit</a></tt> <tt class="py-op">=</tt> <tt id="link-986" class="py-name"><a title="pyparsing.srange" class="py-name" href="#" onclick="return doclink('link-986', 'srange', 'link-984');">srange</a></tt><tt class="py-op">(</tt><tt class="py-string">r"[\0xa1-\0xbf\0xd7\0xf7]"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5341"></a><tt class="py-lineno">5341</tt> <tt class="py-line"> </tt>
-<a name="L5342"></a><tt class="py-lineno">5342</tt> <tt class="py-line"><tt id="link-987" class="py-name" targets="Variable pyparsing.anyOpenTag=pyparsing-module.html#anyOpenTag"><a title="pyparsing.anyOpenTag" class="py-name" href="#" onclick="return doclink('link-987', 'anyOpenTag', 'link-987');">anyOpenTag</a></tt><tt class="py-op">,</tt><tt id="link-988" class="py-name" targets="Variable pyparsing.anyCloseTag=pyparsing-module.html#anyCloseTag"><a title="pyparsing.anyCloseTag" class="py-name" href="#" onclick="return doclink('link-988', 'anyCloseTag', 'link-988');">anyCloseTag</a></tt> <tt class="py-op">=</tt> <tt id="link-989" class="py-name" targets="Function pyparsing.makeHTMLTags()=pyparsing-module.html#makeHTMLTags"><a title="pyparsing.makeHTMLTags" class="py-name" href="#" onclick="return doclink('link-989', 'makeHTMLTags', 'link-989');">makeHTMLTags</a></tt><tt class="py-op">(</tt><tt id="link-990" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-990', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-991" class="py-name"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-991', 'alphas', 'link-21');">alphas</a></tt><tt class="py-op">,</tt><tt id="link-992" class="py-name"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-992', 'alphanums', 'link-25');">alphanums</a></tt><tt class="py-op">+</tt><tt class="py-string">"_:"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-993" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-993', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">'any tag'</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5343"></a><tt class="py-lineno">5343</tt> <tt class="py-line"><tt id="link-994" class="py-name" targets="Variable pyparsing._htmlEntityMap=pyparsing-module.html#_htmlEntityMap"><a title="pyparsing._htmlEntityMap" class="py-name" href="#" onclick="return doclink('link-994', '_htmlEntityMap', 'link-994');">_htmlEntityMap</a></tt> <tt class="py-op">=</tt> <tt class="py-name">dict</tt><tt class="py-op">(</tt><tt class="py-name">zip</tt><tt class="py-op">(</tt><tt class="py-string">"gt lt amp nbsp quot apos"</tt><tt class="py-op">.</tt><tt id="link-995" class="py-name"><a title="pyparsing.ParserElement.split
-pyparsing.Regex.compiledREtype.split" class="py-name" href="#" onclick="return doclink('link-995', 'split', 'link-16');">split</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">,</tt><tt class="py-string">'><& "\''</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5344"></a><tt class="py-lineno">5344</tt> <tt class="py-line"><tt id="link-996" class="py-name" targets="Variable pyparsing.commonHTMLEntity=pyparsing-module.html#commonHTMLEntity"><a title="pyparsing.commonHTMLEntity" class="py-name" href="#" onclick="return doclink('link-996', 'commonHTMLEntity', 'link-996');">commonHTMLEntity</a></tt> <tt class="py-op">=</tt> <tt id="link-997" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-997', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">'&(?P<entity>'</tt> <tt class="py-op">+</tt> <tt class="py-string">'|'</tt><tt class="py-op">.</tt><tt class="py-name">join</tt><tt class="py-op">(</tt><tt id="link-998" class="py-name"><a title="pyparsing._htmlEntityMap" class="py-name" href="#" onclick="return doclink('link-998', '_htmlEntityMap', 'link-994');">_htmlEntityMap</a></tt><tt class="py-op">.</tt><tt id="link-999" class="py-name"><a title="pyparsing.ParseResults.keys" class="py-name" href="#" onclick="return doclink('link-999', 'keys', 'link-56');">keys</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt><tt class="py-string">");"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1000" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1000', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"common HTML entity"</tt><tt class="py-op">)</tt> </tt>
-<a name="replaceHTMLEntity"></a><div id="replaceHTMLEntity-def"><a name="L5345"></a><tt class="py-lineno">5345</tt> <a class="py-toggle" href="#" id="replaceHTMLEntity-toggle" onclick="return toggle('replaceHTMLEntity');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing-module.html#replaceHTMLEntity">replaceHTMLEntity</a><tt class="py-op">(</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="replaceHTMLEntity-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="replaceHTMLEntity-expanded"><a name="L5346"></a><tt class="py-lineno">5346</tt> <tt class="py-line"> <tt class="py-docstring">"""Helper parser action to replace common HTML entities with their special characters"""</tt> </tt>
-<a name="L5347"></a><tt class="py-lineno">5347</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-1001" class="py-name"><a title="pyparsing._htmlEntityMap" class="py-name" href="#" onclick="return doclink('link-1001', '_htmlEntityMap', 'link-994');">_htmlEntityMap</a></tt><tt class="py-op">.</tt><tt id="link-1002" class="py-name"><a title="pyparsing.ParseResults.get" class="py-name" href="#" onclick="return doclink('link-1002', 'get', 'link-43');">get</a></tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">.</tt><tt class="py-name">entity</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5348"></a><tt class="py-lineno">5348</tt> <tt class="py-line"> </tt>
-<a name="L5349"></a><tt class="py-lineno">5349</tt> <tt class="py-line"><tt class="py-comment"># it's easy to get these comment structures wrong - they're very common, so may as well make them available</tt> </tt>
-<a name="L5350"></a><tt class="py-lineno">5350</tt> <tt class="py-line"><tt id="link-1003" class="py-name" targets="Variable pyparsing.cStyleComment=pyparsing-module.html#cStyleComment"><a title="pyparsing.cStyleComment" class="py-name" href="#" onclick="return doclink('link-1003', 'cStyleComment', 'link-1003');">cStyleComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1004" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-1004', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-1005" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1005', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"/\*(?:[^*]|\*(?!/))*"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">'*/'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1006" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1006', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"C style comment"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5351"></a><tt class="py-lineno">5351</tt> <tt class="py-line"><tt class="py-string">"Comment of the form C{/* ... */}"</tt> </tt>
-<a name="L5352"></a><tt class="py-lineno">5352</tt> <tt class="py-line"> </tt>
-<a name="L5353"></a><tt class="py-lineno">5353</tt> <tt class="py-line"><tt id="link-1007" class="py-name" targets="Variable pyparsing.htmlComment=pyparsing-module.html#htmlComment"><a title="pyparsing.htmlComment" class="py-name" href="#" onclick="return doclink('link-1007', 'htmlComment', 'link-1007');">htmlComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1008" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1008', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"<!--[\s\S]*?-->"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1009" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1009', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"HTML comment"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5354"></a><tt class="py-lineno">5354</tt> <tt class="py-line"><tt class="py-string">"Comment of the form C{<!-- ... -->}"</tt> </tt>
-<a name="L5355"></a><tt class="py-lineno">5355</tt> <tt class="py-line"> </tt>
-<a name="L5356"></a><tt class="py-lineno">5356</tt> <tt class="py-line"><tt id="link-1010" class="py-name" targets="Variable pyparsing.restOfLine=pyparsing-module.html#restOfLine"><a title="pyparsing.restOfLine" class="py-name" href="#" onclick="return doclink('link-1010', 'restOfLine', 'link-1010');">restOfLine</a></tt> <tt class="py-op">=</tt> <tt id="link-1011" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1011', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r".*"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1012" class="py-name"><a title="pyparsing.Forward.leaveWhitespace
-pyparsing.ParseElementEnhance.leaveWhitespace
-pyparsing.ParseExpression.leaveWhitespace
-pyparsing.ParserElement.leaveWhitespace" class="py-name" href="#" onclick="return doclink('link-1012', 'leaveWhitespace', 'link-509');">leaveWhitespace</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1013" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1013', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"rest of line"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5357"></a><tt class="py-lineno">5357</tt> <tt class="py-line"><tt id="link-1014" class="py-name" targets="Variable pyparsing.dblSlashComment=pyparsing-module.html#dblSlashComment"><a title="pyparsing.dblSlashComment" class="py-name" href="#" onclick="return doclink('link-1014', 'dblSlashComment', 'link-1014');">dblSlashComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1015" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1015', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"//(?:\\\n|[^\n])*"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1016" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1016', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"// comment"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5358"></a><tt class="py-lineno">5358</tt> <tt class="py-line"><tt class="py-string">"Comment of the form C{// ... (to end of line)}"</tt> </tt>
-<a name="L5359"></a><tt class="py-lineno">5359</tt> <tt class="py-line"> </tt>
-<a name="L5360"></a><tt class="py-lineno">5360</tt> <tt class="py-line"><tt id="link-1017" class="py-name" targets="Variable pyparsing.cppStyleComment=pyparsing-module.html#cppStyleComment"><a title="pyparsing.cppStyleComment" class="py-name" href="#" onclick="return doclink('link-1017', 'cppStyleComment', 'link-1017');">cppStyleComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1018" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-1018', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-1019" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1019', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"/\*(?:[^*]|\*(?!/))*"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">'*/'</tt><tt class="py-op">|</tt> <tt id="link-1020" class="py-name"><a title="pyparsing.dblSlashComment" class="py-name" href="#" onclick="return doclink('link-1020', 'dblSlashComment', 'link-1014');">dblSlashComment</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1021" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1021', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"C++ style comment"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5361"></a><tt class="py-lineno">5361</tt> <tt class="py-line"><tt class="py-string">"Comment of either form C{L{cStyleComment}} or C{L{dblSlashComment}}"</tt> </tt>
-<a name="L5362"></a><tt class="py-lineno">5362</tt> <tt class="py-line"> </tt>
-<a name="L5363"></a><tt class="py-lineno">5363</tt> <tt class="py-line"><tt id="link-1022" class="py-name" targets="Variable pyparsing.javaStyleComment=pyparsing-module.html#javaStyleComment"><a title="pyparsing.javaStyleComment" class="py-name" href="#" onclick="return doclink('link-1022', 'javaStyleComment', 'link-1022');">javaStyleComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1023" class="py-name"><a title="pyparsing.cppStyleComment" class="py-name" href="#" onclick="return doclink('link-1023', 'cppStyleComment', 'link-1017');">cppStyleComment</a></tt> </tt>
-<a name="L5364"></a><tt class="py-lineno">5364</tt> <tt class="py-line"><tt class="py-string">"Same as C{L{cppStyleComment}}"</tt> </tt>
-<a name="L5365"></a><tt class="py-lineno">5365</tt> <tt class="py-line"> </tt>
-<a name="L5366"></a><tt class="py-lineno">5366</tt> <tt class="py-line"><tt id="link-1024" class="py-name" targets="Variable pyparsing.pythonStyleComment=pyparsing-module.html#pythonStyleComment"><a title="pyparsing.pythonStyleComment" class="py-name" href="#" onclick="return doclink('link-1024', 'pythonStyleComment', 'link-1024');">pythonStyleComment</a></tt> <tt class="py-op">=</tt> <tt id="link-1025" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1025', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r"#.*"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1026" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1026', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"Python style comment"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5367"></a><tt class="py-lineno">5367</tt> <tt class="py-line"><tt class="py-string">"Comment of the form C{# ... (to end of line)}"</tt> </tt>
-<a name="L5368"></a><tt class="py-lineno">5368</tt> <tt class="py-line"> </tt>
-<a name="L5369"></a><tt class="py-lineno">5369</tt> <tt class="py-line"><tt id="link-1027" class="py-name" targets="Variable pyparsing._commasepitem=pyparsing-module.html#_commasepitem,Variable pyparsing.pyparsing_common._commasepitem=pyparsing.pyparsing_common-class.html#_commasepitem"><a title="pyparsing._commasepitem
-pyparsing.pyparsing_common._commasepitem" class="py-name" href="#" onclick="return doclink('link-1027', '_commasepitem', 'link-1027');">_commasepitem</a></tt> <tt class="py-op">=</tt> <tt id="link-1028" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-1028', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-1029" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-1029', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt id="link-1030" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1030', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1031" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-1031', 'printables', 'link-29');">printables</a></tt><tt class="py-op">,</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">=</tt><tt class="py-string">','</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5370"></a><tt class="py-lineno">5370</tt> <tt class="py-line"> <tt id="link-1032" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1032', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt> <tt id="link-1033" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1033', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt class="py-string">" \t"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> </tt>
-<a name="L5371"></a><tt class="py-lineno">5371</tt> <tt class="py-line"> <tt class="py-op">~</tt><tt id="link-1034" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-1034', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-string">","</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">~</tt><tt id="link-1035" class="py-name"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-1035', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1036" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-1036', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1037" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1037', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"commaItem"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5372"></a><tt class="py-lineno">5372</tt> <tt class="py-line"><tt id="link-1038" class="py-name" targets="Variable pyparsing.commaSeparatedList=pyparsing-module.html#commaSeparatedList"><a title="pyparsing.commaSeparatedList" class="py-name" href="#" onclick="return doclink('link-1038', 'commaSeparatedList', 'link-1038');">commaSeparatedList</a></tt> <tt class="py-op">=</tt> <tt id="link-1039" class="py-name" targets="Function pyparsing.delimitedList()=pyparsing-module.html#delimitedList"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1039', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt> <tt id="link-1040" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1040', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt> <tt id="link-1041" class="py-name"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-1041', 'quotedString', 'link-821');">quotedString</a></tt><tt class="py-op">.</tt><tt id="link-1042" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-1042', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt id="link-1043" class="py-name"><a title="pyparsing._commasepitem
-pyparsing.pyparsing_common._commasepitem" class="py-name" href="#" onclick="return doclink('link-1043', '_commasepitem', 'link-1027');">_commasepitem</a></tt><tt class="py-op">,</tt> <tt class="py-name">default</tt><tt class="py-op">=</tt><tt class="py-string">""</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1044" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1044', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"commaSeparatedList"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5373"></a><tt class="py-lineno">5373</tt> <tt class="py-line"><tt class="py-string">"""(Deprecated) Predefined expression of 1 or more printable words or quoted strings, separated by commas.</tt> </tt>
-<a name="L5374"></a><tt class="py-lineno">5374</tt> <tt class="py-line"><tt class="py-string"> This expression is deprecated in favor of L{pyparsing_common.comma_separated_list}."""</tt> </tt>
-<a name="pyparsing_common"></a><div id="pyparsing_common-def"><a name="L5375"></a><tt class="py-lineno">5375</tt> <tt class="py-line"> </tt>
-<a name="L5376"></a><tt class="py-lineno">5376</tt> <tt class="py-line"><tt class="py-comment"># some other useful expressions - using lower-case class name since we are really using this as a namespace</tt> </tt>
-<a name="L5377"></a><tt class="py-lineno">5377</tt> <a class="py-toggle" href="#" id="pyparsing_common-toggle" onclick="return toggle('pyparsing_common');">-</a><tt class="py-line"><tt class="py-keyword">class</tt> <a class="py-def-name" href="pyparsing.pyparsing_common-class.html">pyparsing_common</a><tt class="py-op">:</tt> </tt>
-</div><div id="pyparsing_common-collapsed" style="display:none;" pad="++++" indent="++++"></div><div id="pyparsing_common-expanded"><a name="L5378"></a><tt class="py-lineno">5378</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5379"></a><tt class="py-lineno">5379</tt> <tt class="py-line"><tt class="py-docstring"> Here are some common low-level expressions that may be useful in jump-starting parser development:</tt> </tt>
-<a name="L5380"></a><tt class="py-lineno">5380</tt> <tt class="py-line"><tt class="py-docstring"> - numeric forms (L{integers<integer>}, L{reals<real>}, L{scientific notation<sci_real>})</tt> </tt>
-<a name="L5381"></a><tt class="py-lineno">5381</tt> <tt class="py-line"><tt class="py-docstring"> - common L{programming identifiers<identifier>}</tt> </tt>
-<a name="L5382"></a><tt class="py-lineno">5382</tt> <tt class="py-line"><tt class="py-docstring"> - network addresses (L{MAC<mac_address>}, L{IPv4<ipv4_address>}, L{IPv6<ipv6_address>})</tt> </tt>
-<a name="L5383"></a><tt class="py-lineno">5383</tt> <tt class="py-line"><tt class="py-docstring"> - ISO8601 L{dates<iso8601_date>} and L{datetime<iso8601_datetime>}</tt> </tt>
-<a name="L5384"></a><tt class="py-lineno">5384</tt> <tt class="py-line"><tt class="py-docstring"> - L{UUID<uuid>}</tt> </tt>
-<a name="L5385"></a><tt class="py-lineno">5385</tt> <tt class="py-line"><tt class="py-docstring"> - L{comma-separated list<comma_separated_list>}</tt> </tt>
-<a name="L5386"></a><tt class="py-lineno">5386</tt> <tt class="py-line"><tt class="py-docstring"> Parse actions:</tt> </tt>
-<a name="L5387"></a><tt class="py-lineno">5387</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{convertToInteger}}</tt> </tt>
-<a name="L5388"></a><tt class="py-lineno">5388</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{convertToFloat}}</tt> </tt>
-<a name="L5389"></a><tt class="py-lineno">5389</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{convertToDate}}</tt> </tt>
-<a name="L5390"></a><tt class="py-lineno">5390</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{convertToDatetime}}</tt> </tt>
-<a name="L5391"></a><tt class="py-lineno">5391</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{stripHTMLTags}}</tt> </tt>
-<a name="L5392"></a><tt class="py-lineno">5392</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{upcaseTokens}}</tt> </tt>
-<a name="L5393"></a><tt class="py-lineno">5393</tt> <tt class="py-line"><tt class="py-docstring"> - C{L{downcaseTokens}}</tt> </tt>
-<a name="L5394"></a><tt class="py-lineno">5394</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5395"></a><tt class="py-lineno">5395</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5396"></a><tt class="py-lineno">5396</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.number.runTests('''</tt> </tt>
-<a name="L5397"></a><tt class="py-lineno">5397</tt> <tt class="py-line"><tt class="py-docstring"> # any int or real number, returned as the appropriate type</tt> </tt>
-<a name="L5398"></a><tt class="py-lineno">5398</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5399"></a><tt class="py-lineno">5399</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L5400"></a><tt class="py-lineno">5400</tt> <tt class="py-line"><tt class="py-docstring"> +100</tt> </tt>
-<a name="L5401"></a><tt class="py-lineno">5401</tt> <tt class="py-line"><tt class="py-docstring"> 3.14159</tt> </tt>
-<a name="L5402"></a><tt class="py-lineno">5402</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L5403"></a><tt class="py-lineno">5403</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L5404"></a><tt class="py-lineno">5404</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5405"></a><tt class="py-lineno">5405</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5406"></a><tt class="py-lineno">5406</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.fnumber.runTests('''</tt> </tt>
-<a name="L5407"></a><tt class="py-lineno">5407</tt> <tt class="py-line"><tt class="py-docstring"> # any int or real number, returned as float</tt> </tt>
-<a name="L5408"></a><tt class="py-lineno">5408</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5409"></a><tt class="py-lineno">5409</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L5410"></a><tt class="py-lineno">5410</tt> <tt class="py-line"><tt class="py-docstring"> +100</tt> </tt>
-<a name="L5411"></a><tt class="py-lineno">5411</tt> <tt class="py-line"><tt class="py-docstring"> 3.14159</tt> </tt>
-<a name="L5412"></a><tt class="py-lineno">5412</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L5413"></a><tt class="py-lineno">5413</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L5414"></a><tt class="py-lineno">5414</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5415"></a><tt class="py-lineno">5415</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5416"></a><tt class="py-lineno">5416</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.hex_integer.runTests('''</tt> </tt>
-<a name="L5417"></a><tt class="py-lineno">5417</tt> <tt class="py-line"><tt class="py-docstring"> # hex numbers</tt> </tt>
-<a name="L5418"></a><tt class="py-lineno">5418</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5419"></a><tt class="py-lineno">5419</tt> <tt class="py-line"><tt class="py-docstring"> FF</tt> </tt>
-<a name="L5420"></a><tt class="py-lineno">5420</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5421"></a><tt class="py-lineno">5421</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5422"></a><tt class="py-lineno">5422</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.fraction.runTests('''</tt> </tt>
-<a name="L5423"></a><tt class="py-lineno">5423</tt> <tt class="py-line"><tt class="py-docstring"> # fractions</tt> </tt>
-<a name="L5424"></a><tt class="py-lineno">5424</tt> <tt class="py-line"><tt class="py-docstring"> 1/2</tt> </tt>
-<a name="L5425"></a><tt class="py-lineno">5425</tt> <tt class="py-line"><tt class="py-docstring"> -3/4</tt> </tt>
-<a name="L5426"></a><tt class="py-lineno">5426</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5427"></a><tt class="py-lineno">5427</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5428"></a><tt class="py-lineno">5428</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.mixed_integer.runTests('''</tt> </tt>
-<a name="L5429"></a><tt class="py-lineno">5429</tt> <tt class="py-line"><tt class="py-docstring"> # mixed fractions</tt> </tt>
-<a name="L5430"></a><tt class="py-lineno">5430</tt> <tt class="py-line"><tt class="py-docstring"> 1</tt> </tt>
-<a name="L5431"></a><tt class="py-lineno">5431</tt> <tt class="py-line"><tt class="py-docstring"> 1/2</tt> </tt>
-<a name="L5432"></a><tt class="py-lineno">5432</tt> <tt class="py-line"><tt class="py-docstring"> -3/4</tt> </tt>
-<a name="L5433"></a><tt class="py-lineno">5433</tt> <tt class="py-line"><tt class="py-docstring"> 1-3/4</tt> </tt>
-<a name="L5434"></a><tt class="py-lineno">5434</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5435"></a><tt class="py-lineno">5435</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5436"></a><tt class="py-lineno">5436</tt> <tt class="py-line"><tt class="py-docstring"> import uuid</tt> </tt>
-<a name="L5437"></a><tt class="py-lineno">5437</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.uuid.setParseAction(tokenMap(uuid.UUID))</tt> </tt>
-<a name="L5438"></a><tt class="py-lineno">5438</tt> <tt class="py-line"><tt class="py-docstring"> pyparsing_common.uuid.runTests('''</tt> </tt>
-<a name="L5439"></a><tt class="py-lineno">5439</tt> <tt class="py-line"><tt class="py-docstring"> # uuid</tt> </tt>
-<a name="L5440"></a><tt class="py-lineno">5440</tt> <tt class="py-line"><tt class="py-docstring"> 12345678-1234-5678-1234-567812345678</tt> </tt>
-<a name="L5441"></a><tt class="py-lineno">5441</tt> <tt class="py-line"><tt class="py-docstring"> ''')</tt> </tt>
-<a name="L5442"></a><tt class="py-lineno">5442</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5443"></a><tt class="py-lineno">5443</tt> <tt class="py-line"><tt class="py-docstring"> # any int or real number, returned as the appropriate type</tt> </tt>
-<a name="L5444"></a><tt class="py-lineno">5444</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5445"></a><tt class="py-lineno">5445</tt> <tt class="py-line"><tt class="py-docstring"> [100]</tt> </tt>
-<a name="L5446"></a><tt class="py-lineno">5446</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5447"></a><tt class="py-lineno">5447</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L5448"></a><tt class="py-lineno">5448</tt> <tt class="py-line"><tt class="py-docstring"> [-100]</tt> </tt>
-<a name="L5449"></a><tt class="py-lineno">5449</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5450"></a><tt class="py-lineno">5450</tt> <tt class="py-line"><tt class="py-docstring"> +100</tt> </tt>
-<a name="L5451"></a><tt class="py-lineno">5451</tt> <tt class="py-line"><tt class="py-docstring"> [100]</tt> </tt>
-<a name="L5452"></a><tt class="py-lineno">5452</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5453"></a><tt class="py-lineno">5453</tt> <tt class="py-line"><tt class="py-docstring"> 3.14159</tt> </tt>
-<a name="L5454"></a><tt class="py-lineno">5454</tt> <tt class="py-line"><tt class="py-docstring"> [3.14159]</tt> </tt>
-<a name="L5455"></a><tt class="py-lineno">5455</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5456"></a><tt class="py-lineno">5456</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L5457"></a><tt class="py-lineno">5457</tt> <tt class="py-line"><tt class="py-docstring"> [6.02e+23]</tt> </tt>
-<a name="L5458"></a><tt class="py-lineno">5458</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5459"></a><tt class="py-lineno">5459</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L5460"></a><tt class="py-lineno">5460</tt> <tt class="py-line"><tt class="py-docstring"> [1e-12]</tt> </tt>
-<a name="L5461"></a><tt class="py-lineno">5461</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5462"></a><tt class="py-lineno">5462</tt> <tt class="py-line"><tt class="py-docstring"> # any int or real number, returned as float</tt> </tt>
-<a name="L5463"></a><tt class="py-lineno">5463</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5464"></a><tt class="py-lineno">5464</tt> <tt class="py-line"><tt class="py-docstring"> [100.0]</tt> </tt>
-<a name="L5465"></a><tt class="py-lineno">5465</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5466"></a><tt class="py-lineno">5466</tt> <tt class="py-line"><tt class="py-docstring"> -100</tt> </tt>
-<a name="L5467"></a><tt class="py-lineno">5467</tt> <tt class="py-line"><tt class="py-docstring"> [-100.0]</tt> </tt>
-<a name="L5468"></a><tt class="py-lineno">5468</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5469"></a><tt class="py-lineno">5469</tt> <tt class="py-line"><tt class="py-docstring"> +100</tt> </tt>
-<a name="L5470"></a><tt class="py-lineno">5470</tt> <tt class="py-line"><tt class="py-docstring"> [100.0]</tt> </tt>
-<a name="L5471"></a><tt class="py-lineno">5471</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5472"></a><tt class="py-lineno">5472</tt> <tt class="py-line"><tt class="py-docstring"> 3.14159</tt> </tt>
-<a name="L5473"></a><tt class="py-lineno">5473</tt> <tt class="py-line"><tt class="py-docstring"> [3.14159]</tt> </tt>
-<a name="L5474"></a><tt class="py-lineno">5474</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5475"></a><tt class="py-lineno">5475</tt> <tt class="py-line"><tt class="py-docstring"> 6.02e23</tt> </tt>
-<a name="L5476"></a><tt class="py-lineno">5476</tt> <tt class="py-line"><tt class="py-docstring"> [6.02e+23]</tt> </tt>
-<a name="L5477"></a><tt class="py-lineno">5477</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5478"></a><tt class="py-lineno">5478</tt> <tt class="py-line"><tt class="py-docstring"> 1e-12</tt> </tt>
-<a name="L5479"></a><tt class="py-lineno">5479</tt> <tt class="py-line"><tt class="py-docstring"> [1e-12]</tt> </tt>
-<a name="L5480"></a><tt class="py-lineno">5480</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5481"></a><tt class="py-lineno">5481</tt> <tt class="py-line"><tt class="py-docstring"> # hex numbers</tt> </tt>
-<a name="L5482"></a><tt class="py-lineno">5482</tt> <tt class="py-line"><tt class="py-docstring"> 100</tt> </tt>
-<a name="L5483"></a><tt class="py-lineno">5483</tt> <tt class="py-line"><tt class="py-docstring"> [256]</tt> </tt>
-<a name="L5484"></a><tt class="py-lineno">5484</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5485"></a><tt class="py-lineno">5485</tt> <tt class="py-line"><tt class="py-docstring"> FF</tt> </tt>
-<a name="L5486"></a><tt class="py-lineno">5486</tt> <tt class="py-line"><tt class="py-docstring"> [255]</tt> </tt>
-<a name="L5487"></a><tt class="py-lineno">5487</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5488"></a><tt class="py-lineno">5488</tt> <tt class="py-line"><tt class="py-docstring"> # fractions</tt> </tt>
-<a name="L5489"></a><tt class="py-lineno">5489</tt> <tt class="py-line"><tt class="py-docstring"> 1/2</tt> </tt>
-<a name="L5490"></a><tt class="py-lineno">5490</tt> <tt class="py-line"><tt class="py-docstring"> [0.5]</tt> </tt>
-<a name="L5491"></a><tt class="py-lineno">5491</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5492"></a><tt class="py-lineno">5492</tt> <tt class="py-line"><tt class="py-docstring"> -3/4</tt> </tt>
-<a name="L5493"></a><tt class="py-lineno">5493</tt> <tt class="py-line"><tt class="py-docstring"> [-0.75]</tt> </tt>
-<a name="L5494"></a><tt class="py-lineno">5494</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5495"></a><tt class="py-lineno">5495</tt> <tt class="py-line"><tt class="py-docstring"> # mixed fractions</tt> </tt>
-<a name="L5496"></a><tt class="py-lineno">5496</tt> <tt class="py-line"><tt class="py-docstring"> 1</tt> </tt>
-<a name="L5497"></a><tt class="py-lineno">5497</tt> <tt class="py-line"><tt class="py-docstring"> [1]</tt> </tt>
-<a name="L5498"></a><tt class="py-lineno">5498</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5499"></a><tt class="py-lineno">5499</tt> <tt class="py-line"><tt class="py-docstring"> 1/2</tt> </tt>
-<a name="L5500"></a><tt class="py-lineno">5500</tt> <tt class="py-line"><tt class="py-docstring"> [0.5]</tt> </tt>
-<a name="L5501"></a><tt class="py-lineno">5501</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5502"></a><tt class="py-lineno">5502</tt> <tt class="py-line"><tt class="py-docstring"> -3/4</tt> </tt>
-<a name="L5503"></a><tt class="py-lineno">5503</tt> <tt class="py-line"><tt class="py-docstring"> [-0.75]</tt> </tt>
-<a name="L5504"></a><tt class="py-lineno">5504</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5505"></a><tt class="py-lineno">5505</tt> <tt class="py-line"><tt class="py-docstring"> 1-3/4</tt> </tt>
-<a name="L5506"></a><tt class="py-lineno">5506</tt> <tt class="py-line"><tt class="py-docstring"> [1.75]</tt> </tt>
-<a name="L5507"></a><tt class="py-lineno">5507</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5508"></a><tt class="py-lineno">5508</tt> <tt class="py-line"><tt class="py-docstring"> # uuid</tt> </tt>
-<a name="L5509"></a><tt class="py-lineno">5509</tt> <tt class="py-line"><tt class="py-docstring"> 12345678-1234-5678-1234-567812345678</tt> </tt>
-<a name="L5510"></a><tt class="py-lineno">5510</tt> <tt class="py-line"><tt class="py-docstring"> [UUID('12345678-1234-5678-1234-567812345678')]</tt> </tt>
-<a name="L5511"></a><tt class="py-lineno">5511</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5512"></a><tt class="py-lineno">5512</tt> <tt class="py-line"> </tt>
-<a name="L5513"></a><tt class="py-lineno">5513</tt> <tt class="py-line"> <tt id="link-1045" class="py-name" targets="Method pyparsing.pyparsing_common.convertToInteger()=pyparsing.pyparsing_common-class.html#convertToInteger"><a title="pyparsing.pyparsing_common.convertToInteger" class="py-name" href="#" onclick="return doclink('link-1045', 'convertToInteger', 'link-1045');">convertToInteger</a></tt> <tt class="py-op">=</tt> <tt id="link-1046" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1046', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">)</tt> </tt>
-<a name="L5514"></a><tt class="py-lineno">5514</tt> <tt class="py-line"> <tt class="py-string">"""</tt> </tt>
-<a name="L5515"></a><tt class="py-lineno">5515</tt> <tt class="py-line"><tt class="py-string"> Parse action for converting parsed integers to Python int</tt> </tt>
-<a name="L5516"></a><tt class="py-lineno">5516</tt> <tt class="py-line"><tt class="py-string"> """</tt> </tt>
-<a name="L5517"></a><tt class="py-lineno">5517</tt> <tt class="py-line"> </tt>
-<a name="L5518"></a><tt class="py-lineno">5518</tt> <tt class="py-line"> <tt id="link-1047" class="py-name" targets="Method pyparsing.pyparsing_common.convertToFloat()=pyparsing.pyparsing_common-class.html#convertToFloat"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1047', 'convertToFloat', 'link-1047');">convertToFloat</a></tt> <tt class="py-op">=</tt> <tt id="link-1048" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1048', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-name">float</tt><tt class="py-op">)</tt> </tt>
-<a name="L5519"></a><tt class="py-lineno">5519</tt> <tt class="py-line"> <tt class="py-string">"""</tt> </tt>
-<a name="L5520"></a><tt class="py-lineno">5520</tt> <tt class="py-line"><tt class="py-string"> Parse action for converting parsed numbers to Python float</tt> </tt>
-<a name="L5521"></a><tt class="py-lineno">5521</tt> <tt class="py-line"><tt class="py-string"> """</tt> </tt>
-<a name="L5522"></a><tt class="py-lineno">5522</tt> <tt class="py-line"> </tt>
-<a name="L5523"></a><tt class="py-lineno">5523</tt> <tt class="py-line"> <tt id="link-1049" class="py-name" targets="Variable pyparsing.pyparsing_common.integer=pyparsing.pyparsing_common-class.html#integer"><a title="pyparsing.pyparsing_common.integer" class="py-name" href="#" onclick="return doclink('link-1049', 'integer', 'link-1049');">integer</a></tt> <tt class="py-op">=</tt> <tt id="link-1050" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1050', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1051" class="py-name"><a title="pyparsing.nums" class="py-name" href="#" onclick="return doclink('link-1051', 'nums', 'link-22');">nums</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1052" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1052', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"integer"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1053" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1053', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1054" class="py-name"><a title="pyparsing.pyparsing_common.convertToInteger" class="py-name" href="#" onclick="return doclink('link-1054', 'convertToInteger', 'link-1045');">convertToInteger</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5524"></a><tt class="py-lineno">5524</tt> <tt class="py-line"> <tt class="py-string">"""expression that parses an unsigned integer, returns an int"""</tt> </tt>
-<a name="L5525"></a><tt class="py-lineno">5525</tt> <tt class="py-line"> </tt>
-<a name="L5526"></a><tt class="py-lineno">5526</tt> <tt class="py-line"> <tt id="link-1055" class="py-name" targets="Variable pyparsing.pyparsing_common.hex_integer=pyparsing.pyparsing_common-class.html#hex_integer"><a title="pyparsing.pyparsing_common.hex_integer" class="py-name" href="#" onclick="return doclink('link-1055', 'hex_integer', 'link-1055');">hex_integer</a></tt> <tt class="py-op">=</tt> <tt id="link-1056" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1056', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1057" class="py-name"><a title="pyparsing.hexnums" class="py-name" href="#" onclick="return doclink('link-1057', 'hexnums', 'link-23');">hexnums</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1058" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1058', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"hex integer"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1059" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1059', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1060" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1060', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-name">int</tt><tt class="py-op">,</tt><tt class="py-number">16</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5527"></a><tt class="py-lineno">5527</tt> <tt class="py-line"> <tt class="py-string">"""expression that parses a hexadecimal integer, returns an int"""</tt> </tt>
-<a name="L5528"></a><tt class="py-lineno">5528</tt> <tt class="py-line"> </tt>
-<a name="L5529"></a><tt class="py-lineno">5529</tt> <tt class="py-line"> <tt id="link-1061" class="py-name" targets="Variable pyparsing.pyparsing_common.signed_integer=pyparsing.pyparsing_common-class.html#signed_integer"><a title="pyparsing.pyparsing_common.signed_integer" class="py-name" href="#" onclick="return doclink('link-1061', 'signed_integer', 'link-1061');">signed_integer</a></tt> <tt class="py-op">=</tt> <tt id="link-1062" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1062', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[+-]?\d+'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1063" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1063', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"signed integer"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1064" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1064', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1065" class="py-name"><a title="pyparsing.pyparsing_common.convertToInteger" class="py-name" href="#" onclick="return doclink('link-1065', 'convertToInteger', 'link-1045');">convertToInteger</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5530"></a><tt class="py-lineno">5530</tt> <tt class="py-line"> <tt class="py-string">"""expression that parses an integer with optional leading sign, returns an int"""</tt> </tt>
-<a name="L5531"></a><tt class="py-lineno">5531</tt> <tt class="py-line"> </tt>
-<a name="L5532"></a><tt class="py-lineno">5532</tt> <tt class="py-line"> <tt id="link-1066" class="py-name" targets="Variable pyparsing.pyparsing_common.fraction=pyparsing.pyparsing_common-class.html#fraction"><a title="pyparsing.pyparsing_common.fraction" class="py-name" href="#" onclick="return doclink('link-1066', 'fraction', 'link-1066');">fraction</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-1067" class="py-name"><a title="pyparsing.pyparsing_common.signed_integer" class="py-name" href="#" onclick="return doclink('link-1067', 'signed_integer', 'link-1061');">signed_integer</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1068" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1068', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1069" class="py-name"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1069', 'convertToFloat', 'link-1047');">convertToFloat</a></tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">'/'</tt> <tt class="py-op">+</tt> <tt id="link-1070" class="py-name"><a title="pyparsing.pyparsing_common.signed_integer" class="py-name" href="#" onclick="return doclink('link-1070', 'signed_integer', 'link-1061');">signed_integer</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1071" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1071', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1072" class="py-name"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1072', 'convertToFloat', 'link-1047');">convertToFloat</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1073" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1073', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"fraction"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5533"></a><tt class="py-lineno">5533</tt> <tt class="py-line"> <tt class="py-string">"""fractional expression of an integer divided by an integer, returns a float"""</tt> </tt>
-<a name="L5534"></a><tt class="py-lineno">5534</tt> <tt class="py-line"> <tt id="link-1074" class="py-name"><a title="pyparsing.pyparsing_common.fraction" class="py-name" href="#" onclick="return doclink('link-1074', 'fraction', 'link-1066');">fraction</a></tt><tt class="py-op">.</tt><tt id="link-1075" class="py-name"><a title="pyparsing.ParserElement.addParseAction" class="py-name" href="#" onclick="return doclink('link-1075', 'addParseAction', 'link-701');">addParseAction</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">/</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-op">-</tt><tt class="py-number">1</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-<a name="L5535"></a><tt class="py-lineno">5535</tt> <tt class="py-line"> </tt>
-<a name="L5536"></a><tt class="py-lineno">5536</tt> <tt class="py-line"> <tt id="link-1076" class="py-name" targets="Variable pyparsing.pyparsing_common.mixed_integer=pyparsing.pyparsing_common-class.html#mixed_integer"><a title="pyparsing.pyparsing_common.mixed_integer" class="py-name" href="#" onclick="return doclink('link-1076', 'mixed_integer', 'link-1076');">mixed_integer</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-1077" class="py-name"><a title="pyparsing.pyparsing_common.fraction" class="py-name" href="#" onclick="return doclink('link-1077', 'fraction', 'link-1066');">fraction</a></tt> <tt class="py-op">|</tt> <tt id="link-1078" class="py-name"><a title="pyparsing.pyparsing_common.signed_integer" class="py-name" href="#" onclick="return doclink('link-1078', 'signed_integer', 'link-1061');">signed_integer</a></tt> <tt class="py-op">+</tt> <tt id="link-1079" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1079', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt id="link-1080" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1080', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt class="py-string">'-'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1081" class="py-name"><a title="pyparsing.ParserElement.suppress
-pyparsing.Suppress.suppress" class="py-name" href="#" onclick="return doclink('link-1081', 'suppress', 'link-958');">suppress</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-1082" class="py-name"><a title="pyparsing.pyparsing_common.fraction" class="py-name" href="#" onclick="return doclink('link-1082', 'fraction', 'link-1066');">fraction</a></tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1083" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1083', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"fraction or mixed integer-fraction"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5537"></a><tt class="py-lineno">5537</tt> <tt class="py-line"> <tt class="py-string">"""mixed integer of the form 'integer - fraction', with optional leading integer, returns float"""</tt> </tt>
-<a name="L5538"></a><tt class="py-lineno">5538</tt> <tt class="py-line"> <tt id="link-1084" class="py-name"><a title="pyparsing.pyparsing_common.mixed_integer" class="py-name" href="#" onclick="return doclink('link-1084', 'mixed_integer', 'link-1076');">mixed_integer</a></tt><tt class="py-op">.</tt><tt id="link-1085" class="py-name"><a title="pyparsing.ParserElement.addParseAction" class="py-name" href="#" onclick="return doclink('link-1085', 'addParseAction', 'link-701');">addParseAction</a></tt><tt class="py-op">(</tt><tt class="py-name">sum</tt><tt class="py-op">)</tt> </tt>
-<a name="L5539"></a><tt class="py-lineno">5539</tt> <tt class="py-line"> </tt>
-<a name="L5540"></a><tt class="py-lineno">5540</tt> <tt class="py-line"> <tt id="link-1086" class="py-name" targets="Variable pyparsing.pyparsing_common.real=pyparsing.pyparsing_common-class.html#real"><a title="pyparsing.pyparsing_common.real" class="py-name" href="#" onclick="return doclink('link-1086', 'real', 'link-1086');">real</a></tt> <tt class="py-op">=</tt> <tt id="link-1087" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1087', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[+-]?\d+\.\d*'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1088" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1088', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"real number"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1089" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1089', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1090" class="py-name"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1090', 'convertToFloat', 'link-1047');">convertToFloat</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5541"></a><tt class="py-lineno">5541</tt> <tt class="py-line"> <tt class="py-string">"""expression that parses a floating point number and returns a float"""</tt> </tt>
-<a name="L5542"></a><tt class="py-lineno">5542</tt> <tt class="py-line"> </tt>
-<a name="L5543"></a><tt class="py-lineno">5543</tt> <tt class="py-line"> <tt id="link-1091" class="py-name" targets="Variable pyparsing.pyparsing_common.sci_real=pyparsing.pyparsing_common-class.html#sci_real"><a title="pyparsing.pyparsing_common.sci_real" class="py-name" href="#" onclick="return doclink('link-1091', 'sci_real', 'link-1091');">sci_real</a></tt> <tt class="py-op">=</tt> <tt id="link-1092" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1092', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[+-]?\d+([eE][+-]?\d+|\.\d*([eE][+-]?\d+)?)'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1093" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1093', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"real number with scientific notation"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1094" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1094', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1095" class="py-name"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1095', 'convertToFloat', 'link-1047');">convertToFloat</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5544"></a><tt class="py-lineno">5544</tt> <tt class="py-line"> <tt class="py-string">"""expression that parses a floating point number with optional scientific notation and returns a float"""</tt> </tt>
-<a name="L5545"></a><tt class="py-lineno">5545</tt> <tt class="py-line"> </tt>
-<a name="L5546"></a><tt class="py-lineno">5546</tt> <tt class="py-line"> <tt class="py-comment"># streamlining this expression makes the docs nicer-looking</tt> </tt>
-<a name="L5547"></a><tt class="py-lineno">5547</tt> <tt class="py-line"> <tt id="link-1096" class="py-name" targets="Variable pyparsing.pyparsing_common.number=pyparsing.pyparsing_common-class.html#number"><a title="pyparsing.pyparsing_common.number" class="py-name" href="#" onclick="return doclink('link-1096', 'number', 'link-1096');">number</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-1097" class="py-name"><a title="pyparsing.pyparsing_common.sci_real" class="py-name" href="#" onclick="return doclink('link-1097', 'sci_real', 'link-1091');">sci_real</a></tt> <tt class="py-op">|</tt> <tt id="link-1098" class="py-name"><a title="pyparsing.pyparsing_common.real" class="py-name" href="#" onclick="return doclink('link-1098', 'real', 'link-1086');">real</a></tt> <tt class="py-op">|</tt> <tt id="link-1099" class="py-name"><a title="pyparsing.pyparsing_common.signed_integer" class="py-name" href="#" onclick="return doclink('link-1099', 'signed_integer', 'link-1061');">signed_integer</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1100" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-1100', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5548"></a><tt class="py-lineno">5548</tt> <tt class="py-line"> <tt class="py-string">"""any numeric expression, returns the corresponding Python type"""</tt> </tt>
-<a name="L5549"></a><tt class="py-lineno">5549</tt> <tt class="py-line"> </tt>
-<a name="L5550"></a><tt class="py-lineno">5550</tt> <tt class="py-line"> <tt id="link-1101" class="py-name" targets="Variable pyparsing.pyparsing_common.fnumber=pyparsing.pyparsing_common-class.html#fnumber"><a title="pyparsing.pyparsing_common.fnumber" class="py-name" href="#" onclick="return doclink('link-1101', 'fnumber', 'link-1101');">fnumber</a></tt> <tt class="py-op">=</tt> <tt id="link-1102" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1102', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[+-]?\d+\.?\d*([eE][+-]?\d+)?'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1103" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1103', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"fnumber"</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1104" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1104', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1105" class="py-name"><a title="pyparsing.pyparsing_common.convertToFloat" class="py-name" href="#" onclick="return doclink('link-1105', 'convertToFloat', 'link-1047');">convertToFloat</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5551"></a><tt class="py-lineno">5551</tt> <tt class="py-line"> <tt class="py-string">"""any int or real number, returned as float"""</tt> </tt>
-<a name="L5552"></a><tt class="py-lineno">5552</tt> <tt class="py-line"> </tt>
-<a name="L5553"></a><tt class="py-lineno">5553</tt> <tt class="py-line"> <tt id="link-1106" class="py-name" targets="Variable pyparsing.pyparsing_common.identifier=pyparsing.pyparsing_common-class.html#identifier"><a title="pyparsing.pyparsing_common.identifier" class="py-name" href="#" onclick="return doclink('link-1106', 'identifier', 'link-1106');">identifier</a></tt> <tt class="py-op">=</tt> <tt id="link-1107" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1107', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1108" class="py-name"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-1108', 'alphas', 'link-21');">alphas</a></tt><tt class="py-op">+</tt><tt class="py-string">'_'</tt><tt class="py-op">,</tt> <tt id="link-1109" class="py-name"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-1109', 'alphanums', 'link-25');">alphanums</a></tt><tt class="py-op">+</tt><tt class="py-string">'_'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1110" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1110', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"identifier"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5554"></a><tt class="py-lineno">5554</tt> <tt class="py-line"> <tt class="py-string">"""typical code identifier (leading alpha or '_', followed by 0 or more alphas, nums, or '_')"""</tt> </tt>
-<a name="L5555"></a><tt class="py-lineno">5555</tt> <tt class="py-line"> </tt>
-<a name="L5556"></a><tt class="py-lineno">5556</tt> <tt class="py-line"> <tt id="link-1111" class="py-name" targets="Variable pyparsing.pyparsing_common.ipv4_address=pyparsing.pyparsing_common-class.html#ipv4_address"><a title="pyparsing.pyparsing_common.ipv4_address" class="py-name" href="#" onclick="return doclink('link-1111', 'ipv4_address', 'link-1111');">ipv4_address</a></tt> <tt class="py-op">=</tt> <tt id="link-1112" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1112', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})(\.(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})){3}'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1113" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1113', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"IPv4 address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5557"></a><tt class="py-lineno">5557</tt> <tt class="py-line"> <tt class="py-string">"IPv4 address (C{0.0.0.0 - 255.255.255.255})"</tt> </tt>
-<a name="L5558"></a><tt class="py-lineno">5558</tt> <tt class="py-line"> </tt>
-<a name="L5559"></a><tt class="py-lineno">5559</tt> <tt class="py-line"> <tt id="link-1114" class="py-name" targets="Variable pyparsing.pyparsing_common._ipv6_part=pyparsing.pyparsing_common-class.html#_ipv6_part"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1114', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt> <tt class="py-op">=</tt> <tt id="link-1115" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1115', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[0-9a-fA-F]{1,4}'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1116" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1116', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"hex_integer"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5560"></a><tt class="py-lineno">5560</tt> <tt class="py-line"> <tt id="link-1117" class="py-name" targets="Variable pyparsing.pyparsing_common._full_ipv6_address=pyparsing.pyparsing_common-class.html#_full_ipv6_address"><a title="pyparsing.pyparsing_common._full_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1117', '_full_ipv6_address', 'link-1117');">_full_ipv6_address</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-1118" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1118', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-string">':'</tt> <tt class="py-op">+</tt> <tt id="link-1119" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1119', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt><tt class="py-op">)</tt><tt class="py-op">*</tt><tt class="py-number">7</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1120" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1120', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"full IPv6 address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5561"></a><tt class="py-lineno">5561</tt> <tt class="py-line"> <tt id="link-1121" class="py-name" targets="Variable pyparsing.pyparsing_common._short_ipv6_address=pyparsing.pyparsing_common-class.html#_short_ipv6_address"><a title="pyparsing.pyparsing_common._short_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1121', '_short_ipv6_address', 'link-1121');">_short_ipv6_address</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt id="link-1122" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1122', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt id="link-1123" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1123', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-string">':'</tt> <tt class="py-op">+</tt> <tt id="link-1124" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1124', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt><tt class="py-op">)</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-number">6</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-string">"::"</tt> <tt class="py-op">+</tt> <tt id="link-1125" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1125', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt><tt id="link-1126" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1126', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt> <tt class="py-op">+</tt> <tt class="py-op">(</tt><tt class="py-string">':'</tt> <tt class="py-op">+</tt> <tt id="link-1127" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1127', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt><tt class="py-op">)</tt><tt class="py-op">*</tt><tt class="py-op">(</tt><tt class="py-number">0</tt><tt class="py-op">,</tt><tt class="py-number">6</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1128" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1128', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"short IPv6 address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5562"></a><tt class="py-lineno">5562</tt> <tt class="py-line"> <tt id="link-1129" class="py-name"><a title="pyparsing.pyparsing_common._short_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1129', '_short_ipv6_address', 'link-1121');">_short_ipv6_address</a></tt><tt class="py-op">.</tt><tt id="link-1130" class="py-name" targets="Method pyparsing.ParserElement.addCondition()=pyparsing.ParserElement-class.html#addCondition"><a title="pyparsing.ParserElement.addCondition" class="py-name" href="#" onclick="return doclink('link-1130', 'addCondition', 'link-1130');">addCondition</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">sum</tt><tt class="py-op">(</tt><tt class="py-number">1</tt> <tt class="py-keyword">for</tt> <tt class="py-name">tt</tt> <tt class="py-keyword">in</tt> <tt class="py-name">t</tt> <tt class="py-keyword">if</tt> <tt id="link-1131" class="py-name" targets="Class pyparsing.pyparsing_common=pyparsing.pyparsing_common-class.html"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1131', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1132" class="py-name"><a title="pyparsing.pyparsing_common._ipv6_part" class="py-name" href="#" onclick="return doclink('link-1132', '_ipv6_part', 'link-1114');">_ipv6_part</a></tt><tt class="py-op">.</tt><tt id="link-1133" class="py-name"><a title="pyparsing.ParserElement.matches" class="py-name" href="#" onclick="return doclink('link-1133', 'matches', 'link-248');">matches</a></tt><tt class="py-op">(</tt><tt class="py-name">tt</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> <tt class="py-op"><</tt> <tt class="py-number">8</tt><tt class="py-op">)</tt> </tt>
-<a name="L5563"></a><tt class="py-lineno">5563</tt> <tt class="py-line"> <tt id="link-1134" class="py-name" targets="Variable pyparsing.pyparsing_common._mixed_ipv6_address=pyparsing.pyparsing_common-class.html#_mixed_ipv6_address"><a title="pyparsing.pyparsing_common._mixed_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1134', '_mixed_ipv6_address', 'link-1134');">_mixed_ipv6_address</a></tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-string">"::ffff:"</tt> <tt class="py-op">+</tt> <tt id="link-1135" class="py-name"><a title="pyparsing.pyparsing_common.ipv4_address" class="py-name" href="#" onclick="return doclink('link-1135', 'ipv4_address', 'link-1111');">ipv4_address</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1136" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1136', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"mixed IPv6 address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5564"></a><tt class="py-lineno">5564</tt> <tt class="py-line"> <tt id="link-1137" class="py-name" targets="Variable pyparsing.pyparsing_common.ipv6_address=pyparsing.pyparsing_common-class.html#ipv6_address"><a title="pyparsing.pyparsing_common.ipv6_address" class="py-name" href="#" onclick="return doclink('link-1137', 'ipv6_address', 'link-1137');">ipv6_address</a></tt> <tt class="py-op">=</tt> <tt id="link-1138" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-1138', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt class="py-op">(</tt><tt id="link-1139" class="py-name"><a title="pyparsing.pyparsing_common._full_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1139', '_full_ipv6_address', 'link-1117');">_full_ipv6_address</a></tt> <tt class="py-op">|</tt> <tt id="link-1140" class="py-name"><a title="pyparsing.pyparsing_common._mixed_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1140', '_mixed_ipv6_address', 'link-1134');">_mixed_ipv6_address</a></tt> <tt class="py-op">|</tt> <tt id="link-1141" class="py-name"><a title="pyparsing.pyparsing_common._short_ipv6_address" class="py-name" href="#" onclick="return doclink('link-1141', '_short_ipv6_address', 'link-1121');">_short_ipv6_address</a></tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1142" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1142', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"IPv6 address"</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1143" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1143', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"IPv6 address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5565"></a><tt class="py-lineno">5565</tt> <tt class="py-line"> <tt class="py-string">"IPv6 address (long, short, or mixed form)"</tt> </tt>
-<a name="L5566"></a><tt class="py-lineno">5566</tt> <tt class="py-line"> </tt>
-<a name="L5567"></a><tt class="py-lineno">5567</tt> <tt class="py-line"> <tt id="link-1144" class="py-name" targets="Variable pyparsing.pyparsing_common.mac_address=pyparsing.pyparsing_common-class.html#mac_address"><a title="pyparsing.pyparsing_common.mac_address" class="py-name" href="#" onclick="return doclink('link-1144', 'mac_address', 'link-1144');">mac_address</a></tt> <tt class="py-op">=</tt> <tt id="link-1145" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1145', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[0-9a-fA-F]{2}([:.-])[0-9a-fA-F]{2}(?:\1[0-9a-fA-F]{2}){4}'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1146" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1146', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"MAC address"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5568"></a><tt class="py-lineno">5568</tt> <tt class="py-line"> <tt class="py-string">"MAC address xx:xx:xx:xx:xx (may also have '-' or '.' delimiters)"</tt> </tt>
-<a name="L5569"></a><tt class="py-lineno">5569</tt> <tt class="py-line"> </tt>
-<a name="L5570"></a><tt class="py-lineno">5570</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="pyparsing_common.convertToDate"></a><div id="pyparsing_common.convertToDate-def"><a name="L5571"></a><tt class="py-lineno">5571</tt> <a class="py-toggle" href="#" id="pyparsing_common.convertToDate-toggle" onclick="return toggle('pyparsing_common.convertToDate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.pyparsing_common-class.html#convertToDate">convertToDate</a><tt class="py-op">(</tt><tt class="py-param">fmt</tt><tt class="py-op">=</tt><tt class="py-string">"%Y-%m-%d"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="pyparsing_common.convertToDate-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="pyparsing_common.convertToDate-expanded"><a name="L5572"></a><tt class="py-lineno">5572</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5573"></a><tt class="py-lineno">5573</tt> <tt class="py-line"><tt class="py-docstring"> Helper to create a parse action for converting parsed date string to Python datetime.date</tt> </tt>
-<a name="L5574"></a><tt class="py-lineno">5574</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5575"></a><tt class="py-lineno">5575</tt> <tt class="py-line"><tt class="py-docstring"> Params -</tt> </tt>
-<a name="L5576"></a><tt class="py-lineno">5576</tt> <tt class="py-line"><tt class="py-docstring"> - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%d"})</tt> </tt>
-<a name="L5577"></a><tt class="py-lineno">5577</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5578"></a><tt class="py-lineno">5578</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5579"></a><tt class="py-lineno">5579</tt> <tt class="py-line"><tt class="py-docstring"> date_expr = pyparsing_common.iso8601_date.copy()</tt> </tt>
-<a name="L5580"></a><tt class="py-lineno">5580</tt> <tt class="py-line"><tt class="py-docstring"> date_expr.setParseAction(pyparsing_common.convertToDate())</tt> </tt>
-<a name="L5581"></a><tt class="py-lineno">5581</tt> <tt class="py-line"><tt class="py-docstring"> print(date_expr.parseString("1999-12-31"))</tt> </tt>
-<a name="L5582"></a><tt class="py-lineno">5582</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5583"></a><tt class="py-lineno">5583</tt> <tt class="py-line"><tt class="py-docstring"> [datetime.date(1999, 12, 31)]</tt> </tt>
-<a name="L5584"></a><tt class="py-lineno">5584</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5585"></a><tt class="py-lineno">5585</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">cvt_fn</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5586"></a><tt class="py-lineno">5586</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L5587"></a><tt class="py-lineno">5587</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">datetime</tt><tt class="py-op">.</tt><tt class="py-name">strptime</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">fmt</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">date</tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5588"></a><tt class="py-lineno">5588</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">ValueError</tt> <tt class="py-keyword">as</tt> <tt class="py-name">ve</tt><tt class="py-op">:</tt> </tt>
-<a name="L5589"></a><tt class="py-lineno">5589</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-1147" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-1147', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt> <tt class="py-name">l</tt><tt class="py-op">,</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">ve</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5590"></a><tt class="py-lineno">5590</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cvt_fn</tt> </tt>
-</div><a name="L5591"></a><tt class="py-lineno">5591</tt> <tt class="py-line"> </tt>
-<a name="L5592"></a><tt class="py-lineno">5592</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="pyparsing_common.convertToDatetime"></a><div id="pyparsing_common.convertToDatetime-def"><a name="L5593"></a><tt class="py-lineno">5593</tt> <a class="py-toggle" href="#" id="pyparsing_common.convertToDatetime-toggle" onclick="return toggle('pyparsing_common.convertToDatetime');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.pyparsing_common-class.html#convertToDatetime">convertToDatetime</a><tt class="py-op">(</tt><tt class="py-param">fmt</tt><tt class="py-op">=</tt><tt class="py-string">"%Y-%m-%dT%H:%M:%S.%f"</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="pyparsing_common.convertToDatetime-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="pyparsing_common.convertToDatetime-expanded"><a name="L5594"></a><tt class="py-lineno">5594</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5595"></a><tt class="py-lineno">5595</tt> <tt class="py-line"><tt class="py-docstring"> Helper to create a parse action for converting parsed datetime string to Python datetime.datetime</tt> </tt>
-<a name="L5596"></a><tt class="py-lineno">5596</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5597"></a><tt class="py-lineno">5597</tt> <tt class="py-line"><tt class="py-docstring"> Params -</tt> </tt>
-<a name="L5598"></a><tt class="py-lineno">5598</tt> <tt class="py-line"><tt class="py-docstring"> - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%dT%H:%M:%S.%f"})</tt> </tt>
-<a name="L5599"></a><tt class="py-lineno">5599</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5600"></a><tt class="py-lineno">5600</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5601"></a><tt class="py-lineno">5601</tt> <tt class="py-line"><tt class="py-docstring"> dt_expr = pyparsing_common.iso8601_datetime.copy()</tt> </tt>
-<a name="L5602"></a><tt class="py-lineno">5602</tt> <tt class="py-line"><tt class="py-docstring"> dt_expr.setParseAction(pyparsing_common.convertToDatetime())</tt> </tt>
-<a name="L5603"></a><tt class="py-lineno">5603</tt> <tt class="py-line"><tt class="py-docstring"> print(dt_expr.parseString("1999-12-31T23:59:59.999"))</tt> </tt>
-<a name="L5604"></a><tt class="py-lineno">5604</tt> <tt class="py-line"><tt class="py-docstring"> prints::</tt> </tt>
-<a name="L5605"></a><tt class="py-lineno">5605</tt> <tt class="py-line"><tt class="py-docstring"> [datetime.datetime(1999, 12, 31, 23, 59, 59, 999000)]</tt> </tt>
-<a name="L5606"></a><tt class="py-lineno">5606</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5607"></a><tt class="py-lineno">5607</tt> <tt class="py-line"> <tt class="py-keyword">def</tt> <tt class="py-def-name">cvt_fn</tt><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt><tt class="py-param">l</tt><tt class="py-op">,</tt><tt class="py-param">t</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-<a name="L5608"></a><tt class="py-lineno">5608</tt> <tt class="py-line"> <tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
-<a name="L5609"></a><tt class="py-lineno">5609</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">datetime</tt><tt class="py-op">.</tt><tt class="py-name">strptime</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">,</tt> <tt class="py-name">fmt</tt><tt class="py-op">)</tt> </tt>
-<a name="L5610"></a><tt class="py-lineno">5610</tt> <tt class="py-line"> <tt class="py-keyword">except</tt> <tt class="py-name">ValueError</tt> <tt class="py-keyword">as</tt> <tt class="py-name">ve</tt><tt class="py-op">:</tt> </tt>
-<a name="L5611"></a><tt class="py-lineno">5611</tt> <tt class="py-line"> <tt class="py-keyword">raise</tt> <tt id="link-1148" class="py-name"><a title="pyparsing.ParseException" class="py-name" href="#" onclick="return doclink('link-1148', 'ParseException', 'link-147');">ParseException</a></tt><tt class="py-op">(</tt><tt class="py-name">s</tt><tt class="py-op">,</tt> <tt class="py-name">l</tt><tt class="py-op">,</tt> <tt class="py-name">str</tt><tt class="py-op">(</tt><tt class="py-name">ve</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5612"></a><tt class="py-lineno">5612</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">cvt_fn</tt> </tt>
-</div><a name="L5613"></a><tt class="py-lineno">5613</tt> <tt class="py-line"> </tt>
-<a name="L5614"></a><tt class="py-lineno">5614</tt> <tt class="py-line"> <tt id="link-1149" class="py-name" targets="Variable pyparsing.pyparsing_common.iso8601_date=pyparsing.pyparsing_common-class.html#iso8601_date"><a title="pyparsing.pyparsing_common.iso8601_date" class="py-name" href="#" onclick="return doclink('link-1149', 'iso8601_date', 'link-1149');">iso8601_date</a></tt> <tt class="py-op">=</tt> <tt id="link-1150" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1150', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'(?P<year>\d{4})(?:-(?P<month>\d\d)(?:-(?P<day>\d\d))?)?'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1151" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1151', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"ISO8601 date"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5615"></a><tt class="py-lineno">5615</tt> <tt class="py-line"> <tt class="py-string">"ISO8601 date (C{yyyy-mm-dd})"</tt> </tt>
-<a name="L5616"></a><tt class="py-lineno">5616</tt> <tt class="py-line"> </tt>
-<a name="L5617"></a><tt class="py-lineno">5617</tt> <tt class="py-line"> <tt id="link-1152" class="py-name" targets="Variable pyparsing.pyparsing_common.iso8601_datetime=pyparsing.pyparsing_common-class.html#iso8601_datetime"><a title="pyparsing.pyparsing_common.iso8601_datetime" class="py-name" href="#" onclick="return doclink('link-1152', 'iso8601_datetime', 'link-1152');">iso8601_datetime</a></tt> <tt class="py-op">=</tt> <tt id="link-1153" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1153', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'(?P<year>\d{4})-(?P<month>\d\d)-(?P<day>\d\d)[T ](?P<hour>\d\d):(?P<minute>\d\d)(:(?P<second>\d\d(\.\d*)?)?)?(?P<tz>Z|[+-]\d\d:?\d\d)?'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1154" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1154', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"ISO8601 datetime"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5618"></a><tt class="py-lineno">5618</tt> <tt class="py-line"> <tt class="py-string">"ISO8601 datetime (C{yyyy-mm-ddThh:mm:ss.s(Z|+-00:00)}) - trailing seconds, milliseconds, and timezone optional; accepts separating C{'T'} or C{' '}"</tt> </tt>
-<a name="L5619"></a><tt class="py-lineno">5619</tt> <tt class="py-line"> </tt>
-<a name="L5620"></a><tt class="py-lineno">5620</tt> <tt class="py-line"> <tt id="link-1155" class="py-name" targets="Variable pyparsing.pyparsing_common.uuid=pyparsing.pyparsing_common-class.html#uuid"><a title="pyparsing.pyparsing_common.uuid" class="py-name" href="#" onclick="return doclink('link-1155', 'uuid', 'link-1155');">uuid</a></tt> <tt class="py-op">=</tt> <tt id="link-1156" class="py-name"><a title="pyparsing.Regex" class="py-name" href="#" onclick="return doclink('link-1156', 'Regex', 'link-11');">Regex</a></tt><tt class="py-op">(</tt><tt class="py-string">r'[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}'</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1157" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1157', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"UUID"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5621"></a><tt class="py-lineno">5621</tt> <tt class="py-line"> <tt class="py-string">"UUID (C{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx})"</tt> </tt>
-<a name="L5622"></a><tt class="py-lineno">5622</tt> <tt class="py-line"> </tt>
-<a name="L5623"></a><tt class="py-lineno">5623</tt> <tt class="py-line"> <tt id="link-1158" class="py-name" targets="Variable pyparsing.pyparsing_common._html_stripper=pyparsing.pyparsing_common-class.html#_html_stripper"><a title="pyparsing.pyparsing_common._html_stripper" class="py-name" href="#" onclick="return doclink('link-1158', '_html_stripper', 'link-1158');">_html_stripper</a></tt> <tt class="py-op">=</tt> <tt id="link-1159" class="py-name"><a title="pyparsing.anyOpenTag" class="py-name" href="#" onclick="return doclink('link-1159', 'anyOpenTag', 'link-987');">anyOpenTag</a></tt><tt class="py-op">.</tt><tt id="link-1160" class="py-name"><a title="pyparsing.ParserElement.suppress
-pyparsing.Suppress.suppress" class="py-name" href="#" onclick="return doclink('link-1160', 'suppress', 'link-958');">suppress</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt id="link-1161" class="py-name"><a title="pyparsing.anyCloseTag" class="py-name" href="#" onclick="return doclink('link-1161', 'anyCloseTag', 'link-988');">anyCloseTag</a></tt><tt class="py-op">.</tt><tt id="link-1162" class="py-name"><a title="pyparsing.ParserElement.suppress
-pyparsing.Suppress.suppress" class="py-name" href="#" onclick="return doclink('link-1162', 'suppress', 'link-958');">suppress</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> </tt>
-<a name="L5624"></a><tt class="py-lineno">5624</tt> <tt class="py-line"> <tt class="py-decorator">@</tt><tt class="py-decorator">staticmethod</tt> </tt>
-<a name="pyparsing_common.stripHTMLTags"></a><div id="pyparsing_common.stripHTMLTags-def"><a name="L5625"></a><tt class="py-lineno">5625</tt> <a class="py-toggle" href="#" id="pyparsing_common.stripHTMLTags-toggle" onclick="return toggle('pyparsing_common.stripHTMLTags');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="pyparsing.pyparsing_common-class.html#stripHTMLTags">stripHTMLTags</a><tt class="py-op">(</tt><tt class="py-param">s</tt><tt class="py-op">,</tt> <tt class="py-param">l</tt><tt class="py-op">,</tt> <tt class="py-param">tokens</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
-</div><div id="pyparsing_common.stripHTMLTags-collapsed" style="display:none;" pad="++++" indent="++++++++"></div><div id="pyparsing_common.stripHTMLTags-expanded"><a name="L5626"></a><tt class="py-lineno">5626</tt> <tt class="py-line"> <tt class="py-docstring">"""</tt> </tt>
-<a name="L5627"></a><tt class="py-lineno">5627</tt> <tt class="py-line"><tt class="py-docstring"> Parse action to remove HTML tags from web page HTML source</tt> </tt>
-<a name="L5628"></a><tt class="py-lineno">5628</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt>
-<a name="L5629"></a><tt class="py-lineno">5629</tt> <tt class="py-line"><tt class="py-docstring"> Example::</tt> </tt>
-<a name="L5630"></a><tt class="py-lineno">5630</tt> <tt class="py-line"><tt class="py-docstring"> # strip HTML links from normal text </tt> </tt>
-<a name="L5631"></a><tt class="py-lineno">5631</tt> <tt class="py-line"><tt class="py-docstring"> text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'</tt> </tt>
-<a name="L5632"></a><tt class="py-lineno">5632</tt> <tt class="py-line"><tt class="py-docstring"> td,td_end = makeHTMLTags("TD")</tt> </tt>
-<a name="L5633"></a><tt class="py-lineno">5633</tt> <tt class="py-line"><tt class="py-docstring"> table_text = td + SkipTo(td_end).setParseAction(pyparsing_common.stripHTMLTags)("body") + td_end</tt> </tt>
-<a name="L5634"></a><tt class="py-lineno">5634</tt> <tt class="py-line"><tt class="py-docstring"> </tt> </tt>
-<a name="L5635"></a><tt class="py-lineno">5635</tt> <tt class="py-line"><tt class="py-docstring"> print(table_text.parseString(text).body) # -> 'More info at the pyparsing wiki page'</tt> </tt>
-<a name="L5636"></a><tt class="py-lineno">5636</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt>
-<a name="L5637"></a><tt class="py-lineno">5637</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt id="link-1163" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1163', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1164" class="py-name"><a title="pyparsing.pyparsing_common._html_stripper" class="py-name" href="#" onclick="return doclink('link-1164', '_html_stripper', 'link-1158');">_html_stripper</a></tt><tt class="py-op">.</tt><tt id="link-1165" class="py-name"><a title="pyparsing.ParserElement.transformString" class="py-name" href="#" onclick="return doclink('link-1165', 'transformString', 'link-13');">transformString</a></tt><tt class="py-op">(</tt><tt class="py-name">tokens</tt><tt class="py-op">[</tt><tt class="py-number">0</tt><tt class="py-op">]</tt><tt class="py-op">)</tt> </tt>
-</div><a name="L5638"></a><tt class="py-lineno">5638</tt> <tt class="py-line"> </tt>
-<a name="L5639"></a><tt class="py-lineno">5639</tt> <tt class="py-line"> <tt id="link-1166" class="py-name"><a title="pyparsing._commasepitem
-pyparsing.pyparsing_common._commasepitem" class="py-name" href="#" onclick="return doclink('link-1166', '_commasepitem', 'link-1027');">_commasepitem</a></tt> <tt class="py-op">=</tt> <tt id="link-1167" class="py-name"><a title="pyparsing.Combine" class="py-name" href="#" onclick="return doclink('link-1167', 'Combine', 'link-665');">Combine</a></tt><tt class="py-op">(</tt><tt id="link-1168" class="py-name"><a title="pyparsing.OneOrMore" class="py-name" href="#" onclick="return doclink('link-1168', 'OneOrMore', 'link-283');">OneOrMore</a></tt><tt class="py-op">(</tt><tt class="py-op">~</tt><tt id="link-1169" class="py-name"><a title="pyparsing.Literal" class="py-name" href="#" onclick="return doclink('link-1169', 'Literal', 'link-326');">Literal</a></tt><tt class="py-op">(</tt><tt class="py-string">","</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-op">~</tt><tt id="link-1170" class="py-name"><a title="pyparsing.LineEnd" class="py-name" href="#" onclick="return doclink('link-1170', 'LineEnd', 'link-480');">LineEnd</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt id="link-1171" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1171', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1172" class="py-name"><a title="pyparsing.printables" class="py-name" href="#" onclick="return doclink('link-1172', 'printables', 'link-29');">printables</a></tt><tt class="py-op">,</tt> <tt class="py-name">excludeChars</tt><tt class="py-op">=</tt><tt class="py-string">','</tt><tt class="py-op">)</tt> </tt>
-<a name="L5640"></a><tt class="py-lineno">5640</tt> <tt class="py-line"> <tt class="py-op">+</tt> <tt id="link-1173" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1173', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt> <tt id="link-1174" class="py-name"><a title="pyparsing.White" class="py-name" href="#" onclick="return doclink('link-1174', 'White', 'link-456');">White</a></tt><tt class="py-op">(</tt><tt class="py-string">" \t"</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1175" class="py-name"><a title="pyparsing.Forward.streamline
-pyparsing.ParseElementEnhance.streamline
-pyparsing.ParseExpression.streamline
-pyparsing.ParserElement.streamline" class="py-name" href="#" onclick="return doclink('link-1175', 'streamline', 'link-234');">streamline</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1176" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1176', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"commaItem"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5641"></a><tt class="py-lineno">5641</tt> <tt class="py-line"> <tt id="link-1177" class="py-name" targets="Variable pyparsing.pyparsing_common.comma_separated_list=pyparsing.pyparsing_common-class.html#comma_separated_list"><a title="pyparsing.pyparsing_common.comma_separated_list" class="py-name" href="#" onclick="return doclink('link-1177', 'comma_separated_list', 'link-1177');">comma_separated_list</a></tt> <tt class="py-op">=</tt> <tt id="link-1178" class="py-name"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1178', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt> <tt id="link-1179" class="py-name"><a title="pyparsing.Optional" class="py-name" href="#" onclick="return doclink('link-1179', 'Optional', 'link-285');">Optional</a></tt><tt class="py-op">(</tt> <tt id="link-1180" class="py-name"><a title="pyparsing.quotedString" class="py-name" href="#" onclick="return doclink('link-1180', 'quotedString', 'link-821');">quotedString</a></tt><tt class="py-op">.</tt><tt id="link-1181" class="py-name"><a title="pyparsing.Forward.copy
-pyparsing.Keyword.copy
-pyparsing.ParseExpression.copy
-pyparsing.ParseResults.copy
-pyparsing.ParserElement.copy" class="py-name" href="#" onclick="return doclink('link-1181', 'copy', 'link-2');">copy</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt> <tt class="py-op">|</tt> <tt id="link-1182" class="py-name"><a title="pyparsing._commasepitem
-pyparsing.pyparsing_common._commasepitem" class="py-name" href="#" onclick="return doclink('link-1182', '_commasepitem', 'link-1027');">_commasepitem</a></tt><tt class="py-op">,</tt> <tt class="py-name">default</tt><tt class="py-op">=</tt><tt class="py-string">""</tt><tt class="py-op">)</tt> <tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1183" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1183', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"comma separated list"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5642"></a><tt class="py-lineno">5642</tt> <tt class="py-line"> <tt class="py-string">"""Predefined expression of 1 or more printable words or quoted strings, separated by commas."""</tt> </tt>
-<a name="L5643"></a><tt class="py-lineno">5643</tt> <tt class="py-line"> </tt>
-<a name="L5644"></a><tt class="py-lineno">5644</tt> <tt class="py-line"> <tt id="link-1184" class="py-name"><a title="pyparsing.pyparsing_common.upcaseTokens
-pyparsing.upcaseTokens" class="py-name" href="#" onclick="return doclink('link-1184', 'upcaseTokens', 'link-799');">upcaseTokens</a></tt> <tt class="py-op">=</tt> <tt class="py-name">staticmethod</tt><tt class="py-op">(</tt><tt id="link-1185" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1185', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">upper</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5645"></a><tt class="py-lineno">5645</tt> <tt class="py-line"> <tt class="py-string">"""Parse action to convert tokens to upper case."""</tt> </tt>
-<a name="L5646"></a><tt class="py-lineno">5646</tt> <tt class="py-line"> </tt>
-<a name="L5647"></a><tt class="py-lineno">5647</tt> <tt class="py-line"> <tt id="link-1186" class="py-name"><a title="pyparsing.downcaseTokens
-pyparsing.pyparsing_common.downcaseTokens" class="py-name" href="#" onclick="return doclink('link-1186', 'downcaseTokens', 'link-801');">downcaseTokens</a></tt> <tt class="py-op">=</tt> <tt class="py-name">staticmethod</tt><tt class="py-op">(</tt><tt id="link-1187" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1187', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt class="py-keyword">lambda</tt> <tt class="py-name">t</tt><tt class="py-op">:</tt> <tt class="py-name">_ustr</tt><tt class="py-op">(</tt><tt class="py-name">t</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt class="py-name">lower</tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5648"></a><tt class="py-lineno">5648</tt> <tt class="py-line"> <tt class="py-string">"""Parse action to convert tokens to lower case."""</tt> </tt>
-</div><a name="L5649"></a><tt class="py-lineno">5649</tt> <tt class="py-line"> </tt>
-<a name="L5650"></a><tt class="py-lineno">5650</tt> <tt class="py-line"> </tt>
-<a name="L5651"></a><tt class="py-lineno">5651</tt> <tt class="py-line"><tt class="py-keyword">if</tt> <tt class="py-name">__name__</tt> <tt class="py-op">==</tt> <tt class="py-string">"__main__"</tt><tt class="py-op">:</tt> </tt>
-<a name="L5652"></a><tt class="py-lineno">5652</tt> <tt class="py-line"> </tt>
-<a name="L5653"></a><tt class="py-lineno">5653</tt> <tt class="py-line"> <tt class="py-name">selectToken</tt> <tt class="py-op">=</tt> <tt id="link-1188" class="py-name"><a title="pyparsing.CaselessLiteral" class="py-name" href="#" onclick="return doclink('link-1188', 'CaselessLiteral', 'link-379');">CaselessLiteral</a></tt><tt class="py-op">(</tt><tt class="py-string">"select"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5654"></a><tt class="py-lineno">5654</tt> <tt class="py-line"> <tt class="py-name">fromToken</tt> <tt class="py-op">=</tt> <tt id="link-1189" class="py-name"><a title="pyparsing.CaselessLiteral" class="py-name" href="#" onclick="return doclink('link-1189', 'CaselessLiteral', 'link-379');">CaselessLiteral</a></tt><tt class="py-op">(</tt><tt class="py-string">"from"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5655"></a><tt class="py-lineno">5655</tt> <tt class="py-line"> </tt>
-<a name="L5656"></a><tt class="py-lineno">5656</tt> <tt class="py-line"> <tt class="py-name">ident</tt> <tt class="py-op">=</tt> <tt id="link-1190" class="py-name"><a title="pyparsing.Word" class="py-name" href="#" onclick="return doclink('link-1190', 'Word', 'link-392');">Word</a></tt><tt class="py-op">(</tt><tt id="link-1191" class="py-name"><a title="pyparsing.alphas" class="py-name" href="#" onclick="return doclink('link-1191', 'alphas', 'link-21');">alphas</a></tt><tt class="py-op">,</tt> <tt id="link-1192" class="py-name"><a title="pyparsing.alphanums" class="py-name" href="#" onclick="return doclink('link-1192', 'alphanums', 'link-25');">alphanums</a></tt> <tt class="py-op">+</tt> <tt class="py-string">"_$"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5657"></a><tt class="py-lineno">5657</tt> <tt class="py-line"> </tt>
-<a name="L5658"></a><tt class="py-lineno">5658</tt> <tt class="py-line"> <tt class="py-name">columnName</tt> <tt class="py-op">=</tt> <tt id="link-1193" class="py-name"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1193', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt><tt class="py-name">ident</tt><tt class="py-op">,</tt> <tt class="py-string">"."</tt><tt class="py-op">,</tt> <tt class="py-name">combine</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1194" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1194', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1195" class="py-name"><a title="pyparsing.pyparsing_common.upcaseTokens
-pyparsing.upcaseTokens" class="py-name" href="#" onclick="return doclink('link-1195', 'upcaseTokens', 'link-799');">upcaseTokens</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5659"></a><tt class="py-lineno">5659</tt> <tt class="py-line"> <tt class="py-name">columnNameList</tt> <tt class="py-op">=</tt> <tt id="link-1196" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-1196', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt id="link-1197" class="py-name"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1197', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt><tt class="py-name">columnName</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1198" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1198', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"columns"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5660"></a><tt class="py-lineno">5660</tt> <tt class="py-line"> <tt class="py-name">columnSpec</tt> <tt class="py-op">=</tt> <tt class="py-op">(</tt><tt class="py-string">'*'</tt> <tt class="py-op">|</tt> <tt class="py-name">columnNameList</tt><tt class="py-op">)</tt> </tt>
-<a name="L5661"></a><tt class="py-lineno">5661</tt> <tt class="py-line"> </tt>
-<a name="L5662"></a><tt class="py-lineno">5662</tt> <tt class="py-line"> <tt class="py-name">tableName</tt> <tt class="py-op">=</tt> <tt id="link-1199" class="py-name"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1199', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt><tt class="py-name">ident</tt><tt class="py-op">,</tt> <tt class="py-string">"."</tt><tt class="py-op">,</tt> <tt class="py-name">combine</tt><tt class="py-op">=</tt><tt class="py-name">True</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1200" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1200', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1201" class="py-name"><a title="pyparsing.pyparsing_common.upcaseTokens
-pyparsing.upcaseTokens" class="py-name" href="#" onclick="return doclink('link-1201', 'upcaseTokens', 'link-799');">upcaseTokens</a></tt><tt class="py-op">)</tt> </tt>
-<a name="L5663"></a><tt class="py-lineno">5663</tt> <tt class="py-line"> <tt class="py-name">tableNameList</tt> <tt class="py-op">=</tt> <tt id="link-1202" class="py-name"><a title="pyparsing.Group" class="py-name" href="#" onclick="return doclink('link-1202', 'Group', 'link-675');">Group</a></tt><tt class="py-op">(</tt><tt id="link-1203" class="py-name"><a title="pyparsing.delimitedList" class="py-name" href="#" onclick="return doclink('link-1203', 'delimitedList', 'link-1039');">delimitedList</a></tt><tt class="py-op">(</tt><tt class="py-name">tableName</tt><tt class="py-op">)</tt><tt class="py-op">)</tt><tt class="py-op">.</tt><tt id="link-1204" class="py-name"><a title="pyparsing.ParserElement.setName" class="py-name" href="#" onclick="return doclink('link-1204', 'setName', 'link-687');">setName</a></tt><tt class="py-op">(</tt><tt class="py-string">"tables"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5664"></a><tt class="py-lineno">5664</tt> <tt class="py-line"> </tt>
-<a name="L5665"></a><tt class="py-lineno">5665</tt> <tt class="py-line"> <tt class="py-name">simpleSQL</tt> <tt class="py-op">=</tt> <tt class="py-name">selectToken</tt><tt class="py-op">(</tt><tt class="py-string">"command"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">columnSpec</tt><tt class="py-op">(</tt><tt class="py-string">"columns"</tt><tt class="py-op">)</tt> <tt class="py-op">+</tt> <tt class="py-name">fromToken</tt> <tt class="py-op">+</tt> <tt class="py-name">tableNameList</tt><tt class="py-op">(</tt><tt class="py-string">"tables"</tt><tt class="py-op">)</tt> </tt>
-<a name="L5666"></a><tt class="py-lineno">5666</tt> <tt class="py-line"> </tt>
-<a name="L5667"></a><tt class="py-lineno">5667</tt> <tt class="py-line"> <tt class="py-comment"># demo runTests method, including embedded comments in test string</tt> </tt>
-<a name="L5668"></a><tt class="py-lineno">5668</tt> <tt class="py-line"> <tt class="py-name">simpleSQL</tt><tt class="py-op">.</tt><tt id="link-1205" class="py-name" targets="Method pyparsing.ParserElement.runTests()=pyparsing.ParserElement-class.html#runTests"><a title="pyparsing.ParserElement.runTests" class="py-name" href="#" onclick="return doclink('link-1205', 'runTests', 'link-1205');">runTests</a></tt><tt class="py-op">(</tt><tt class="py-string">"""</tt> </tt>
-<a name="L5669"></a><tt class="py-lineno">5669</tt> <tt class="py-line"><tt class="py-string"> # '*' as column list and dotted table name</tt> </tt>
-<a name="L5670"></a><tt class="py-lineno">5670</tt> <tt class="py-line"><tt class="py-string"> select * from SYS.XYZZY</tt> </tt>
-<a name="L5671"></a><tt class="py-lineno">5671</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5672"></a><tt class="py-lineno">5672</tt> <tt class="py-line"><tt class="py-string"> # caseless match on "SELECT", and casts back to "select"</tt> </tt>
-<a name="L5673"></a><tt class="py-lineno">5673</tt> <tt class="py-line"><tt class="py-string"> SELECT * from XYZZY, ABC</tt> </tt>
-<a name="L5674"></a><tt class="py-lineno">5674</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5675"></a><tt class="py-lineno">5675</tt> <tt class="py-line"><tt class="py-string"> # list of column names, and mixed case SELECT keyword</tt> </tt>
-<a name="L5676"></a><tt class="py-lineno">5676</tt> <tt class="py-line"><tt class="py-string"> Select AA,BB,CC from Sys.dual</tt> </tt>
-<a name="L5677"></a><tt class="py-lineno">5677</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5678"></a><tt class="py-lineno">5678</tt> <tt class="py-line"><tt class="py-string"> # multiple tables</tt> </tt>
-<a name="L5679"></a><tt class="py-lineno">5679</tt> <tt class="py-line"><tt class="py-string"> Select A, B, C from Sys.dual, Table2</tt> </tt>
-<a name="L5680"></a><tt class="py-lineno">5680</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5681"></a><tt class="py-lineno">5681</tt> <tt class="py-line"><tt class="py-string"> # invalid SELECT keyword - should fail</tt> </tt>
-<a name="L5682"></a><tt class="py-lineno">5682</tt> <tt class="py-line"><tt class="py-string"> Xelect A, B, C from Sys.dual</tt> </tt>
-<a name="L5683"></a><tt class="py-lineno">5683</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5684"></a><tt class="py-lineno">5684</tt> <tt class="py-line"><tt class="py-string"> # incomplete command - should fail</tt> </tt>
-<a name="L5685"></a><tt class="py-lineno">5685</tt> <tt class="py-line"><tt class="py-string"> Select</tt> </tt>
-<a name="L5686"></a><tt class="py-lineno">5686</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5687"></a><tt class="py-lineno">5687</tt> <tt class="py-line"><tt class="py-string"> # invalid column name - should fail</tt> </tt>
-<a name="L5688"></a><tt class="py-lineno">5688</tt> <tt class="py-line"><tt class="py-string"> Select ^^^ frox Sys.dual</tt> </tt>
-<a name="L5689"></a><tt class="py-lineno">5689</tt> <tt class="py-line"><tt class="py-string"></tt> </tt>
-<a name="L5690"></a><tt class="py-lineno">5690</tt> <tt class="py-line"><tt class="py-string"> """</tt><tt class="py-op">)</tt> </tt>
-<a name="L5691"></a><tt class="py-lineno">5691</tt> <tt class="py-line"> </tt>
-<a name="L5692"></a><tt class="py-lineno">5692</tt> <tt class="py-line"> <tt id="link-1206" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1206', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1207" class="py-name"><a title="pyparsing.pyparsing_common.number" class="py-name" href="#" onclick="return doclink('link-1207', 'number', 'link-1096');">number</a></tt><tt class="py-op">.</tt><tt id="link-1208" class="py-name"><a title="pyparsing.ParserElement.runTests" class="py-name" href="#" onclick="return doclink('link-1208', 'runTests', 'link-1205');">runTests</a></tt><tt class="py-op">(</tt><tt class="py-string">"""</tt> </tt>
-<a name="L5693"></a><tt class="py-lineno">5693</tt> <tt class="py-line"><tt class="py-string"> 100</tt> </tt>
-<a name="L5694"></a><tt class="py-lineno">5694</tt> <tt class="py-line"><tt class="py-string"> -100</tt> </tt>
-<a name="L5695"></a><tt class="py-lineno">5695</tt> <tt class="py-line"><tt class="py-string"> +100</tt> </tt>
-<a name="L5696"></a><tt class="py-lineno">5696</tt> <tt class="py-line"><tt class="py-string"> 3.14159</tt> </tt>
-<a name="L5697"></a><tt class="py-lineno">5697</tt> <tt class="py-line"><tt class="py-string"> 6.02e23</tt> </tt>
-<a name="L5698"></a><tt class="py-lineno">5698</tt> <tt class="py-line"><tt class="py-string"> 1e-12</tt> </tt>
-<a name="L5699"></a><tt class="py-lineno">5699</tt> <tt class="py-line"><tt class="py-string"> """</tt><tt class="py-op">)</tt> </tt>
-<a name="L5700"></a><tt class="py-lineno">5700</tt> <tt class="py-line"> </tt>
-<a name="L5701"></a><tt class="py-lineno">5701</tt> <tt class="py-line"> <tt class="py-comment"># any int or real number, returned as float</tt> </tt>
-<a name="L5702"></a><tt class="py-lineno">5702</tt> <tt class="py-line"> <tt id="link-1209" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1209', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1210" class="py-name"><a title="pyparsing.pyparsing_common.fnumber" class="py-name" href="#" onclick="return doclink('link-1210', 'fnumber', 'link-1101');">fnumber</a></tt><tt class="py-op">.</tt><tt id="link-1211" class="py-name"><a title="pyparsing.ParserElement.runTests" class="py-name" href="#" onclick="return doclink('link-1211', 'runTests', 'link-1205');">runTests</a></tt><tt class="py-op">(</tt><tt class="py-string">"""</tt> </tt>
-<a name="L5703"></a><tt class="py-lineno">5703</tt> <tt class="py-line"><tt class="py-string"> 100</tt> </tt>
-<a name="L5704"></a><tt class="py-lineno">5704</tt> <tt class="py-line"><tt class="py-string"> -100</tt> </tt>
-<a name="L5705"></a><tt class="py-lineno">5705</tt> <tt class="py-line"><tt class="py-string"> +100</tt> </tt>
-<a name="L5706"></a><tt class="py-lineno">5706</tt> <tt class="py-line"><tt class="py-string"> 3.14159</tt> </tt>
-<a name="L5707"></a><tt class="py-lineno">5707</tt> <tt class="py-line"><tt class="py-string"> 6.02e23</tt> </tt>
-<a name="L5708"></a><tt class="py-lineno">5708</tt> <tt class="py-line"><tt class="py-string"> 1e-12</tt> </tt>
-<a name="L5709"></a><tt class="py-lineno">5709</tt> <tt class="py-line"><tt class="py-string"> """</tt><tt class="py-op">)</tt> </tt>
-<a name="L5710"></a><tt class="py-lineno">5710</tt> <tt class="py-line"> </tt>
-<a name="L5711"></a><tt class="py-lineno">5711</tt> <tt class="py-line"> <tt id="link-1212" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1212', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1213" class="py-name"><a title="pyparsing.pyparsing_common.hex_integer" class="py-name" href="#" onclick="return doclink('link-1213', 'hex_integer', 'link-1055');">hex_integer</a></tt><tt class="py-op">.</tt><tt id="link-1214" class="py-name"><a title="pyparsing.ParserElement.runTests" class="py-name" href="#" onclick="return doclink('link-1214', 'runTests', 'link-1205');">runTests</a></tt><tt class="py-op">(</tt><tt class="py-string">"""</tt> </tt>
-<a name="L5712"></a><tt class="py-lineno">5712</tt> <tt class="py-line"><tt class="py-string"> 100</tt> </tt>
-<a name="L5713"></a><tt class="py-lineno">5713</tt> <tt class="py-line"><tt class="py-string"> FF</tt> </tt>
-<a name="L5714"></a><tt class="py-lineno">5714</tt> <tt class="py-line"><tt class="py-string"> """</tt><tt class="py-op">)</tt> </tt>
-<a name="L5715"></a><tt class="py-lineno">5715</tt> <tt class="py-line"> </tt>
-<a name="L5716"></a><tt class="py-lineno">5716</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt id="link-1215" class="py-name"><a title="pyparsing.pyparsing_common.uuid" class="py-name" href="#" onclick="return doclink('link-1215', 'uuid', 'link-1155');">uuid</a></tt> </tt>
-<a name="L5717"></a><tt class="py-lineno">5717</tt> <tt class="py-line"> <tt id="link-1216" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1216', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1217" class="py-name"><a title="pyparsing.pyparsing_common.uuid" class="py-name" href="#" onclick="return doclink('link-1217', 'uuid', 'link-1155');">uuid</a></tt><tt class="py-op">.</tt><tt id="link-1218" class="py-name"><a title="pyparsing.ParserElement.setParseAction" class="py-name" href="#" onclick="return doclink('link-1218', 'setParseAction', 'link-12');">setParseAction</a></tt><tt class="py-op">(</tt><tt id="link-1219" class="py-name"><a title="pyparsing.tokenMap" class="py-name" href="#" onclick="return doclink('link-1219', 'tokenMap', 'link-800');">tokenMap</a></tt><tt class="py-op">(</tt><tt id="link-1220" class="py-name"><a title="pyparsing.pyparsing_common.uuid" class="py-name" href="#" onclick="return doclink('link-1220', 'uuid', 'link-1155');">uuid</a></tt><tt class="py-op">.</tt><tt class="py-name">UUID</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
-<a name="L5718"></a><tt class="py-lineno">5718</tt> <tt class="py-line"> <tt id="link-1221" class="py-name"><a title="pyparsing.pyparsing_common" class="py-name" href="#" onclick="return doclink('link-1221', 'pyparsing_common', 'link-1131');">pyparsing_common</a></tt><tt class="py-op">.</tt><tt id="link-1222" class="py-name"><a title="pyparsing.pyparsing_common.uuid" class="py-name" href="#" onclick="return doclink('link-1222', 'uuid', 'link-1155');">uuid</a></tt><tt class="py-op">.</tt><tt id="link-1223" class="py-name"><a title="pyparsing.ParserElement.runTests" class="py-name" href="#" onclick="return doclink('link-1223', 'runTests', 'link-1205');">runTests</a></tt><tt class="py-op">(</tt><tt class="py-string">"""</tt> </tt>
-<a name="L5719"></a><tt class="py-lineno">5719</tt> <tt class="py-line"><tt class="py-string"> 12345678-1234-5678-1234-567812345678</tt> </tt>
-<a name="L5720"></a><tt class="py-lineno">5720</tt> <tt class="py-line"><tt class="py-string"> """</tt><tt class="py-op">)</tt> </tt>
-<a name="L5721"></a><tt class="py-lineno">5721</tt> <tt class="py-line"> </tt><script type="text/javascript">
-<!--
-expandto(location.href);
-// -->
-</script>
-</pre>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th bgcolor="#70b0f0" class="navbar-select"
- > Home </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:57 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.And</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class And
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.And-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class And</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#And">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.ParseExpression-class.html">ParseExpression</a> --+
- |
- <strong class="uidshort">And</strong>
-</pre>
-
-<hr />
-<p>Requires all given <code>ParseExpression</code>s to be found in the
- given order. Expressions may be separated by whitespace. May be
- constructed using the <code>'+'</code> operator. May also be constructed
- using the <code>'-'</code> operator, which will suppress
- backtracking.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- name_expr = OneOrMore(Word(alphas))
-
- expr = And([integer("id"),name_expr("name"),integer("age")])
- # more easily written as:
- expr = integer("id") + name_expr("name") + integer("age")
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.And-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">exprs</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">True</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#And.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.And-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#And.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__iadd__"></a><span class="summary-sig-name">__iadd__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#And.__iadd__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.And-class.html#checkRecursion" class="summary-sig-name">checkRecursion</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#And.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.And-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#And.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseExpression-class.html">ParseExpression</a></code></b>:
- <code><a href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#append">append</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">exprs</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">True</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#And.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#And.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="checkRecursion"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">checkRecursion</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#And.checkRecursion">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#checkRecursion">ParserElement.checkRecursion</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#And.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.CaselessKeyword</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class CaselessKeyword
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.CaselessKeyword-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class CaselessKeyword</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#CaselessKeyword">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <a href="pyparsing.Keyword-class.html">Keyword</a> --+
- |
- <strong class="uidshort">CaselessKeyword</strong>
-</pre>
-
-<hr />
-<p>Caseless version of <a href="pyparsing.Keyword-class.html"
- class="link">Keyword</a>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- OneOrMore(CaselessKeyword("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD']
-</pre>
- <p>(Contrast with example for <a
- href="pyparsing.CaselessLiteral-class.html"
- class="link">CaselessLiteral</a>.)</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CaselessKeyword-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">matchString</span>,
- <span class="summary-sig-arg">identChars</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CaselessKeyword.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CaselessKeyword-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CaselessKeyword.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.Keyword-class.html">Keyword</a></code></b>:
- <code><a href="pyparsing.Keyword-class.html#copy">copy</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.Keyword-class.html">Keyword</a></code></b>:
- <code><a href="pyparsing.Keyword-class.html#setDefaultKeywordChars">setDefaultKeywordChars</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.Keyword-class.html">Keyword</a></code></b>:
- <code><a href="pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS">DEFAULT_KEYWORD_CHARS</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">matchString</span>,
- <span class="sig-arg">identChars</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CaselessKeyword.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CaselessKeyword.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.CaselessLiteral</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class CaselessLiteral
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.CaselessLiteral-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class CaselessLiteral</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#CaselessLiteral">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a> --+
- |
- <strong class="uidshort">CaselessLiteral</strong>
-</pre>
-
-<hr />
-<p>Token to match a specified string, ignoring case of letters. Note: the
- matched results will always be in the case of the given match string, NOT
- the case of the input text.</p>
- <p>Example:</p>
-<pre class="literalblock">
- OneOrMore(CaselessLiteral("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD', 'CMD']
-</pre>
- <p>(Contrast with example for <a
- href="pyparsing.CaselessKeyword-class.html"
- class="link">CaselessKeyword</a>.)</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CaselessLiteral-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">matchString</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CaselessLiteral.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CaselessLiteral-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CaselessLiteral.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a></code></b>:
- <code><a href="pyparsing.Literal-class.html#__slotnames__">__slotnames__</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">matchString</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CaselessLiteral.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CaselessLiteral.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.CharsNotIn</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class CharsNotIn
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.CharsNotIn-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class CharsNotIn</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">CharsNotIn</strong>
-</pre>
-
-<hr />
-<p>Token for matching words composed of characters <i>not</i> in a given
- set (will include whitespace in matched characters if not listed in the
- provided exclusion set - see example). Defined with string containing all
- disallowed characters, and an optional minimum, maximum, and/or exact
- length. The default value for <code>min</code> is 1 (a minimum value
- < 1 is not valid); the default values for <code>max</code> and
- <code>exact</code> are 0, meaning no maximum or exact length
- restriction.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # define a comma-separated-value as anything that is not a ','
- csv_value = CharsNotIn(',')
- print(delimitedList(csv_value).parseString("dkls,lsdkjf,s12 34,@!#,213"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['dkls', 'lsdkjf', 's12 34', '@!#', '213']
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CharsNotIn-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">notChars</span>,
- <span class="summary-sig-arg">min</span>=<span class="summary-sig-default">1</span>,
- <span class="summary-sig-arg">max</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">exact</span>=<span class="summary-sig-default">0</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CharsNotIn-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CharsNotIn-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">notChars</span>,
- <span class="sig-arg">min</span>=<span class="sig-default">1</span>,
- <span class="sig-arg">max</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">exact</span>=<span class="sig-default">0</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CharsNotIn.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.CloseMatch</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class CloseMatch
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.CloseMatch-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class CloseMatch</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#CloseMatch">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">CloseMatch</strong>
-</pre>
-
-<hr />
-<p>A variation on <a href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a> which matches "close"
- matches, that is, strings with at most 'n' mismatching characters.
- <code>CloseMatch</code> takes parameters:</p>
- <ul>
- <li>
- <code>match_string</code> - string to be matched
- </li>
- <li>
- <code>maxMismatches</code> - (<code>default=1</code>) maximum number
- of mismatches allowed to count as a match
- </li>
- </ul>
- <p>The results from a successful parse will contain the matched text from
- the input string and the following named results:</p>
- <ul>
- <li>
- <code>mismatches</code> - a list of the positions within the
- match_string where mismatches were found
- </li>
- <li>
- <code>original</code> - the original match_string used to compare
- against the input string
- </li>
- </ul>
- <p>If <code>mismatches</code> is an empty list, then the match was an
- exact match.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = CloseMatch("ATCATCGAATGGA")
- patt.parseString("ATCATCGAAXGGA") # -> (['ATCATCGAAXGGA'], {'mismatches': [[9]], 'original': ['ATCATCGAATGGA']})
- patt.parseString("ATCAXCGAAXGGA") # -> Exception: Expected 'ATCATCGAATGGA' (with up to 1 mismatches) (at char 0), (line:1, col:1)
-
- # exact match
- patt.parseString("ATCATCGAATGGA") # -> (['ATCATCGAATGGA'], {'mismatches': [[]], 'original': ['ATCATCGAATGGA']})
-
- # close match allowing up to 2 mismatches
- patt = CloseMatch("ATCATCGAATGGA", maxMismatches=2)
- patt.parseString("ATCAXCGAAXGGA") # -> (['ATCAXCGAAXGGA'], {'mismatches': [[4, 9]], 'original': ['ATCATCGAATGGA']})
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CloseMatch-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">match_string</span>,
- <span class="summary-sig-arg">maxMismatches</span>=<span class="summary-sig-default">1</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CloseMatch.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.CloseMatch-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#CloseMatch.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">match_string</span>,
- <span class="sig-arg">maxMismatches</span>=<span class="sig-default">1</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CloseMatch.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#CloseMatch.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Combine</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Combine
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Combine-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Combine</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Combine">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <a href="pyparsing.TokenConverter-class.html">TokenConverter</a> --+
- |
- <strong class="uidshort">Combine</strong>
-</pre>
-
-<hr />
-<p>Converter to concatenate all matching tokens to a single string. By
- default, the matching patterns must also be contiguous in the input
- string; this can be disabled by specifying <code>'adjacent=False'</code>
- in the constructor.</p>
- <p>Example:</p>
-<pre class="literalblock">
- real = Word(nums) + '.' + Word(nums)
- print(real.parseString('3.1416')) # -> ['3', '.', '1416']
- # will also erroneously match the following
- print(real.parseString('3. 1416')) # -> ['3', '.', '1416']
-
- real = Combine(Word(nums) + '.' + Word(nums))
- print(real.parseString('3.1416')) # -> ['3.1416']
- # no match when there are internal spaces
- print(real.parseString('3. 1416')) # -> Exception: Expected W:(0123...)
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Combine-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">joinString</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">adjacent</span>=<span class="summary-sig-default">True</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Combine.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Combine-class.html#ignore" class="summary-sig-name">ignore</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or
- other ignorable patterns.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Combine.ignore">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Combine-class.html#postParse" class="summary-sig-name">postParse</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">tokenlist</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Combine.postParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>,
- <span class="sig-arg">joinString</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">adjacent</span>=<span class="sig-default">True</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Combine.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="ignore"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">ignore</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Combine.ignore">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or other
- ignorable patterns.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']
-
- patt.ignore(cStyleComment)
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#ignore">ParserElement.ignore</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="postParse"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">postParse</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">tokenlist</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Combine.postParse">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#postParse">ParserElement.postParse</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Dict</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Dict
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Dict-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Dict</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Dict">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <a href="pyparsing.TokenConverter-class.html">TokenConverter</a> --+
- |
- <strong class="uidshort">Dict</strong>
-</pre>
-
-<hr />
-<p>Converter to return a repetitive expression as a list, but also as a
- dictionary. Each element can also be referenced using the first token in
- the expression as its key. Useful for tabular report scraping when the
- first column can be used as a item key.</p>
- <p>Example:</p>
-<pre class="literalblock">
- data_word = Word(alphas)
- label = data_word + FollowedBy(':')
- attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))
-
- text = "shape: SQUARE posn: upper left color: light blue texture: burlap"
- attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
-
- # print attributes as plain groups
- print(OneOrMore(attr_expr).parseString(text).dump())
-
- # instead of OneOrMore(expr), parse using Dict(OneOrMore(Group(expr))) - Dict will auto-assign names
- result = Dict(OneOrMore(Group(attr_expr))).parseString(text)
- print(result.dump())
-
- # access named fields as dict entries, or output as dict
- print(result['shape'])
- print(result.asDict())
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['shape', 'SQUARE', 'posn', 'upper left', 'color', 'light blue', 'texture', 'burlap']
-
- [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]
- - color: light blue
- - posn: upper left
- - shape: SQUARE
- - texture: burlap
- SQUARE
- {'color': 'light blue', 'posn': 'upper left', 'texture': 'burlap', 'shape': 'SQUARE'}
-</pre>
- <p>See more examples at <a href="pyparsing.ParseResults-class.html"
- class="link">ParseResults</a> of accessing fields by results name.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Dict-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Dict.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Dict-class.html#postParse" class="summary-sig-name">postParse</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">tokenlist</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Dict.postParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Dict.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="postParse"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">postParse</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">tokenlist</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Dict.postParse">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#postParse">ParserElement.postParse</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Each</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Each
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Each-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Each</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Each">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.ParseExpression-class.html">ParseExpression</a> --+
- |
- <strong class="uidshort">Each</strong>
-</pre>
-
-<hr />
-<p>Requires all given <code>ParseExpression</code>s to be found, but in
- any order. Expressions may be separated by whitespace. May be constructed
- using the <code>'&'</code> operator.</p>
- <p>Example:</p>
-<pre class="literalblock">
- color = oneOf("RED ORANGE YELLOW GREEN BLUE PURPLE BLACK WHITE BROWN")
- shape_type = oneOf("SQUARE CIRCLE TRIANGLE STAR HEXAGON OCTAGON")
- integer = Word(nums)
- shape_attr = "shape:" + shape_type("shape")
- posn_attr = "posn:" + Group(integer("x") + ',' + integer("y"))("posn")
- color_attr = "color:" + color("color")
- size_attr = "size:" + integer("size")
-
- # use Each (using operator '&') to accept attributes in any order
- # (shape and posn are required, color and size are optional)
- shape_spec = shape_attr & posn_attr & Optional(color_attr) & Optional(size_attr)
-
- shape_spec.runTests('''
- shape: SQUARE color: BLACK posn: 100, 120
- shape: CIRCLE size: 50 color: BLUE posn: 50,80
- color:GREEN size:20 shape:TRIANGLE posn:20,40
- '''
- )
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- shape: SQUARE color: BLACK posn: 100, 120
- ['shape:', 'SQUARE', 'color:', 'BLACK', 'posn:', ['100', ',', '120']]
- - color: BLACK
- - posn: ['100', ',', '120']
- - x: 100
- - y: 120
- - shape: SQUARE
-
-
- shape: CIRCLE size: 50 color: BLUE posn: 50,80
- ['shape:', 'CIRCLE', 'size:', '50', 'color:', 'BLUE', 'posn:', ['50', ',', '80']]
- - color: BLUE
- - posn: ['50', ',', '80']
- - x: 50
- - y: 80
- - shape: CIRCLE
- - size: 50
-
-
- color: GREEN size: 20 shape: TRIANGLE posn: 20,40
- ['color:', 'GREEN', 'size:', '20', 'shape:', 'TRIANGLE', 'posn:', ['20', ',', '40']]
- - color: GREEN
- - posn: ['20', ',', '40']
- - x: 20
- - y: 40
- - shape: TRIANGLE
- - size: 20
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Each-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">exprs</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">True</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Each.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Each-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Each.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Each-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Each.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Each-class.html#checkRecursion" class="summary-sig-name">checkRecursion</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Each.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseExpression-class.html">ParseExpression</a></code></b>:
- <code><a href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#append">append</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">exprs</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">True</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Each.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Each.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Each.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="checkRecursion"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">checkRecursion</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Each.checkRecursion">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#checkRecursion">ParserElement.checkRecursion</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Empty</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Empty
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Empty-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Empty</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Empty">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">Empty</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li class="private">And._ErrorStop</li> </ul>
-</dd></dl>
-
-<hr />
-<p>An empty token, will always match.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Empty-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Empty.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Empty.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.FollowedBy</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class FollowedBy
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.FollowedBy-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class FollowedBy</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#FollowedBy">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">FollowedBy</strong>
-</pre>
-
-<hr />
-<p>Lookahead matching of the given parse expression.
- <code>FollowedBy</code> does <i>not</i> advance the parsing position
- within the input string, it only verifies that the specified parse
- expression matches at the current position. <code>FollowedBy</code>
- always returns a null token list.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # use FollowedBy to match a label only if it is followed by a ':'
- data_word = Word(alphas)
- label = data_word + FollowedBy(':')
- attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
-
- OneOrMore(attr_expr).parseString("shape: SQUARE color: BLACK posn: upper left").pprint()
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['shape', 'SQUARE'], ['color', 'BLACK'], ['posn', 'upper left']]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.FollowedBy-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#FollowedBy.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.FollowedBy-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#FollowedBy.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#FollowedBy.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#FollowedBy.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Forward</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Forward
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Forward-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Forward</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Forward">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">Forward</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li class="private">_ForwardNoRecurse</li> </ul>
-</dd></dl>
-
-<hr />
-<p>Forward declaration of an expression to be defined later - used for
- recursive grammars, such as algebraic infix notation. When the expression
- is known, it is assigned to the <code>Forward</code> variable using the
- '<<' operator.</p>
- <p>Note: take care when assigning to <code>Forward</code> not to overlook
- precedence of operators. Specifically, '|' has a lower precedence than
- '<<', so that:</p>
-<pre class="literalblock">
- fwdExpr << a | b | c
-</pre>
- <p>will actually be evaluated as:</p>
-<pre class="literalblock">
- (fwdExpr << a) | b | c
-</pre>
- <p>thereby leaving b and c out as parseable alternatives. It is
- recommended that you explicitly group the values inserted into the
- <code>Forward</code>:</p>
-<pre class="literalblock">
- fwdExpr << (a | b | c)
-</pre>
- <p>Converting to use the '<<=' operator instead will avoid this
- problem.</p>
- <p>See <a href="pyparsing.ParseResults-class.html#pprint"
- class="link">ParseResults.pprint</a> for an example of a recursive parser
- created using <code>Forward</code>.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__lshift__"></a><span class="summary-sig-name">__lshift__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.__lshift__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__ilshift__"></a><span class="summary-sig-name">__ilshift__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.__ilshift__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#leaveWhitespace" class="summary-sig-name">leaveWhitespace</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.leaveWhitespace">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#streamline" class="summary-sig-name">streamline</a>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.streamline">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#validate" class="summary-sig-name">validate</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">validateTrace</span>=<span class="summary-sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span><br />
- Check defined expressions for valid structure, check for infinite
- recursive definitions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.validate">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Forward-class.html#copy" class="summary-sig-name">copy</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Make a copy of this <code>ParserElement</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Forward.copy">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="leaveWhitespace"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">leaveWhitespace</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.leaveWhitespace">source code</a></span>
- </td>
- </tr></table>
-
- <p>Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern. This is normally only
- used internally by the pyparsing module, but may be needed in some
- whitespace-sensitive grammars.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#leaveWhitespace">ParserElement.leaveWhitespace</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="streamline"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">streamline</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.streamline">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#streamline">ParserElement.streamline</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="validate"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">validate</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">validateTrace</span>=<span class="sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.validate">source code</a></span>
- </td>
- </tr></table>
-
- <p>Check defined expressions for valid structure, check for infinite
- recursive definitions.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#validate">ParserElement.validate</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="copy"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">copy</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Forward.copy">source code</a></span>
- </td>
- </tr></table>
-
- <p>Make a copy of this <code>ParserElement</code>. Useful for defining
- different parse actions for the same parsing pattern, using copies of the
- original parse element.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")
- integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-
- print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [5120, 100, 655360, 268435456]
-</pre>
- <p>Equivalent form of <code>expr.copy()</code> is just
- <code>expr()</code>:</p>
-<pre class="literalblock">
- integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#copy">ParserElement.copy</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.GoToColumn</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class GoToColumn
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.GoToColumn-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class GoToColumn</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">GoToColumn</strong>
-</pre>
-
-<hr />
-<p>Token to advance to a specific column of input text; useful for
- tabular report scraping.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.GoToColumn-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">colno</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.GoToColumn-class.html#preParse" class="summary-sig-name">preParse</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.preParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.GoToColumn-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">colno</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="preParse"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">preParse</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.preParse">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#preParse">ParserElement.preParse</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#GoToColumn.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Group</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Group
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Group-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Group</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Group">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <a href="pyparsing.TokenConverter-class.html">TokenConverter</a> --+
- |
- <strong class="uidshort">Group</strong>
-</pre>
-
-<hr />
-<p>Converter to return the matched tokens as a list - useful for
- returning tokens of <code><a href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a></code> and <code><a
- href="pyparsing.OneOrMore-class.html" class="link">OneOrMore</a></code>
- expressions.</p>
- <p>Example:</p>
-<pre class="literalblock">
- ident = Word(alphas)
- num = Word(nums)
- term = ident | num
- func = ident + Optional(delimitedList(term))
- print(func.parseString("fn a,b,100")) # -> ['fn', 'a', 'b', '100']
-
- func = ident + Group(Optional(delimitedList(term)))
- print(func.parseString("fn a,b,100")) # -> ['fn', ['a', 'b', '100']]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Group-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Group.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Group-class.html#postParse" class="summary-sig-name">postParse</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">tokenlist</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Group.postParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Group.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="postParse"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">postParse</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">tokenlist</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Group.postParse">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#postParse">ParserElement.postParse</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Keyword</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Keyword
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Keyword-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Keyword</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Keyword">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">Keyword</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.CaselessKeyword-class.html">CaselessKeyword</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Token to exactly match a specified string as a keyword, that is, it
- must be immediately followed by a non-keyword character. Compare with
- <code><a href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a></code>:</p>
- <ul>
- <li>
- <code>Literal("if")</code> will match the leading
- <code>'if'</code> in <code>'ifAndOnlyIf'</code>.
- </li>
- <li>
- <code>Keyword("if")</code> will not; it will only match the
- leading <code>'if'</code> in <code>'if x=1'</code>, or
- <code>'if(y==2)'</code>
- </li>
- </ul>
- <p>Accepts two optional constructor arguments in addition to the keyword
- string:</p>
- <ul>
- <li>
- <code>identChars</code> is a string of characters that would be valid
- identifier characters, defaulting to all alphanumerics +
- "_" and "$"
- </li>
- <li>
- <code>caseless</code> allows case-insensitive matching, default is
- <code>False</code>.
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- Keyword("start").parseString("start") # -> ['start']
- Keyword("start").parseString("starting") # -> Exception
-</pre>
- <p>For case-insensitive matching, use <a
- href="pyparsing.CaselessKeyword-class.html"
- class="link">CaselessKeyword</a>.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Keyword-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">matchString</span>,
- <span class="summary-sig-arg">identChars</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">caseless</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Keyword.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Keyword-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Keyword.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Keyword-class.html#copy" class="summary-sig-name">copy</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Make a copy of this <code>ParserElement</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Keyword.copy">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="setDefaultKeywordChars"></a><span class="summary-sig-name">setDefaultKeywordChars</span>(<span class="summary-sig-arg">chars</span>)</span><br />
- Overrides the default Keyword chars</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Keyword.setDefaultKeywordChars">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Keyword-class.html#DEFAULT_KEYWORD_CHARS" class="summary-name">DEFAULT_KEYWORD_CHARS</a> = <code title="'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_$'"><code class="variable-quote">'</code><code class="variable-string">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijk</code><code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">matchString</span>,
- <span class="sig-arg">identChars</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">caseless</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Keyword.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Keyword.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="copy"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">copy</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Keyword.copy">source code</a></span>
- </td>
- </tr></table>
-
- <p>Make a copy of this <code>ParserElement</code>. Useful for defining
- different parse actions for the same parsing pattern, using copies of the
- original parse element.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")
- integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-
- print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [5120, 100, 655360, 268435456]
-</pre>
- <p>Equivalent form of <code>expr.copy()</code> is just
- <code>expr()</code>:</p>
-<pre class="literalblock">
- integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#copy">ParserElement.copy</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== CLASS VARIABLE DETAILS ==================== -->
-<a name="section-ClassVariableDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variable Details</span></td>
-</tr>
-</table>
-<a name="DEFAULT_KEYWORD_CHARS"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">DEFAULT_KEYWORD_CHARS</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-<code class="variable-quote">'</code><code class="variable-string">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_$</code><code class="variable-quote">'</code>
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.LineEnd</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class LineEnd
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.LineEnd-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class LineEnd</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#LineEnd">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">LineEnd</strong>
-</pre>
-
-<hr />
-<p>Matches if current position is at the end of a line within the parse
- string</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.LineEnd-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#LineEnd.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.LineEnd-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#LineEnd.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#LineEnd.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#LineEnd.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.LineStart</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class LineStart
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.LineStart-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class LineStart</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#LineStart">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">LineStart</strong>
-</pre>
-
-<hr />
-<p>Matches if current position is at the beginning of a line within the
- parse string</p>
- <p>Example:</p>
-<pre class="literalblock">
- test = ''' AAA this line
- AAA and this line
- AAA but not this one
- B AAA and definitely not this one
- '''
-
- for t in (LineStart() + 'AAA' + restOfLine).searchString(test):
- print(t)
-</pre>
- <p>Prints:</p>
-<pre class="literalblock">
- ['AAA', ' this line']
- ['AAA', ' and this line']
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.LineStart-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#LineStart.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.LineStart-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#LineStart.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#LineStart.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#LineStart.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Literal</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Literal
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Literal-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Literal</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Literal">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">Literal</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.CaselessLiteral-class.html">CaselessLiteral</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Token to exactly match a specified string.</p>
- <p>Example:</p>
-<pre class="literalblock">
- Literal('blah').parseString('blah') # -> ['blah']
- Literal('blah').parseString('blahfooblah') # -> ['blah']
- Literal('blah').parseString('bla') # -> Exception: Expected "blah"
-</pre>
- <p>For case-insensitive matching, use <a
- href="pyparsing.CaselessLiteral-class.html"
- class="link">CaselessLiteral</a>.</p>
- <p>For keyword matching (force word break before and after the matched
- string), use <a href="pyparsing.Keyword-class.html"
- class="link">Keyword</a> or <a
- href="pyparsing.CaselessKeyword-class.html"
- class="link">CaselessKeyword</a>.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Literal-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">matchString</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Literal.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Literal-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Literal.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">matchString</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Literal.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Literal.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.MatchFirst</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class MatchFirst
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.MatchFirst-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class MatchFirst</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.ParseExpression-class.html">ParseExpression</a> --+
- |
- <strong class="uidshort">MatchFirst</strong>
-</pre>
-
-<hr />
-<p>Requires that at least one <code>ParseExpression</code> is found. If
- two expressions match, the first one listed is the one that will match.
- May be constructed using the <code>'|'</code> operator.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # construct MatchFirst using '|' operator
-
- # watch the order of expressions to match
- number = Word(nums) | Combine(Word(nums) + '.' + Word(nums))
- print(number.searchString("123 3.1416 789")) # Fail! -> [['123'], ['3'], ['1416'], ['789']]
-
- # put more selective expression first
- number = Combine(Word(nums) + '.' + Word(nums)) | Word(nums)
- print(number.searchString("123 3.1416 789")) # Better -> [['123'], ['3.1416'], ['789']]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.MatchFirst-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">exprs</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.MatchFirst-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__ior__"></a><span class="summary-sig-name">__ior__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.__ior__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.MatchFirst-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.MatchFirst-class.html#checkRecursion" class="summary-sig-name">checkRecursion</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseExpression-class.html">ParseExpression</a></code></b>:
- <code><a href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#append">append</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">exprs</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="checkRecursion"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">checkRecursion</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#MatchFirst.checkRecursion">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#checkRecursion">ParserElement.checkRecursion</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.NoMatch</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class NoMatch
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.NoMatch-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class NoMatch</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#NoMatch">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">NoMatch</strong>
-</pre>
-
-<hr />
-<p>A token that will never match.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.NoMatch-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#NoMatch.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.NoMatch-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#NoMatch.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#NoMatch.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#NoMatch.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.NotAny</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class NotAny
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.NotAny-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class NotAny</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#NotAny">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">NotAny</strong>
-</pre>
-
-<hr />
-<p>Lookahead to disallow matching with the given parse expression.
- <code>NotAny</code> does <i>not</i> advance the parsing position within
- the input string, it only verifies that the specified parse expression
- does <i>not</i> match at the current position. Also, <code>NotAny</code>
- does <i>not</i> skip over leading whitespace. <code>NotAny</code> always
- returns a null token list. May be constructed using the '~'
- operator.</p>
- <p>Example:</p>
-<pre class="literalblock">
-
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.NotAny-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#NotAny.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.NotAny-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#NotAny.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.NotAny-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#NotAny.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#NotAny.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#NotAny.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#NotAny.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.OneOrMore</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class OneOrMore
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.OneOrMore-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class OneOrMore</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#OneOrMore">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- _MultipleMatch --+
- |
- <strong class="uidshort">OneOrMore</strong>
-</pre>
-
-<hr />
-<p>Repetition of one or more of the given expression.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- expr - expression that must match one or more times
- </li>
- <li>
- stopOn - (default=<code>None</code>) - expression for a terminating
- sentinel (only required if the sentinel would ordinarily match the
- repetition expression)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- data_word = Word(alphas)
- label = data_word + FollowedBy(':')
- attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join))
-
- text = "shape: SQUARE posn: upper left color: BLACK"
- OneOrMore(attr_expr).parseString(text).pprint() # Fail! read 'color' as data instead of next label -> [['shape', 'SQUARE color']]
-
- # use stopOn attribute for OneOrMore to avoid reading label string as part of the data
- attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join))
- OneOrMore(attr_expr).parseString(text).pprint() # Better -> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'BLACK']]
-
- # could also be written as
- (attr_expr * (1,)).parseString(text).pprint()
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.OneOrMore-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#OneOrMore.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>_MultipleMatch</code></b>:
- <code>__init__</code>,
- <code>parseImpl</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#OneOrMore.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.OnlyOnce</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class OnlyOnce
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.OnlyOnce-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class OnlyOnce</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#OnlyOnce">source code</a></span></p>
-<pre class="base-tree">
-object --+
- |
- <strong class="uidshort">OnlyOnce</strong>
-</pre>
-
-<hr />
-<p>Wrapper for parse actions, to ensure they are only called once.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.OnlyOnce-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">methodCall</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#OnlyOnce.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__call__"></a><span class="summary-sig-name">__call__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#OnlyOnce.__call__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="reset"></a><span class="summary-sig-name">reset</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#OnlyOnce.reset">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__hash__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__repr__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__str__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">methodCall</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#OnlyOnce.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Optional</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Optional
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Optional-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Optional</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Optional">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">Optional</strong>
-</pre>
-
-<hr />
-<p>Optional matching of the given expression.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- expr - expression that must match zero or more times
- </li>
- <li>
- default (optional) - value to be returned if the optional expression
- is not found.
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- # US postal code can be a 5-digit zip, plus optional 4-digit qualifier
- zip = Combine(Word(nums, exact=5) + Optional('-' + Word(nums, exact=4)))
- zip.runTests('''
- # traditional ZIP code
- 12345
-
- # ZIP+4 form
- 12101-0001
-
- # invalid ZIP
- 98765-
- ''')
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- # traditional ZIP code
- 12345
- ['12345']
-
- # ZIP+4 form
- 12101-0001
- ['12101-0001']
-
- # invalid ZIP
- 98765-
- ^
- FAIL: Expected end of text (at char 5), (line:1, col:6)
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Optional-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">default</span>=<span class="summary-sig-default">_NullToken()</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Optional.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Optional-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Optional.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Optional-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Optional.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>,
- <span class="sig-arg">default</span>=<span class="sig-default">_NullToken()</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Optional.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Optional.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Optional.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Or</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Or
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Or-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Or</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Or">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.ParseExpression-class.html">ParseExpression</a> --+
- |
- <strong class="uidshort">Or</strong>
-</pre>
-
-<hr />
-<p>Requires that at least one <code>ParseExpression</code> is found. If
- two expressions match, the expression that matches the longest string
- will be used. May be constructed using the <code>'^'</code> operator.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # construct Or using '^' operator
-
- number = Word(nums) ^ Combine(Word(nums) + '.' + Word(nums))
- print(number.searchString("123 3.1416 789"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['123'], ['3.1416'], ['789']]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Or-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">exprs</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Or.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Or-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Or.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__ixor__"></a><span class="summary-sig-name">__ixor__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Or.__ixor__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Or-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Or.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Or-class.html#checkRecursion" class="summary-sig-name">checkRecursion</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Or.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseExpression-class.html">ParseExpression</a></code></b>:
- <code><a href="pyparsing.ParseExpression-class.html#__getitem__">__getitem__</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#append">append</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseExpression-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">exprs</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Or.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Or.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Or.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="checkRecursion"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">checkRecursion</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Or.checkRecursion">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#checkRecursion">ParserElement.checkRecursion</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseBaseException</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseBaseException
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseBaseException-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseBaseException</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-exceptions.BaseException --+
- |
- exceptions.Exception --+
- |
- <strong class="uidshort">ParseBaseException</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.ParseException-class.html">ParseException</a></li><li>, <a href="pyparsing.ParseFatalException-class.html">ParseFatalException</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>base exception class for all parsing runtime exceptions</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseBaseException-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">pstr</span>,
- <span class="summary-sig-arg">loc</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">msg</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">elem</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseBaseException-class.html#__getattr__" class="summary-sig-name">__getattr__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">aname</span>)</span><br />
- supported attributes by name are:</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__getattr__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseBaseException-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseBaseException-class.html#__repr__" class="summary-sig-name">__repr__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- repr(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__repr__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="markInputline"></a><span class="summary-sig-name">markInputline</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">markerString</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">>!<</code><code class="variable-quote">'</code></span>)</span><br />
- Extracts the exception line from the input string, and marks the
- location of the exception with a special symbol.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.markInputline">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__dir__"></a><span class="summary-sig-name">__dir__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__dir__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>:
- <code>__new__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>__delattr__</code>,
- <code>__getattribute__</code>,
- <code>__getitem__</code>,
- <code>__getslice__</code>,
- <code>__reduce__</code>,
- <code>__setattr__</code>,
- <code>__setstate__</code>,
- <code>__unicode__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__format__</code>,
- <code>__hash__</code>,
- <code>__reduce_ex__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>args</code>,
- <code>message</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">pstr</span>,
- <span class="sig-arg">loc</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">msg</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">elem</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__getattr__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__getattr__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">aname</span>)</span>
- <br /><em class="fname">(Qualification operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__getattr__">source code</a></span>
- </td>
- </tr></table>
-
- <p>supported attributes by name are:</p>
- <ul>
- <li>
- lineno - returns the line number of the exception text
- </li>
- <li>
- col - returns the column number of the exception text
- </li>
- <li>
- line - returns the line containing the exception text
- </li>
- </ul>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__repr__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__repr__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseBaseException.__repr__">source code</a></span>
- </td>
- </tr></table>
-
- <p>repr(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__repr__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseElementEnhance</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseElementEnhance
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseElementEnhance-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseElementEnhance</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <strong class="uidshort">ParseElementEnhance</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.TokenConverter-class.html">TokenConverter</a></li><li>, <a href="pyparsing.FollowedBy-class.html">FollowedBy</a></li><li>, <a href="pyparsing.Forward-class.html">Forward</a></li><li>, <a href="pyparsing.NotAny-class.html">NotAny</a></li><li class="private">, _MultipleMatch</li><li>, <a href="pyparsing.Optional-class.html">Optional</a></li><li>, <a href="pyparsing.SkipTo-class.html">SkipTo</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Abstract subclass of <code>ParserElement</code>, for combining and
- post-processing parsed tokens.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace" class="summary-sig-name">leaveWhitespace</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.leaveWhitespace">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#ignore" class="summary-sig-name">ignore</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or
- other ignorable patterns.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.ignore">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#streamline" class="summary-sig-name">streamline</a>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.streamline">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion" class="summary-sig-name">checkRecursion</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#validate" class="summary-sig-name">validate</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">validateTrace</span>=<span class="summary-sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span><br />
- Check defined expressions for valid structure, check for infinite
- recursive definitions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.validate">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseElementEnhance-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="leaveWhitespace"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">leaveWhitespace</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.leaveWhitespace">source code</a></span>
- </td>
- </tr></table>
-
- <p>Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern. This is normally only
- used internally by the pyparsing module, but may be needed in some
- whitespace-sensitive grammars.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#leaveWhitespace">ParserElement.leaveWhitespace</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="ignore"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">ignore</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.ignore">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or other
- ignorable patterns.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']
-
- patt.ignore(cStyleComment)
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#ignore">ParserElement.ignore</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="streamline"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">streamline</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.streamline">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#streamline">ParserElement.streamline</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="checkRecursion"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">checkRecursion</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.checkRecursion">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#checkRecursion">ParserElement.checkRecursion</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="validate"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">validate</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">validateTrace</span>=<span class="sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.validate">source code</a></span>
- </td>
- </tr></table>
-
- <p>Check defined expressions for valid structure, check for infinite
- recursive definitions.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#validate">ParserElement.validate</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseElementEnhance.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseException</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseException
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseException-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseException</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseException">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-exceptions.BaseException --+
- |
- exceptions.Exception --+
- |
- <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a> --+
- |
- <strong class="uidshort">ParseException</strong>
-</pre>
-
-<hr />
-<p>Exception thrown when parse expressions don't match class; supported
- attributes by name are:</p>
- <ul>
- <li>
- lineno - returns the line number of the exception text
- </li>
- <li>
- col - returns the column number of the exception text
- </li>
- <li>
- line - returns the line containing the exception text
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- try:
- Word(nums).setName("integer").parseString("ABC")
- except ParseException as pe:
- print(pe)
- print("column: {}".format(pe.col))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- Expected integer (at char 0), (line:1, col:1)
- column: 1
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a></code></b>:
- <code><a href="pyparsing.ParseBaseException-class.html#__dir__">__dir__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__getattr__">__getattr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__init__">__init__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#markInputline">markInputline</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>:
- <code>__new__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>__delattr__</code>,
- <code>__getattribute__</code>,
- <code>__getitem__</code>,
- <code>__getslice__</code>,
- <code>__reduce__</code>,
- <code>__setattr__</code>,
- <code>__setstate__</code>,
- <code>__unicode__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__format__</code>,
- <code>__hash__</code>,
- <code>__reduce_ex__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>args</code>,
- <code>message</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseExpression</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseExpression
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseExpression-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseExpression</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <strong class="uidshort">ParseExpression</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.And-class.html">And</a></li><li>, <a href="pyparsing.Each-class.html">Each</a></li><li>, <a href="pyparsing.MatchFirst-class.html">MatchFirst</a></li><li>, <a href="pyparsing.Or-class.html">Or</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Abstract subclass of ParserElement, for combining and post-processing
- parsed tokens.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">exprs</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__getitem__"></a><span class="summary-sig-name">__getitem__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">i</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.__getitem__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="append"></a><span class="summary-sig-name">append</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.append">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#leaveWhitespace" class="summary-sig-name">leaveWhitespace</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Extends <code>leaveWhitespace</code> defined in base class, and also
- invokes <code>leaveWhitespace</code> on all contained expressions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.leaveWhitespace">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#ignore" class="summary-sig-name">ignore</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or
- other ignorable patterns.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.ignore">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#streamline" class="summary-sig-name">streamline</a>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.streamline">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#setResultsName" class="summary-sig-name">setResultsName</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">name</span>,
- <span class="summary-sig-arg">listAllMatches</span>=<span class="summary-sig-default">False</span>)</span><br />
- Define name for referencing matching tokens as a nested attribute of
- the returned parse results.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.setResultsName">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#validate" class="summary-sig-name">validate</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">validateTrace</span>=<span class="summary-sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span><br />
- Check defined expressions for valid structure, check for infinite
- recursive definitions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.validate">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseExpression-class.html#copy" class="summary-sig-name">copy</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Make a copy of this <code>ParserElement</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.copy">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">exprs</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="leaveWhitespace"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">leaveWhitespace</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.leaveWhitespace">source code</a></span>
- </td>
- </tr></table>
-
- <p>Extends <code>leaveWhitespace</code> defined in base class, and also
- invokes <code>leaveWhitespace</code> on all contained expressions.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#leaveWhitespace">ParserElement.leaveWhitespace</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="ignore"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">ignore</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.ignore">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or other
- ignorable patterns.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']
-
- patt.ignore(cStyleComment)
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#ignore">ParserElement.ignore</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="streamline"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">streamline</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.streamline">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#streamline">ParserElement.streamline</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="setResultsName"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setResultsName</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">name</span>,
- <span class="sig-arg">listAllMatches</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.setResultsName">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define name for referencing matching tokens as a nested attribute of
- the returned parse results. NOTE: this returns a *copy* of the original
- <code>ParserElement</code> object; this is so that the client can define
- a basic element, such as an integer, and reference it in multiple places
- with different names.</p>
- <p>You can also set results names using the abbreviated syntax,
- <code>expr("name")</code> in place of
- <code>expr.setResultsName("name")</code> - see <a
- href="pyparsing.ParserElement-class.html#__call__"
- class="link"><i>__call__</i></a>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- date_str = (integer.setResultsName("year") + '/'
- + integer.setResultsName("month") + '/'
- + integer.setResultsName("day"))
-
- # equivalent form:
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#setResultsName">ParserElement.setResultsName</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="validate"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">validate</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">validateTrace</span>=<span class="sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.validate">source code</a></span>
- </td>
- </tr></table>
-
- <p>Check defined expressions for valid structure, check for infinite
- recursive definitions.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#validate">ParserElement.validate</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="copy"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">copy</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseExpression.copy">source code</a></span>
- </td>
- </tr></table>
-
- <p>Make a copy of this <code>ParserElement</code>. Useful for defining
- different parse actions for the same parsing pattern, using copies of the
- original parse element.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")
- integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-
- print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [5120, 100, 655360, 268435456]
-</pre>
- <p>Equivalent form of <code>expr.copy()</code> is just
- <code>expr()</code>:</p>
-<pre class="literalblock">
- integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-</pre>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#copy">ParserElement.copy</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseFatalException</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseFatalException
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseFatalException-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseFatalException</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseFatalException">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-exceptions.BaseException --+
- |
- exceptions.Exception --+
- |
- <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a> --+
- |
- <strong class="uidshort">ParseFatalException</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.ParseSyntaxException-class.html">ParseSyntaxException</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>user-throwable exception thrown when inconsistent parse content is
- found; stops all parsing immediately</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a></code></b>:
- <code><a href="pyparsing.ParseBaseException-class.html#__dir__">__dir__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__getattr__">__getattr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__init__">__init__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#markInputline">markInputline</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>:
- <code>__new__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>__delattr__</code>,
- <code>__getattribute__</code>,
- <code>__getitem__</code>,
- <code>__getslice__</code>,
- <code>__reduce__</code>,
- <code>__setattr__</code>,
- <code>__setstate__</code>,
- <code>__unicode__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__format__</code>,
- <code>__hash__</code>,
- <code>__reduce_ex__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>args</code>,
- <code>message</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseResults</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseResults
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseResults-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseResults</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults">source code</a></span></p>
-<pre class="base-tree">
-object --+
- |
- <strong class="uidshort">ParseResults</strong>
-</pre>
-
-<hr />
-<p>Structured parse results, to provide multiple means of access to the
- parsed data:</p>
- <ul>
- <li>
- as a list (<code>len(results)</code>)
- </li>
- <li>
- by list index (<code>results[0], results[1]</code>, etc.)
- </li>
- <li>
- by attribute (<code>results.<resultsName></code> - see <a
- href="pyparsing.ParserElement-class.html#setResultsName"
- class="link">ParserElement.setResultsName</a>)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- date_str = (integer.setResultsName("year") + '/'
- + integer.setResultsName("month") + '/'
- + integer.setResultsName("day"))
- # equivalent form:
- # date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- # parseString returns a ParseResults object
- result = date_str.parseString("1999/12/31")
-
- def test(s, fn=repr):
- print("%s -> %s" % (s, fn(eval(s))))
- test("list(result)")
- test("result[0]")
- test("result['month']")
- test("result.day")
- test("'month' in result")
- test("'minutes' in result")
- test("result.dump()", str)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- list(result) -> ['1999', '/', '12', '/', '31']
- result[0] -> '1999'
- result['month'] -> '12'
- result.day -> '31'
- 'month' in result -> True
- 'minutes' in result -> False
- result.dump() -> ['1999', '/', '12', '/', '31']
- - day: 31
- - month: 12
- - year: 1999
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">toklist</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">name</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">asList</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">modal</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">isinstance</span>=<span class="summary-sig-default"><built-in function isinstance></span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__getitem__"></a><span class="summary-sig-name">__getitem__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">i</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__getitem__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__setitem__"></a><span class="summary-sig-name">__setitem__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">k</span>,
- <span class="summary-sig-arg">v</span>,
- <span class="summary-sig-arg">isinstance</span>=<span class="summary-sig-default"><built-in function isinstance></span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__setitem__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__delitem__"></a><span class="summary-sig-name">__delitem__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">i</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__delitem__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__contains__"></a><span class="summary-sig-name">__contains__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">k</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__contains__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__len__"></a><span class="summary-sig-name">__len__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__len__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__bool__"></a><span class="summary-sig-name">__bool__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__bool__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__nonzero__"></a><span class="summary-sig-name">__nonzero__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__bool__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__iter__"></a><span class="summary-sig-name">__iter__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__iter__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__reversed__"></a><span class="summary-sig-name">__reversed__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__reversed__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="iterkeys"></a><span class="summary-sig-name">iterkeys</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns an iterator of all named result keys (Python 2.x only).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults._iterkeys">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="itervalues"></a><span class="summary-sig-name">itervalues</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns an iterator of all named result values (Python 2.x only).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults._itervalues">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="iteritems"></a><span class="summary-sig-name">iteritems</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns an iterator of all named result key-value tuples (Python 2.x
- only).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults._iteritems">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="keys"></a><span class="summary-sig-name">keys</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns all named result keys (as a list in Python 2.x, as an
- iterator in Python 3.x).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.keys">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="values"></a><span class="summary-sig-name">values</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns all named result values (as a list in Python 2.x, as an
- iterator in Python 3.x).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.values">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="items"></a><span class="summary-sig-name">items</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns all named result key-values (as a list of tuples in Python
- 2.x, as an iterator in Python 3.x).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.items">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="haskeys"></a><span class="summary-sig-name">haskeys</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Since keys() returns an iterator, this method is helpful in bypassing
- code that looks for the existence of any defined results names.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.haskeys">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#pop" class="summary-sig-name">pop</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">*args</span>,
- <span class="summary-sig-arg">**kwargs</span>)</span><br />
- Removes and returns item at specified index
- (default=<code>last</code>).</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.pop">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#get" class="summary-sig-name">get</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">key</span>,
- <span class="summary-sig-arg">defaultValue</span>=<span class="summary-sig-default">None</span>)</span><br />
- Returns named result matching the given key, or if there is no such
- name, then returns the given <code>defaultValue</code> or
- <code>None</code> if no <code>defaultValue</code> is specified.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.get">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#insert" class="summary-sig-name">insert</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">index</span>,
- <span class="summary-sig-arg">insStr</span>)</span><br />
- Inserts new element at location index in the list of parsed tokens.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.insert">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#append" class="summary-sig-name">append</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">item</span>)</span><br />
- Add single element to end of ParseResults list of elements.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.append">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#extend" class="summary-sig-name">extend</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">itemseq</span>)</span><br />
- Add sequence of elements to end of ParseResults list of elements.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.extend">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="clear"></a><span class="summary-sig-name">clear</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Clear all elements and results names.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.clear">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__getattr__"></a><span class="summary-sig-name">__getattr__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">name</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__getattr__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__add__"></a><span class="summary-sig-name">__add__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__add__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__iadd__"></a><span class="summary-sig-name">__iadd__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__iadd__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__radd__"></a><span class="summary-sig-name">__radd__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__radd__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#__repr__" class="summary-sig-name">__repr__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- repr(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__repr__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#asList" class="summary-sig-name">asList</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns the parse results as a nested list of matching tokens, all
- converted to strings.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asList">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#asDict" class="summary-sig-name">asDict</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns the named parse results as a nested dictionary.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asDict">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="copy"></a><span class="summary-sig-name">copy</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns a new copy of a <code>ParseResults</code> object.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.copy">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#asXML" class="summary-sig-name">asXML</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">doctag</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">namedItemsOnly</span>=<span class="summary-sig-default">False</span>,
- <span class="summary-sig-arg">indent</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">formatted</span>=<span class="summary-sig-default">True</span>)</span><br />
- (Deprecated) Returns the parse results as XML.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asXML">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#getName" class="summary-sig-name">getName</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Returns the results name for this token expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.getName">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#dump" class="summary-sig-name">dump</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">indent</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">depth</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">full</span>=<span class="summary-sig-default">True</span>)</span><br />
- Diagnostic method for listing out the contents of a
- <code>ParseResults</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.dump">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#pprint" class="summary-sig-name">pprint</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">*args</span>,
- <span class="summary-sig-arg">**kwargs</span>)</span><br />
- Pretty-printer for parsed results as a list, using the
- <code>pprint</code> module.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.pprint">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__getstate__"></a><span class="summary-sig-name">__getstate__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__getstate__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__setstate__"></a><span class="summary-sig-name">__setstate__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">state</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__setstate__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__getnewargs__"></a><span class="summary-sig-name">__getnewargs__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__getnewargs__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__dir__"></a><span class="summary-sig-name">__dir__</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__dir__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__hash__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type">a new object with type S, a subtype of T</span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParseResults-class.html#__new__" class="summary-sig-name">__new__</a>(<span class="summary-sig-arg">cls</span>,
- <span class="summary-sig-arg">toklist</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">name</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">asList</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">modal</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__new__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__new__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span class="sig-arg">cls</span>,
- <span class="sig-arg">toklist</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">name</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">asList</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">modal</span>=<span class="sig-default">True</span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__new__">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Returns: a new object with type S, a subtype of T</dt>
- <dt>Overrides:
- object.__new__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">toklist</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">name</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">asList</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">modal</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">isinstance</span>=<span class="sig-default"><built-in function isinstance></span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="pop"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">pop</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">*args</span>,
- <span class="sig-arg">**kwargs</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.pop">source code</a></span>
- </td>
- </tr></table>
-
- <p>Removes and returns item at specified index
- (default=<code>last</code>). Supports both <code>list</code> and
- <code>dict</code> semantics for <code>pop()</code>. If passed no argument
- or an integer argument, it will use <code>list</code> semantics and pop
- tokens from the list of parsed tokens. If passed a non-integer argument
- (most likely a string), it will use <code>dict</code> semantics and pop
- the corresponding value from any defined results names. A second default
- return value argument is supported, just as in
- <code>dict.pop()</code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- def remove_first(tokens):
- tokens.pop(0)
- print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']
- print(OneOrMore(Word(nums)).addParseAction(remove_first).parseString("0 123 321")) # -> ['123', '321']
-
- label = Word(alphas)
- patt = label("LABEL") + OneOrMore(Word(nums))
- print(patt.parseString("AAB 123 321").dump())
-
- # Use pop() in a parse action to remove named result (note that corresponding value is not
- # removed from list form of results)
- def remove_LABEL(tokens):
- tokens.pop("LABEL")
- return tokens
- patt.addParseAction(remove_LABEL)
- print(patt.parseString("AAB 123 321").dump())
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['AAB', '123', '321']
- - LABEL: AAB
-
- ['AAB', '123', '321']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="get"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">get</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">key</span>,
- <span class="sig-arg">defaultValue</span>=<span class="sig-default">None</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.get">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns named result matching the given key, or if there is no such
- name, then returns the given <code>defaultValue</code> or
- <code>None</code> if no <code>defaultValue</code> is specified.</p>
- <p>Similar to <code>dict.get()</code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- result = date_str.parseString("1999/12/31")
- print(result.get("year")) # -> '1999'
- print(result.get("hour", "not specified")) # -> 'not specified'
- print(result.get("hour")) # -> None
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="insert"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">insert</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">index</span>,
- <span class="sig-arg">insStr</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.insert">source code</a></span>
- </td>
- </tr></table>
-
- <p>Inserts new element at location index in the list of parsed
- tokens.</p>
- <p>Similar to <code>list.insert()</code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']
-
- # use a parse action to insert the parse location in the front of the parsed results
- def insert_locn(locn, tokens):
- tokens.insert(0, locn)
- print(OneOrMore(Word(nums)).addParseAction(insert_locn).parseString("0 123 321")) # -> [0, '0', '123', '321']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="append"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">append</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">item</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.append">source code</a></span>
- </td>
- </tr></table>
-
- <p>Add single element to end of ParseResults list of elements.</p>
- <p>Example:</p>
-<pre class="literalblock">
- print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321']
-
- # use a parse action to compute the sum of the parsed integers, and add it to the end
- def append_sum(tokens):
- tokens.append(sum(map(int, tokens)))
- print(OneOrMore(Word(nums)).addParseAction(append_sum).parseString("0 123 321")) # -> ['0', '123', '321', 444]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="extend"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">extend</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">itemseq</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.extend">source code</a></span>
- </td>
- </tr></table>
-
- <p>Add sequence of elements to end of ParseResults list of elements.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
-
- # use a parse action to append the reverse of the matched strings, to make a palindrome
- def make_palindrome(tokens):
- tokens.extend(reversed([t[::-1] for t in tokens]))
- return ''.join(tokens)
- print(patt.addParseAction(make_palindrome).parseString("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl'
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__repr__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__repr__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__repr__">source code</a></span>
- </td>
- </tr></table>
-
- <p>repr(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__repr__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="asList"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">asList</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asList">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns the parse results as a nested list of matching tokens, all
- converted to strings.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
- result = patt.parseString("sldkj lsdkj sldkj")
- # even though the result prints in string-like form, it is actually a pyparsing ParseResults
- print(type(result), result) # -> <class 'pyparsing.ParseResults'> ['sldkj', 'lsdkj', 'sldkj']
-
- # Use asList() to create an actual list
- result_list = result.asList()
- print(type(result_list), result_list) # -> <class 'list'> ['sldkj', 'lsdkj', 'sldkj']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="asDict"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">asDict</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asDict">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns the named parse results as a nested dictionary.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- result = date_str.parseString('12/31/1999')
- print(type(result), repr(result)) # -> <class 'pyparsing.ParseResults'> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]})
-
- result_dict = result.asDict()
- print(type(result_dict), repr(result_dict)) # -> <class 'dict'> {'day': '1999', 'year': '12', 'month': '31'}
-
- # even though a ParseResults supports dict-like access, sometime you just need to have a dict
- import json
- print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable
- print(json.dumps(result.asDict())) # -> {"month": "31", "day": "1999", "year": "12"}
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="asXML"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">asXML</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">doctag</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">namedItemsOnly</span>=<span class="sig-default">False</span>,
- <span class="sig-arg">indent</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">formatted</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.asXML">source code</a></span>
- </td>
- </tr></table>
-
- <p>(Deprecated) Returns the parse results as XML. Tags are created for
- tokens and lists that have defined results names.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="getName"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">getName</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.getName">source code</a></span>
- </td>
- </tr></table>
-
- <p>Returns the results name for this token expression. Useful when
- several different expressions might match at a particular location.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d")
- house_number_expr = Suppress('#') + Word(nums, alphanums)
- user_data = (Group(house_number_expr)("house_number")
- | Group(ssn_expr)("ssn")
- | Group(integer)("age"))
- user_info = OneOrMore(user_data)
-
- result = user_info.parseString("22 111-22-3333 #221B")
- for item in result:
- print(item.getName(), ':', item[0])
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- age : 22
- ssn : 111-22-3333
- house_number : 221B
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="dump"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">dump</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">indent</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string"></code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">depth</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">full</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.dump">source code</a></span>
- </td>
- </tr></table>
-
- <p>Diagnostic method for listing out the contents of a
- <code>ParseResults</code>. Accepts an optional <code>indent</code>
- argument so that this string can be embedded in a nested display of other
- data.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- result = date_str.parseString('12/31/1999')
- print(result.dump())
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['12', '/', '31', '/', '1999']
- - day: 1999
- - month: 31
- - year: 12
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="pprint"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">pprint</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">*args</span>,
- <span class="sig-arg">**kwargs</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParseResults.pprint">source code</a></span>
- </td>
- </tr></table>
-
- <p>Pretty-printer for parsed results as a list, using the
- <code>pprint</code> module. Accepts additional positional or keyword args
- as defined for the <code>pprint.pprint</code> method. (<a
- href="http://docs.python.org/3/library/pprint.html#pprint.pprint"
- target="_top">http://docs.python.org/3/library/pprint.html#pprint.pprint</a>)</p>
- <p>Example:</p>
-<pre class="literalblock">
- ident = Word(alphas, alphanums)
- num = Word(nums)
- func = Forward()
- term = ident | num | Group('(' + func + ')')
- func <<= ident + Group(Optional(delimitedList(term)))
- result = func.parseString("fna a,b,(fnb c,d,200),100")
- result.pprint(width=40)
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['fna',
- ['a',
- 'b',
- ['(', 'fnb', ['c', 'd', '200'], ')'],
- '100']]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParseSyntaxException</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParseSyntaxException
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParseSyntaxException-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParseSyntaxException</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParseSyntaxException">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-exceptions.BaseException --+
- |
- exceptions.Exception --+
- |
- <a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a> --+
- |
- <a href="pyparsing.ParseFatalException-class.html">ParseFatalException</a> --+
- |
- <strong class="uidshort">ParseSyntaxException</strong>
-</pre>
-
-<hr />
-<p>just like <a href="pyparsing.ParseFatalException-class.html"
- class="link">ParseFatalException</a>, but thrown internally when an
- ErrorStop ('-' operator) indicates that parsing is to stop immediately
- because an unbacktrackable syntax error has been found</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseBaseException-class.html">ParseBaseException</a></code></b>:
- <code><a href="pyparsing.ParseBaseException-class.html#__dir__">__dir__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__getattr__">__getattr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__init__">__init__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseBaseException-class.html#markInputline">markInputline</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>:
- <code>__new__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>__delattr__</code>,
- <code>__getattribute__</code>,
- <code>__getitem__</code>,
- <code>__getslice__</code>,
- <code>__reduce__</code>,
- <code>__setattr__</code>,
- <code>__setstate__</code>,
- <code>__unicode__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__format__</code>,
- <code>__hash__</code>,
- <code>__reduce_ex__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>args</code>,
- <code>message</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ParserElement</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ParserElement
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ParserElement-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ParserElement</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement">source code</a></span></p>
-<pre class="base-tree">
-object --+
- |
- <strong class="uidshort">ParserElement</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.Token-class.html">Token</a></li><li>, <a href="pyparsing.ParseExpression-class.html">ParseExpression</a></li><li>, <a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Abstract base level parser element class.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#copy" class="summary-sig-name">copy</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Make a copy of this <code>ParserElement</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.copy">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setName" class="summary-sig-name">setName</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">name</span>)</span><br />
- Define name for this expression, makes debugging and exception
- messages clearer.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setName">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setResultsName" class="summary-sig-name">setResultsName</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">name</span>,
- <span class="summary-sig-arg">listAllMatches</span>=<span class="summary-sig-default">False</span>)</span><br />
- Define name for referencing matching tokens as a nested attribute of
- the returned parse results.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setResultsName">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setBreak" class="summary-sig-name">setBreak</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">breakFlag</span>=<span class="summary-sig-default">True</span>)</span><br />
- Method to invoke the Python pdb debugger when this element is about
- to be parsed.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setBreak">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setParseAction" class="summary-sig-name">setParseAction</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">*fns</span>,
- <span class="summary-sig-arg">**kwargs</span>)</span><br />
- Define one or more actions to perform when successfully matching
- parse element definition.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setParseAction">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#addParseAction" class="summary-sig-name">addParseAction</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">*fns</span>,
- <span class="summary-sig-arg">**kwargs</span>)</span><br />
- Add one or more parse actions to expression's list of parse actions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.addParseAction">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#addCondition" class="summary-sig-name">addCondition</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">*fns</span>,
- <span class="summary-sig-arg">**kwargs</span>)</span><br />
- Add a boolean predicate function to expression's list of parse
- actions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.addCondition">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setFailAction" class="summary-sig-name">setFailAction</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">fn</span>)</span><br />
- Define action to perform if parsing fails at this expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setFailAction">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="preParse"></a><span class="summary-sig-name">preParse</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.preParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="parseImpl"></a><span class="summary-sig-name">parseImpl</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="postParse"></a><span class="summary-sig-name">postParse</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">tokenlist</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.postParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="tryParse"></a><span class="summary-sig-name">tryParse</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.tryParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="canParseNext"></a><span class="summary-sig-name">canParseNext</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.canParseNext">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#parseString" class="summary-sig-name">parseString</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">parseAll</span>=<span class="summary-sig-default">False</span>)</span><br />
- Execute the parse expression with the given string.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseString">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#scanString" class="summary-sig-name">scanString</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">maxMatches</span>=<span class="summary-sig-default">2147483647</span>,
- <span class="summary-sig-arg">overlap</span>=<span class="summary-sig-default">False</span>)</span><br />
- Scan the input string for expression matches.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.scanString">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#transformString" class="summary-sig-name">transformString</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>)</span><br />
- Extension to <code><a
- href="pyparsing.ParserElement-class.html#scanString"
- class="link">scanString</a></code>, to modify matching text with
- modified tokens that may be returned from a parse action.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.transformString">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#searchString" class="summary-sig-name">searchString</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">maxMatches</span>=<span class="summary-sig-default">2147483647</span>)</span><br />
- Another extension to <code><a
- href="pyparsing.ParserElement-class.html#scanString"
- class="link">scanString</a></code>, simplifying the access to the
- tokens found to match the given parse expression.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.searchString">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#split" class="summary-sig-name">split</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">maxsplit</span>=<span class="summary-sig-default">2147483647</span>,
- <span class="summary-sig-arg">includeSeparators</span>=<span class="summary-sig-default">False</span>)</span><br />
- Generator method to split a string using the given expression as a
- separator.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.split">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__add__" class="summary-sig-name">__add__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of + operator - returns <code><a
- href="pyparsing.And-class.html" class="link">And</a></code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__add__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__radd__"></a><span class="summary-sig-name">__radd__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of + operator when left operand is not a <code><a
- href="pyparsing.ParserElement-class.html"
- class="link">ParserElement</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__radd__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__sub__"></a><span class="summary-sig-name">__sub__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of - operator, returns <code><a
- href="pyparsing.And-class.html" class="link">And</a></code> with
- error stop</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__sub__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__rsub__"></a><span class="summary-sig-name">__rsub__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of - operator when left operand is not a <code><a
- href="pyparsing.ParserElement-class.html"
- class="link">ParserElement</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__rsub__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__mul__" class="summary-sig-name">__mul__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of * operator, allows use of <code>expr * 3</code> in
- place of <code>expr + expr + expr</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__mul__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__rmul__"></a><span class="summary-sig-name">__rmul__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__rmul__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__or__"></a><span class="summary-sig-name">__or__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of | operator - returns <code><a
- href="pyparsing.MatchFirst-class.html"
- class="link">MatchFirst</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__or__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__ror__"></a><span class="summary-sig-name">__ror__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of | operator when left operand is not a <code><a
- href="pyparsing.ParserElement-class.html"
- class="link">ParserElement</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__ror__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__xor__"></a><span class="summary-sig-name">__xor__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of ^ operator - returns <code><a
- href="pyparsing.Or-class.html" class="link">Or</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__xor__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__rxor__"></a><span class="summary-sig-name">__rxor__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of ^ operator when left operand is not a <code><a
- href="pyparsing.ParserElement-class.html"
- class="link">ParserElement</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__rxor__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__and__"></a><span class="summary-sig-name">__and__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of & operator - returns <code><a
- href="pyparsing.Each-class.html" class="link">Each</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__and__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__rand__"></a><span class="summary-sig-name">__rand__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Implementation of & operator when left operand is not a <code><a
- href="pyparsing.ParserElement-class.html"
- class="link">ParserElement</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__rand__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__invert__"></a><span class="summary-sig-name">__invert__</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Implementation of ~ operator - returns <code><a
- href="pyparsing.NotAny-class.html" class="link">NotAny</a></code></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__invert__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__call__" class="summary-sig-name">__call__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">name</span>=<span class="summary-sig-default">None</span>)</span><br />
- Shortcut for <code><a
- href="pyparsing.ParserElement-class.html#setResultsName"
- class="link">setResultsName</a></code>, with
- <code>listAllMatches=False</code>.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__call__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="suppress"></a><span class="summary-sig-name">suppress</span>(<span class="summary-sig-arg">self</span>)</span><br />
- Suppresses the output of this <code>ParserElement</code>; useful to
- keep punctuation from cluttering up returned output.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.suppress">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#leaveWhitespace" class="summary-sig-name">leaveWhitespace</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.leaveWhitespace">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="setWhitespaceChars"></a><span class="summary-sig-name">setWhitespaceChars</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">chars</span>)</span><br />
- Overrides the default whitespace chars</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setWhitespaceChars">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#parseWithTabs" class="summary-sig-name">parseWithTabs</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Overrides default behavior to expand <code><TAB></code>s to
- spaces before parsing the input string.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseWithTabs">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#ignore" class="summary-sig-name">ignore</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span><br />
- Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or
- other ignorable patterns.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.ignore">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="setDebugActions"></a><span class="summary-sig-name">setDebugActions</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">startAction</span>,
- <span class="summary-sig-arg">successAction</span>,
- <span class="summary-sig-arg">exceptionAction</span>)</span><br />
- Enable display of debugging messages while doing pattern matching.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setDebugActions">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setDebug" class="summary-sig-name">setDebug</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">flag</span>=<span class="summary-sig-default">True</span>)</span><br />
- Enable display of debugging messages while doing pattern matching.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setDebug">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__repr__" class="summary-sig-name">__repr__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- repr(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__repr__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="streamline"></a><span class="summary-sig-name">streamline</span>(<span class="summary-sig-arg">self</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.streamline">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="checkRecursion"></a><span class="summary-sig-name">checkRecursion</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.checkRecursion">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="validate"></a><span class="summary-sig-name">validate</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">validateTrace</span>=<span class="summary-sig-default"><code class="variable-group">[</code><code class="variable-group">]</code></span>)</span><br />
- Check defined expressions for valid structure, check for infinite
- recursive definitions.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.validate">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#parseFile" class="summary-sig-name">parseFile</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">file_or_filename</span>,
- <span class="summary-sig-arg">parseAll</span>=<span class="summary-sig-default">False</span>)</span><br />
- Execute the parse expression on the given file or filename.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseFile">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__eq__"></a><span class="summary-sig-name">__eq__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__eq__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__ne__"></a><span class="summary-sig-name">__ne__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__ne__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#__hash__" class="summary-sig-name">__hash__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- hash(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__hash__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__req__"></a><span class="summary-sig-name">__req__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__req__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__rne__"></a><span class="summary-sig-name">__rne__</span>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__rne__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#matches" class="summary-sig-name">matches</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">testString</span>,
- <span class="summary-sig-arg">parseAll</span>=<span class="summary-sig-default">True</span>)</span><br />
- Method for quick testing of a parser against a test string.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.matches">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#runTests" class="summary-sig-name">runTests</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">tests</span>,
- <span class="summary-sig-arg">parseAll</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">comment</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">#</code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">fullDump</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">printResults</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">failureTests</span>=<span class="summary-sig-default">False</span>)</span><br />
- Execute the parse expression on a series of test strings, showing
- each test, the parsed results or where the parse failed.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.runTests">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars" class="summary-sig-name">setDefaultWhitespaceChars</a>(<span class="summary-sig-arg">chars</span>)</span><br />
- Overrides the default whitespace chars</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setDefaultWhitespaceChars">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing" class="summary-sig-name">inlineLiteralsUsing</a>(<span class="summary-sig-arg">cls</span>)</span><br />
- Set class to be used for inclusion of string literals into a parser.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.inlineLiteralsUsing">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="resetCache"></a><span class="summary-sig-name">resetCache</span>()</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.resetCache">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ParserElement-class.html#enablePackrat" class="summary-sig-name">enablePackrat</a>(<span class="summary-sig-arg">cache_size_limit</span>=<span class="summary-sig-default">128</span>)</span><br />
- Enables "packrat" parsing, which adds memoizing to the
- parsing logic.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.enablePackrat">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="DEFAULT_WHITE_CHARS"></a><span class="summary-name">DEFAULT_WHITE_CHARS</span> = <code title="'''
-\t\r'''"><code class="variable-quote">'</code><code class="variable-string"> \n\t\r</code><code class="variable-quote">'</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="verbose_stacktrace"></a><span class="summary-name">verbose_stacktrace</span> = <code title="False">False</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="packrat_cache"></a><span class="summary-name">packrat_cache</span> = <code title="{}"><code class="variable-group">{</code><code class="variable-group">}</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="packrat_cache_lock"></a><span class="summary-name">packrat_cache_lock</span> = <code title="<_RLock owner=None count=0>"><_RLock owner=None count=0></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="packrat_cache_stats"></a><span class="summary-name">packrat_cache_stats</span> = <code title="[0, 0]"><code class="variable-group">[</code>0<code class="variable-op">, </code>0<code class="variable-group">]</code></code>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="setDefaultWhitespaceChars"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setDefaultWhitespaceChars</span>(<span class="sig-arg">chars</span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setDefaultWhitespaceChars">source code</a></span>
- </td>
- </tr></table>
-
- <p>Overrides the default whitespace chars</p>
- <p>Example:</p>
-<pre class="literalblock">
- # default whitespace chars are space, <TAB> and newline
- OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def', 'ghi', 'jkl']
-
- # change to just treat newline as significant
- ParserElement.setDefaultWhitespaceChars(" \t")
- OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="inlineLiteralsUsing"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">inlineLiteralsUsing</span>(<span class="sig-arg">cls</span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.inlineLiteralsUsing">source code</a></span>
- </td>
- </tr></table>
-
- <p>Set class to be used for inclusion of string literals into a
- parser.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # default literal class used is Literal
- integer = Word(nums)
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31']
-
-
- # change to Suppress
- ParserElement.inlineLiteralsUsing(Suppress)
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-
- date_str.parseString("1999/12/31") # -> ['1999', '12', '31']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="copy"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">copy</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.copy">source code</a></span>
- </td>
- </tr></table>
-
- <p>Make a copy of this <code>ParserElement</code>. Useful for defining
- different parse actions for the same parsing pattern, using copies of the
- original parse element.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K")
- integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-
- print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [5120, 100, 655360, 268435456]
-</pre>
- <p>Equivalent form of <code>expr.copy()</code> is just
- <code>expr()</code>:</p>
-<pre class="literalblock">
- integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M")
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setName"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setName</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">name</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setName">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define name for this expression, makes debugging and exception
- messages clearer.</p>
- <p>Example:</p>
-<pre class="literalblock">
- Word(nums).parseString("ABC") # -> Exception: Expected W:(0123...) (at char 0), (line:1, col:1)
- Word(nums).setName("integer").parseString("ABC") # -> Exception: Expected integer (at char 0), (line:1, col:1)
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setResultsName"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setResultsName</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">name</span>,
- <span class="sig-arg">listAllMatches</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setResultsName">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define name for referencing matching tokens as a nested attribute of
- the returned parse results. NOTE: this returns a *copy* of the original
- <code>ParserElement</code> object; this is so that the client can define
- a basic element, such as an integer, and reference it in multiple places
- with different names.</p>
- <p>You can also set results names using the abbreviated syntax,
- <code>expr("name")</code> in place of
- <code>expr.setResultsName("name")</code> - see <a
- href="pyparsing.ParserElement-class.html#__call__"
- class="link"><i>__call__</i></a>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- date_str = (integer.setResultsName("year") + '/'
- + integer.setResultsName("month") + '/'
- + integer.setResultsName("day"))
-
- # equivalent form:
- date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setBreak"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setBreak</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">breakFlag</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setBreak">source code</a></span>
- </td>
- </tr></table>
-
- <p>Method to invoke the Python pdb debugger when this element is about to
- be parsed. Set <code>breakFlag</code> to True to enable, False to
- disable.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setParseAction"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setParseAction</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">*fns</span>,
- <span class="sig-arg">**kwargs</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setParseAction">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define one or more actions to perform when successfully matching parse
- element definition. Parse action fn is a callable method with 0-3
- arguments, called as <code>fn(s,loc,toks)</code>,
- <code>fn(loc,toks)</code>, <code>fn(toks)</code>, or just
- <code>fn()</code>, where:</p>
- <ul>
- <li>
- s = the original string being parsed (see note below)
- </li>
- <li>
- loc = the location of the matching substring
- </li>
- <li>
- toks = a list of the matched tokens, packaged as a <code><a
- href="pyparsing.ParseResults-class.html"
- class="link">ParseResults</a></code> object
- </li>
- </ul>
- <p>If the functions in fns modify the tokens, they can return them as the
- return value from fn, and the modified list of tokens will replace the
- original. Otherwise, fn does not need to return any value.</p>
- <p>Optional keyword arguments:</p>
- <ul>
- <li>
- callDuringTry = (default=<code>False</code>) indicate if parse action
- should be run during lookaheads and alternate testing
- </li>
- </ul>
- <p>Note: the default parsing behavior is to expand tabs in the input
- string before starting the parsing process. See <a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link"><i>parseString</i></a> for more information on parsing
- strings containing <code><TAB></code>s, and suggested methods to
- maintain a consistent view of the parsed string, the parse location, and
- line and column positions within the parsed string.</p>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums)
- date_str = integer + '/' + integer + '/' + integer
-
- date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31']
-
- # use parse action to convert to ints at parse time
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- date_str = integer + '/' + integer + '/' + integer
-
- # note that integer fields are now ints, not strings
- date_str.parseString("1999/12/31") # -> [1999, '/', 12, '/', 31]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="addParseAction"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">addParseAction</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">*fns</span>,
- <span class="sig-arg">**kwargs</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.addParseAction">source code</a></span>
- </td>
- </tr></table>
-
- <p>Add one or more parse actions to expression's list of parse actions.
- See <a href="pyparsing.ParserElement-class.html#setParseAction"
- class="link"><i>setParseAction</i></a>.</p>
- <p>See examples in <a href="pyparsing.ParserElement-class.html#copy"
- class="link"><i>copy</i></a>.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="addCondition"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">addCondition</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">*fns</span>,
- <span class="sig-arg">**kwargs</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.addCondition">source code</a></span>
- </td>
- </tr></table>
-
- <p>Add a boolean predicate function to expression's list of parse
- actions. See <a href="pyparsing.ParserElement-class.html#setParseAction"
- class="link"><i>setParseAction</i></a> for function call signatures.
- Unlike <code>setParseAction</code>, functions passed to
- <code>addCondition</code> need to return boolean success/fail of the
- condition.</p>
- <p>Optional keyword arguments:</p>
- <ul>
- <li>
- message = define a custom message to be used in the raised exception
- </li>
- <li>
- fatal = if True, will raise ParseFatalException to stop parsing
- immediately; otherwise will raise ParseException
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- integer = Word(nums).setParseAction(lambda toks: int(toks[0]))
- year_int = integer.copy()
- year_int.addCondition(lambda toks: toks[0] >= 2000, message="Only support years 2000 and later")
- date_str = year_int + '/' + integer + '/' + integer
-
- result = date_str.parseString("1999/12/31") # -> Exception: Only support years 2000 and later (at char 0), (line:1, col:1)
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setFailAction"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setFailAction</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">fn</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setFailAction">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define action to perform if parsing fails at this expression. Fail
- acton fn is a callable function that takes the arguments
- <code>fn(s,loc,expr,err)</code> where:</p>
- <ul>
- <li>
- s = string being parsed
- </li>
- <li>
- loc = location where expression match was attempted and failed
- </li>
- <li>
- expr = the parse expression that failed
- </li>
- <li>
- err = the exception thrown
- </li>
- </ul>
- <p>The function returns no value. It may throw <code><a
- href="pyparsing.ParseFatalException-class.html"
- class="link">ParseFatalException</a></code> if it is desired to stop
- parsing immediately.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="enablePackrat"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">enablePackrat</span>(<span class="sig-arg">cache_size_limit</span>=<span class="sig-default">128</span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.enablePackrat">source code</a></span>
- </td>
- </tr></table>
-
- <p>Enables "packrat" parsing, which adds memoizing to the
- parsing logic. Repeated parse attempts at the same string location (which
- happens often in many complex grammars) can immediately return a cached
- value, instead of re-executing parsing/validating code. Memoizing is
- done of both valid results and parsing exceptions.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- cache_size_limit - (default=<code>128</code>) - if an integer value
- is provided will limit the size of the packrat cache; if None is
- passed, then the cache size will be unbounded; if 0 is passed, the
- cache will be effectively disabled.
- </li>
- </ul>
- <p>This speedup may break existing programs that use parse actions that
- have side-effects. For this reason, packrat parsing is disabled when you
- first import pyparsing. To activate the packrat feature, your program
- must call the class method <code>ParserElement.enablePackrat()</code>.
- If your program uses <code>psyco</code> to "compile as you go",
- you must call <code>enablePackrat</code> before calling
- <code>psyco.full()</code>. If you do not do this, Python will crash.
- For best results, call <code>enablePackrat()</code> immediately after
- importing pyparsing.</p>
- <p>Example:</p>
-<pre class="literalblock">
- import pyparsing
- pyparsing.ParserElement.enablePackrat()
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="parseString"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseString</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">parseAll</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseString">source code</a></span>
- </td>
- </tr></table>
-
- <p>Execute the parse expression with the given string. This is the main
- interface to the client code, once the complete expression has been
- built.</p>
- <p>If you want the grammar to require that the entire input string be
- successfully parsed, then set <code>parseAll</code> to True (equivalent
- to ending the grammar with <code><a href="pyparsing.StringEnd-class.html"
- class="link">StringEnd()</a></code>).</p>
- <p>Note: <code>parseString</code> implicitly calls
- <code>expandtabs()</code> on the input string, in order to report proper
- column numbers in parse actions. If the input string contains tabs and
- the grammar uses parse actions that use the <code>loc</code> argument to
- index into the string being parsed, you can ensure you have a consistent
- view of the input string by:</p>
- <ul>
- <li>
- calling <code>parseWithTabs</code> on your grammar before calling
- <code>parseString</code> (see <a
- href="pyparsing.ParserElement-class.html#parseWithTabs"
- class="link"><i>parseWithTabs</i></a>)
- </li>
- <li>
- define your parse action using the full <code>(s,loc,toks)</code>
- signature, and reference the input string using the parse action's
- <code>s</code> argument
- </li>
- <li>
- explictly expand the tabs in your input string before calling
- <code>parseString</code>
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- Word('a').parseString('aaaaabaaa') # -> ['aaaaa']
- Word('a').parseString('aaaaabaaa', parseAll=True) # -> Exception: Expected end of text
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="scanString"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">scanString</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">maxMatches</span>=<span class="sig-default">2147483647</span>,
- <span class="sig-arg">overlap</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.scanString">source code</a></span>
- </td>
- </tr></table>
-
- <p>Scan the input string for expression matches. Each match will return
- the matching tokens, start location, and end location. May be called
- with optional <code>maxMatches</code> argument, to clip scanning after
- 'n' matches are found. If <code>overlap</code> is specified, then
- overlapping matches will be reported.</p>
- <p>Note that the start and end locations are reported relative to the
- string being parsed. See <a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link"><i>parseString</i></a> for more information on parsing
- strings with embedded tabs.</p>
- <p>Example:</p>
-<pre class="literalblock">
- source = "sldjf123lsdjjkf345sldkjf879lkjsfd987"
- print(source)
- for tokens,start,end in Word(alphas).scanString(source):
- print(' '*start + '^'*(end-start))
- print(' '*start + tokens[0])
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- sldjf123lsdjjkf345sldkjf879lkjsfd987
- ^^^^^
- sldjf
- ^^^^^^^
- lsdjjkf
- ^^^^^^
- sldkjf
- ^^^^^^
- lkjsfd
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="transformString"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">transformString</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.transformString">source code</a></span>
- </td>
- </tr></table>
-
- <p>Extension to <code><a
- href="pyparsing.ParserElement-class.html#scanString"
- class="link">scanString</a></code>, to modify matching text with modified
- tokens that may be returned from a parse action. To use
- <code>transformString</code>, define a grammar and attach a parse action
- to it that modifies the returned token list. Invoking
- <code>transformString()</code> on a target string will then scan for
- matches, and replace the matched text patterns according to the logic in
- the parse action. <code>transformString()</code> returns the resulting
- transformed string.</p>
- <p>Example:</p>
-<pre class="literalblock">
- wd = Word(alphas)
- wd.setParseAction(lambda toks: toks[0].title())
-
- print(wd.transformString("now is the winter of our discontent made glorious summer by this sun of york."))
-</pre>
- <p>Prints:</p>
-<pre class="literalblock">
- Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York.
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="searchString"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">searchString</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">maxMatches</span>=<span class="sig-default">2147483647</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.searchString">source code</a></span>
- </td>
- </tr></table>
-
- <p>Another extension to <code><a
- href="pyparsing.ParserElement-class.html#scanString"
- class="link">scanString</a></code>, simplifying the access to the tokens
- found to match the given parse expression. May be called with optional
- <code>maxMatches</code> argument, to clip searching after 'n' matches are
- found.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # a capitalized word starts with an uppercase letter, followed by zero or more lowercase letters
- cap_word = Word(alphas.upper(), alphas.lower())
-
- print(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity"))
-
- # the sum() builtin can be used to merge results into a single ParseResults object
- print(sum(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity")))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['More'], ['Iron'], ['Lead'], ['Gold'], ['I'], ['Electricity']]
- ['More', 'Iron', 'Lead', 'Gold', 'I', 'Electricity']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="split"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">split</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">maxsplit</span>=<span class="sig-default">2147483647</span>,
- <span class="sig-arg">includeSeparators</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.split">source code</a></span>
- </td>
- </tr></table>
-
- <p>Generator method to split a string using the given expression as a
- separator. May be called with optional <code>maxsplit</code> argument, to
- limit the number of splits; and the optional
- <code>includeSeparators</code> argument (default=<code>False</code>), if
- the separating matching text should be included in the split results.</p>
- <p>Example:</p>
-<pre class="literalblock">
- punc = oneOf(list(".,;:/-!?"))
- print(list(punc.split("This, this?, this sentence, is badly punctuated!")))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['This', ' this', '', ' this sentence', ' is badly punctuated', '']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__add__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__add__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- <br /><em class="fname">(Addition operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__add__">source code</a></span>
- </td>
- </tr></table>
-
- <p>Implementation of + operator - returns <code><a
- href="pyparsing.And-class.html" class="link">And</a></code>. Adding
- strings to a ParserElement converts them to <a
- href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a>s by default.</p>
- <p>Example:</p>
-<pre class="literalblock">
- greet = Word(alphas) + "," + Word(alphas) + "!"
- hello = "Hello, World!"
- print (hello, "->", greet.parseString(hello))
-</pre>
- <p>Prints:</p>
-<pre class="literalblock">
- Hello, World! -> ['Hello', ',', 'World', '!']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__mul__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__mul__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__mul__">source code</a></span>
- </td>
- </tr></table>
-
- <p>Implementation of * operator, allows use of <code>expr * 3</code> in
- place of <code>expr + expr + expr</code>. Expressions may also me
- multiplied by a 2-integer tuple, similar to <code>{min,max}</code>
- multipliers in regular expressions. Tuples may also include
- <code>None</code> as in:</p>
- <ul>
- <li>
- <code>expr*(n,None)</code> or <code>expr*(n,)</code> is equivalent to
- <code>expr*n + <a href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a>(expr)</code> (read as "at least n
- instances of <code>expr</code>")
- </li>
- <li>
- <code>expr*(None,n)</code> is equivalent to <code>expr*(0,n)</code>
- (read as "0 to n instances of <code>expr</code>")
- </li>
- <li>
- <code>expr*(None,None)</code> is equivalent to <code><a
- href="pyparsing.ZeroOrMore-class.html"
- class="link">ZeroOrMore</a>(expr)</code>
- </li>
- <li>
- <code>expr*(1,None)</code> is equivalent to <code><a
- href="pyparsing.OneOrMore-class.html"
- class="link">OneOrMore</a>(expr)</code>
- </li>
- </ul>
- <p>Note that <code>expr*(None,n)</code> does not raise an exception if
- more than n exprs exist in the input stream; that is,
- <code>expr*(None,n)</code> does not enforce a maximum number of expr
- occurrences. If this behavior is desired, then write <code>expr*(None,n)
- + ~expr</code></p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__call__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__call__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">name</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Call operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__call__">source code</a></span>
- </td>
- </tr></table>
-
- <p>Shortcut for <code><a
- href="pyparsing.ParserElement-class.html#setResultsName"
- class="link">setResultsName</a></code>, with
- <code>listAllMatches=False</code>.</p>
- <p>If <code>name</code> is given with a trailing <code>'*'</code>
- character, then <code>listAllMatches</code> will be passed as
- <code>True</code>.</p>
- <p>If <code>name</code> is omitted, same as calling <code><a
- href="pyparsing.ParserElement-class.html#copy"
- class="link">copy</a></code>.</p>
- <p>Example:</p>
-<pre class="literalblock">
- # these are equivalent
- userdata = Word(alphas).setResultsName("name") + Word(nums+"-").setResultsName("socsecno")
- userdata = Word(alphas)("name") + Word(nums+"-")("socsecno")
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="leaveWhitespace"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">leaveWhitespace</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.leaveWhitespace">source code</a></span>
- </td>
- </tr></table>
-
- <p>Disables the skipping of whitespace before matching the characters in
- the <code>ParserElement</code>'s defined pattern. This is normally only
- used internally by the pyparsing module, but may be needed in some
- whitespace-sensitive grammars.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="parseWithTabs"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseWithTabs</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseWithTabs">source code</a></span>
- </td>
- </tr></table>
-
- <p>Overrides default behavior to expand <code><TAB></code>s to
- spaces before parsing the input string. Must be called before
- <code>parseString</code> when the input grammar contains elements that
- match <code><TAB></code> characters.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="ignore"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">ignore</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.ignore">source code</a></span>
- </td>
- </tr></table>
-
- <p>Define expression to be ignored (e.g., comments) while doing pattern
- matching; may be called repeatedly, to define multiple comment or other
- ignorable patterns.</p>
- <p>Example:</p>
-<pre class="literalblock">
- patt = OneOrMore(Word(alphas))
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj']
-
- patt.ignore(cStyleComment)
- patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="setDebug"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">setDebug</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">flag</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.setDebug">source code</a></span>
- </td>
- </tr></table>
-
- <p>Enable display of debugging messages while doing pattern matching. Set
- <code>flag</code> to True to enable, False to disable.</p>
- <p>Example:</p>
-<pre class="literalblock">
- wd = Word(alphas).setName("alphaword")
- integer = Word(nums).setName("numword")
- term = wd | integer
-
- # turn on debugging for wd
- wd.setDebug()
-
- OneOrMore(term).parseString("abc 123 xyz 890")
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- Match alphaword at loc 0(1,1)
- Matched alphaword -> ['abc']
- Match alphaword at loc 3(1,4)
- Exception raised:Expected alphaword (at char 4), (line:1, col:5)
- Match alphaword at loc 7(1,8)
- Matched alphaword -> ['xyz']
- Match alphaword at loc 11(1,12)
- Exception raised:Expected alphaword (at char 12), (line:1, col:13)
- Match alphaword at loc 15(1,16)
- Exception raised:Expected alphaword (at char 15), (line:1, col:16)
-</pre>
- <p>The output shown is that produced by the default debug actions -
- custom debug actions can be specified using <a
- href="pyparsing.ParserElement-class.html#setDebugActions"
- class="link">setDebugActions</a>. Prior to attempting to match the
- <code>wd</code> expression, the debugging message <code>"Match
- <exprname> at loc <n>(<line>,<col>)"</code>
- is shown. Then if the parse succeeds, a <code>"Matched"</code>
- message is shown, or an <code>"Exception raised"</code> message
- is shown. Also note the use of <a
- href="pyparsing.ParserElement-class.html#setName"
- class="link">setName</a> to assign a human-readable name to the
- expression, which makes debugging and exception messages easier to
- understand - for instance, the default name created for the
- <code>Word</code> expression without calling <code>setName</code> is
- <code>"W:(ABCD...)"</code>.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__repr__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__repr__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__repr__">source code</a></span>
- </td>
- </tr></table>
-
- <p>repr(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__repr__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseFile"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseFile</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">file_or_filename</span>,
- <span class="sig-arg">parseAll</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.parseFile">source code</a></span>
- </td>
- </tr></table>
-
- <p>Execute the parse expression on the given file or filename. If a
- filename is specified (instead of a file object), the entire file is
- opened, read, and closed before parsing.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="__hash__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__hash__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Hashing function)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.__hash__">source code</a></span>
- </td>
- </tr></table>
-
- <p>hash(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__hash__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="matches"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">matches</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">testString</span>,
- <span class="sig-arg">parseAll</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.matches">source code</a></span>
- </td>
- </tr></table>
-
- <p>Method for quick testing of a parser against a test string. Good for
- simple inline microtests of sub expressions while building up larger
- parser.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- testString - to test against this expression for a match
- </li>
- <li>
- parseAll - (default=<code>True</code>) - flag to pass to <code><a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link">parseString</a></code> when running tests
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- expr = Word(nums)
- assert expr.matches("100")
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="runTests"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">runTests</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">tests</span>,
- <span class="sig-arg">parseAll</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">comment</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">#</code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">fullDump</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">printResults</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">failureTests</span>=<span class="sig-default">False</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ParserElement.runTests">source code</a></span>
- </td>
- </tr></table>
-
- <p>Execute the parse expression on a series of test strings, showing each
- test, the parsed results or where the parse failed. Quick and easy way to
- run a parse expression against a list of sample strings.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- tests - a list of separate test strings, or a multiline string of
- test strings
- </li>
- <li>
- parseAll - (default=<code>True</code>) - flag to pass to <code><a
- href="pyparsing.ParserElement-class.html#parseString"
- class="link">parseString</a></code> when running tests
- </li>
- <li>
- comment - (default=<code>'#'</code>) - expression for indicating
- embedded comments in the test string; pass None to disable comment
- filtering
- </li>
- <li>
- fullDump - (default=<code>True</code>) - dump results as list
- followed by results names in nested outline; if False, only dump
- nested list
- </li>
- <li>
- printResults - (default=<code>True</code>) prints test output to
- stdout
- </li>
- <li>
- failureTests - (default=<code>False</code>) indicates if these tests
- are expected to fail parsing
- </li>
- </ul>
- <p>Returns: a (success, results) tuple, where success indicates that all
- tests succeeded (or failed if <code>failureTests</code> is True), and the
- results contain a list of lines of each test's output</p>
- <p>Example:</p>
-<pre class="literalblock">
- number_expr = pyparsing_common.number.copy()
-
- result = number_expr.runTests('''
- # unsigned integer
- 100
- # negative integer
- -100
- # float with scientific notation
- 6.02e23
- # integer with scientific notation
- 1e-12
- ''')
- print("Success" if result[0] else "Failed!")
-
- result = number_expr.runTests('''
- # stray character
- 100Z
- # missing leading digit before '.'
- -.100
- # too many '.'
- 3.14.159
- ''', failureTests=True)
- print("Success" if result[0] else "Failed!")
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- # unsigned integer
- 100
- [100]
-
- # negative integer
- -100
- [-100]
-
- # float with scientific notation
- 6.02e23
- [6.02e+23]
-
- # integer with scientific notation
- 1e-12
- [1e-12]
-
- Success
-
- # stray character
- 100Z
- ^
- FAIL: Expected end of text (at char 3), (line:1, col:4)
-
- # missing leading digit before '.'
- -.100
- ^
- FAIL: Expected {real number with scientific notation | real number | signed integer} (at char 0), (line:1, col:1)
-
- # too many '.'
- 3.14.159
- ^
- FAIL: Expected end of text (at char 4), (line:1, col:5)
-
- Success
-</pre>
- <p>Each test string must be on a single line. If you want to test a
- string that spans multiple lines, create a test like this:</p>
-<pre class="literalblock">
- expr.runTest(r"this is a test\n of strings that spans \n 3 lines")
-</pre>
- <p>(Note that this is a raw string literal, you must include the leading
- 'r'.)</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.QuotedString</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class QuotedString
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.QuotedString-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class QuotedString</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#QuotedString">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">QuotedString</strong>
-</pre>
-
-<hr />
-<p>Token for matching strings that are delimited by quoting
- characters.</p>
- <p>Defined with the following parameters:</p>
- <ul>
- <li>
- quoteChar - string of one or more characters defining the quote
- delimiting string
- </li>
- <li>
- escChar - character to escape quotes, typically backslash
- (default=<code>None</code>)
- </li>
- <li>
- escQuote - special quote sequence to escape an embedded quote string
- (such as SQL's "" to escape an embedded ")
- (default=<code>None</code>)
- </li>
- <li>
- multiline - boolean indicating whether quotes can span multiple lines
- (default=<code>False</code>)
- </li>
- <li>
- unquoteResults - boolean indicating whether the matched text should
- be unquoted (default=<code>True</code>)
- </li>
- <li>
- endQuoteChar - string of one or more characters defining the end of
- the quote delimited string (default=<code>None</code> => same as
- quoteChar)
- </li>
- <li>
- convertWhitespaceEscapes - convert escaped whitespace
- (<code>'\t'</code>, <code>'\n'</code>, etc.) to actual whitespace
- (default=<code>True</code>)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- qs = QuotedString('"')
- print(qs.searchString('lsjdf "This is the quote" sldjf'))
- complex_qs = QuotedString('{{', endQuoteChar='}}')
- print(complex_qs.searchString('lsjdf {{This is the "quote"}} sldjf'))
- sql_qs = QuotedString('"', escQuote='""')
- print(sql_qs.searchString('lsjdf "This is the quote with ""embedded"" quotes" sldjf'))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [['This is the quote']]
- [['This is the "quote"']]
- [['This is the quote with "embedded" quotes']]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.QuotedString-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">quoteChar</span>,
- <span class="summary-sig-arg">escChar</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">escQuote</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">multiline</span>=<span class="summary-sig-default">False</span>,
- <span class="summary-sig-arg">unquoteResults</span>=<span class="summary-sig-default">True</span>,
- <span class="summary-sig-arg">endQuoteChar</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">convertWhitespaceEscapes</span>=<span class="summary-sig-default">True</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.QuotedString-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.QuotedString-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">quoteChar</span>,
- <span class="sig-arg">escChar</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">escQuote</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">multiline</span>=<span class="sig-default">False</span>,
- <span class="sig-arg">unquoteResults</span>=<span class="sig-default">True</span>,
- <span class="sig-arg">endQuoteChar</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">convertWhitespaceEscapes</span>=<span class="sig-default">True</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#QuotedString.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Recipes</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Recipes
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Recipes-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Recipes</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Recipes">source code</a></span></p>
-<p>Here are some common low-level expressions that may be useful in
- jump-starting your parser development:</p>
-<pre class="literalblock">
-
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="convertToInteger"></a><span class="summary-sig-name">convertToInteger</span>(<span class="summary-sig-arg">t</span>)</span><br />
- Parse action for converting parsed integers to Python int</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Recipes.convertToInteger">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="convertToFloat"></a><span class="summary-sig-name">convertToFloat</span>(<span class="summary-sig-arg">t</span>)</span><br />
- Parse action for converting parsed numbers to Python float</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Recipes.convertToFloat">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="integer"></a><span class="summary-name">integer</span> = <code title="integer">integer</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="signedInteger"></a><span class="summary-name">signedInteger</span> = <code title="signed integer">signed integer</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="real"></a><span class="summary-name">real</span> = <code title="real number">real number</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="sciReal"></a><span class="summary-name">sciReal</span> = <code title="real number with scientfic notation">real number with scientfic notation</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Recipes-class.html#numeric" class="summary-name">numeric</a> = <code title="{real number with scientfic notation | real number | integer | signed \
-integer}">{real number with scientfic notation | real number |<code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="number"></a><span class="summary-name">number</span> = <code title="number">number</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="identifier"></a><span class="summary-name">identifier</span> = <code title="identifier">identifier</code>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLE DETAILS ==================== -->
-<a name="section-ClassVariableDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variable Details</span></td>
-</tr>
-</table>
-<a name="numeric"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">numeric</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-{real number with scientfic notation | real number | integer | signed <span class="variable-linewrap"><img src="crarr.png" alt="\" /></span>
-integer}
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Thu May 12 11:30:21 2016
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.RecursiveGrammarException</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class RecursiveGrammarException
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.RecursiveGrammarException-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class RecursiveGrammarException</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#RecursiveGrammarException">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-exceptions.BaseException --+
- |
- exceptions.Exception --+
- |
- <strong class="uidshort">RecursiveGrammarException</strong>
-</pre>
-
-<hr />
-<p>exception thrown by <a
- href="pyparsing.ParserElement-class.html#validate"
- class="link">ParserElement.validate</a> if the grammar could be
- improperly recursive</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.RecursiveGrammarException-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">parseElementList</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#RecursiveGrammarException.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.RecursiveGrammarException-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#RecursiveGrammarException.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>:
- <code>__new__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>__delattr__</code>,
- <code>__getattribute__</code>,
- <code>__getitem__</code>,
- <code>__getslice__</code>,
- <code>__reduce__</code>,
- <code>__repr__</code>,
- <code>__setattr__</code>,
- <code>__setstate__</code>,
- <code>__unicode__</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__format__</code>,
- <code>__hash__</code>,
- <code>__reduce_ex__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>:
- <code>args</code>,
- <code>message</code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">parseElementList</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#RecursiveGrammarException.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#RecursiveGrammarException.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Regex</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Regex
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Regex-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Regex</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Regex">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">Regex</strong>
-</pre>
-
-<hr />
-<p>Token for matching strings that match a given regular expression.
- Defined with string specifying the regular expression in a form
- recognized by the inbuilt Python re module. If the given regex contains
- named groups (defined using <code>(?P<name>...)</code>), these will
- be preserved as named parse results.</p>
- <p>Example:</p>
-<pre class="literalblock">
- realnum = Regex(r"[+-]?\d+\.\d*")
- date = Regex(r'(?P<year>\d{4})-(?P<month>\d\d?)-(?P<day>\d\d?)')
- # ref: http://stackoverflow.com/questions/267399/how-do-you-match-only-valid-roman-numerals-with-a-regular-expression
- roman = Regex(r"M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})")
-</pre>
-
-<!-- ==================== NESTED CLASSES ==================== -->
-<a name="section-NestedClasses"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Nested Classes</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.Regex.compiledREtype-class.html" class="summary-name">compiledREtype</a><br />
- Compiled regular expression objects
- </td>
- </tr>
-</table>
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">pattern</span>,
- <span class="summary-sig-arg">flags</span>=<span class="summary-sig-default">0</span>)</span><br />
- The parameters <code>pattern</code> and <code>flags</code> are passed
- to the <code>re.compile()</code> function as-is.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Regex.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Regex.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Regex.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">pattern</span>,
- <span class="sig-arg">flags</span>=<span class="sig-default">0</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Regex.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>The parameters <code>pattern</code> and <code>flags</code> are passed
- to the <code>re.compile()</code> function as-is. See the Python
- <code>re</code> module for an explanation of the acceptable patterns and
- flags.</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Regex.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Regex.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:55 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Regex.compiledREtype</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- <a href="pyparsing.Regex-class.html">Class Regex</a> ::
- Class compiledREtype
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Regex.compiledREtype-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class compiledREtype</h1><p class="nomargin-top"></p>
-<pre class="base-tree">
-object --+
- |
- <strong class="uidshort">pyparsing.Regex.compiledREtype</strong>
-</pre>
-
-<hr />
-<p>Compiled regular expression objects</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__copy__"></a><span class="summary-sig-name">__copy__</span>(<span class="summary-sig-arg">...</span>)</span></td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="__deepcopy__"></a><span class="summary-sig-name">__deepcopy__</span>(<span class="summary-sig-arg">...</span>)</span></td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex.compiledREtype-class.html#findall" class="summary-sig-name">findall</a>(<span class="summary-sig-arg">...</span>)</span><br />
- findall(string[, pos[, endpos]]) --> list.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex.compiledREtype-class.html#finditer" class="summary-sig-name">finditer</a>(<span class="summary-sig-arg">...</span>)</span><br />
- finditer(string[, pos[, endpos]]) --> iterator.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex.compiledREtype-class.html#match" class="summary-sig-name">match</a>(<span class="summary-sig-arg">...</span>)</span><br />
- match(string[, pos[, endpos]]) --> match object or None.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="scanner"></a><span class="summary-sig-name">scanner</span>(<span class="summary-sig-arg">...</span>)</span></td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex.compiledREtype-class.html#search" class="summary-sig-name">search</a>(<span class="summary-sig-arg">...</span>)</span><br />
- search(string[, pos[, endpos]]) --> match object or None.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Regex.compiledREtype-class.html#split" class="summary-sig-name">split</a>(<span class="summary-sig-arg">...</span>)</span><br />
- split(string[, maxsplit = 0]) --> list.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="sub"></a><span class="summary-sig-name">sub</span>(<span class="summary-sig-arg">...</span>)</span><br />
- sub(repl, string[, count = 0]) --> newstring Return the string
- obtained by replacing the leftmost non-overlapping occurrences of
- pattern in string by the replacement repl.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="subn"></a><span class="summary-sig-name">subn</span>(<span class="summary-sig-arg">repl</span>,
- <span class="summary-sig-arg">string</span>,
- <span class="summary-sig-arg">count</span>=<span class="summary-sig-default">... = 0) --> (newstring</span>,
- <span class="summary-sig-arg">number of subs</span>)</span><br />
- Return the tuple (new_string, number_of_subs_made) found by replacing
- the leftmost non-overlapping occurrences of pattern with the
- replacement repl.</td>
- <td align="right" valign="top">
-
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__hash__</code>,
- <code>__init__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__repr__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__str__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="flags"></a><span class="summary-name">flags</span>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="groupindex"></a><span class="summary-name">groupindex</span>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="groups"></a><span class="summary-name">groups</span>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="pattern"></a><span class="summary-name">pattern</span>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="findall"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">findall</span>(<span class="sig-arg">...</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- >
- </td>
- </tr></table>
-
- <p>findall(string[, pos[, endpos]]) --> list. Return a list of all
- non-overlapping matches of pattern in string.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="finditer"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">finditer</span>(<span class="sig-arg">...</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- >
- </td>
- </tr></table>
-
- <p>finditer(string[, pos[, endpos]]) --> iterator. Return an iterator
- over all non-overlapping matches for the RE pattern in string. For each
- match, the iterator returns a match object.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="match"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">match</span>(<span class="sig-arg">...</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- >
- </td>
- </tr></table>
-
- <p>match(string[, pos[, endpos]]) --> match object or None. Matches
- zero or more characters at the beginning of the string</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="search"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">search</span>(<span class="sig-arg">...</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- >
- </td>
- </tr></table>
-
- <p>search(string[, pos[, endpos]]) --> match object or None. Scan
- through string looking for a match, and return a corresponding match
- object instance. Return None if no position in the string matches.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="split"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">split</span>(<span class="sig-arg">...</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- >
- </td>
- </tr></table>
-
- <p>split(string[, maxsplit = 0]) --> list. Split string by the
- occurrences of pattern.</p>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.SkipTo</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class SkipTo
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.SkipTo-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class SkipTo</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#SkipTo">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">SkipTo</strong>
-</pre>
-
-<hr />
-<p>Token for skipping over all undefined text until the matched
- expression is found.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- expr - target expression marking the end of the data to be skipped
- </li>
- <li>
- include - (default=<code>False</code>) if True, the target expression
- is also parsed (the skipped text and target expression are returned
- as a 2-element list).
- </li>
- <li>
- ignore - (default=<code>None</code>) used to define grammars
- (typically quoted strings and comments) that might contain false
- matches to the target expression
- </li>
- <li>
- failOn - (default=<code>None</code>) define expressions that are not
- allowed to be included in the skipped test; if found before the
- target expression is found, the SkipTo is not a match
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- report = '''
- Outstanding Issues Report - 1 Jan 2000
-
- # | Severity | Description | Days Open
- -----+----------+-------------------------------------------+-----------
- 101 | Critical | Intermittent system crash | 6
- 94 | Cosmetic | Spelling error on Login ('log|n') | 14
- 79 | Minor | System slow when running too many reports | 47
- '''
- integer = Word(nums)
- SEP = Suppress('|')
- # use SkipTo to simply match everything up until the next SEP
- # - ignore quoted strings, so that a '|' character inside a quoted string does not match
- # - parse action will call token.strip() for each matched token, i.e., the description body
- string_data = SkipTo(SEP, ignore=quotedString)
- string_data.setParseAction(tokenMap(str.strip))
- ticket_expr = (integer("issue_num") + SEP
- + string_data("sev") + SEP
- + string_data("desc") + SEP
- + integer("days_open"))
-
- for tkt in ticket_expr.searchString(report):
- print tkt.dump()
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['101', 'Critical', 'Intermittent system crash', '6']
- - days_open: 6
- - desc: Intermittent system crash
- - issue_num: 101
- - sev: Critical
- ['94', 'Cosmetic', "Spelling error on Login ('log|n')", '14']
- - days_open: 14
- - desc: Spelling error on Login ('log|n')
- - issue_num: 94
- - sev: Cosmetic
- ['79', 'Minor', 'System slow when running too many reports', '47']
- - days_open: 47
- - desc: System slow when running too many reports
- - issue_num: 79
- - sev: Minor
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.SkipTo-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">other</span>,
- <span class="summary-sig-arg">include</span>=<span class="summary-sig-default">False</span>,
- <span class="summary-sig-arg">ignore</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">failOn</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#SkipTo.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.SkipTo-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#SkipTo.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">other</span>,
- <span class="sig-arg">include</span>=<span class="sig-default">False</span>,
- <span class="sig-arg">ignore</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">failOn</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#SkipTo.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#SkipTo.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.StringEnd</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class StringEnd
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.StringEnd-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class StringEnd</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#StringEnd">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">StringEnd</strong>
-</pre>
-
-<hr />
-<p>Matches if current position is at the end of the parse string</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.StringEnd-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#StringEnd.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.StringEnd-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#StringEnd.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#StringEnd.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#StringEnd.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.StringStart</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class StringStart
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.StringStart-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class StringStart</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#StringStart">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">StringStart</strong>
-</pre>
-
-<hr />
-<p>Matches if current position is at the beginning of the parse
- string</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.StringStart-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#StringStart.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.StringStart-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#StringStart.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#StringStart.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#StringStart.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Suppress</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Suppress
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Suppress-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Suppress</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Suppress">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <a href="pyparsing.TokenConverter-class.html">TokenConverter</a> --+
- |
- <strong class="uidshort">Suppress</strong>
-</pre>
-
-<hr />
-<p>Converter for ignoring the results of a parsed expression.</p>
- <p>Example:</p>
-<pre class="literalblock">
- source = "a, b, c,d"
- wd = Word(alphas)
- wd_list1 = wd + ZeroOrMore(',' + wd)
- print(wd_list1.parseString(source))
-
- # often, delimiters that are useful during parsing are just in the
- # way afterward - use Suppress to keep them out of the parsed output
- wd_list2 = wd + ZeroOrMore(Suppress(',') + wd)
- print(wd_list2.parseString(source))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- ['a', ',', 'b', ',', 'c', ',', 'd']
- ['a', 'b', 'c', 'd']
-</pre>
- <p>(See also <a href="pyparsing-module.html#delimitedList"
- class="link">delimitedList</a>.)</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Suppress-class.html#postParse" class="summary-sig-name">postParse</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">tokenlist</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Suppress.postParse">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Suppress-class.html#suppress" class="summary-sig-name">suppress</a>(<span class="summary-sig-arg">self</span>)</span><br />
- Suppresses the output of this <code>ParserElement</code>; useful to
- keep punctuation from cluttering up returned output.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Suppress.suppress">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.TokenConverter-class.html">TokenConverter</a></code></b>:
- <code><a href="pyparsing.TokenConverter-class.html#__init__">__init__</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="postParse"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">postParse</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">tokenlist</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Suppress.postParse">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#postParse">ParserElement.postParse</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="suppress"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">suppress</span>(<span class="sig-arg">self</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Suppress.suppress">source code</a></span>
- </td>
- </tr></table>
-
- <p>Suppresses the output of this <code>ParserElement</code>; useful to
- keep punctuation from cluttering up returned output.</p>
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#suppress">ParserElement.suppress</a>
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Token</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Token
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Token-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Token</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Token">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <strong class="uidshort">Token</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li class="private"><a href="pyparsing.Literal-class.html" onclick="show_private();">Literal</a></li><li>, <a href="pyparsing.Empty-class.html">Empty</a></li><li>, <a href="pyparsing.Keyword-class.html">Keyword</a></li><li>, <a href="pyparsing.CharsNotIn-class.html">CharsNotIn</a></li><li>, <a href="pyparsing.CloseMatch-class.html">CloseMatch</a></li><li class="private">, _PositionToken</li><li>, <a href="pyparsing.NoMatch-class.html">NoMatch</a></li><li>, <a href="pyparsing.QuotedString-class.html">QuotedString</a></li><li>, <a href="pyparsing.Regex-class.html">Regex</a></li><li>, <a href="pyparsing.White-class.html">White</a></li><li>, <a href="pyparsing.Word-class.html">Word</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Abstract <code>ParserElement</code> subclass, for defining atomic
- matching patterns.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Token-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Token.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Token.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.TokenConverter</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class TokenConverter
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.TokenConverter-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class TokenConverter</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#TokenConverter">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- <strong class="uidshort">TokenConverter</strong>
-</pre>
-
-<dl><dt>Known Subclasses:</dt>
-<dd>
- <ul class="subclass-list">
-<li><a href="pyparsing.Combine-class.html">Combine</a></li><li>, <a href="pyparsing.Dict-class.html">Dict</a></li><li>, <a href="pyparsing.Group-class.html">Group</a></li><li>, <a href="pyparsing.Suppress-class.html">Suppress</a></li> </ul>
-</dd></dl>
-
-<hr />
-<p>Abstract subclass of <code>ParseExpression</code>, for converting
- parsed results.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.TokenConverter-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">savelist</span>=<span class="summary-sig-default">False</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#TokenConverter.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#parseImpl">parseImpl</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>,
- <span class="sig-arg">savelist</span>=<span class="sig-default">False</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#TokenConverter.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.White</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class White
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.White-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class White</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#White">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">White</strong>
-</pre>
-
-<hr />
-<p>Special matching class for matching whitespace. Normally, whitespace
- is ignored by pyparsing grammars. This class is included when some
- whitespace structures are significant. Define with a string containing
- the whitespace characters to be matched; default is <code>"
- \t\r\n"</code>. Also takes optional <code>min</code>,
- <code>max</code>, and <code>exact</code> arguments, as defined for the
- <code><a href="pyparsing.Word-class.html" class="link">Word</a></code>
- class.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.White-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">ws</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string"> \t\r\n</code><code class="variable-quote">'</code></span>,
- <span class="summary-sig-arg">min</span>=<span class="summary-sig-default">1</span>,
- <span class="summary-sig-arg">max</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">exact</span>=<span class="summary-sig-default">0</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#White.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.White-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#White.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.White-class.html#whiteStrs" class="summary-name">whiteStrs</a> = <code title="{'\t': '<TAB>',
- '''
-''': '<LF>',
- '\x0c': '<FF>',
- '\r': '<CR>',
- ' ': '<SPC>'}"><code class="variable-group">{</code><code class="variable-quote">'</code><code class="variable-string">\t</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><TAB></code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">\n</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><LF></code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">\x0c</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><FF></code><code class="variable-quote">'</code><code class="variable-op">, </code><code class="variable-quote">'</code><code class="variable-string">\r</code><code class="variable-quote">'</code><code class="variable-ellipsis">...</code></code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">ws</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string"> \t\r\n</code><code class="variable-quote">'</code></span>,
- <span class="sig-arg">min</span>=<span class="sig-default">1</span>,
- <span class="sig-arg">max</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">exact</span>=<span class="sig-default">0</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#White.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#White.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== CLASS VARIABLE DETAILS ==================== -->
-<a name="section-ClassVariableDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variable Details</span></td>
-</tr>
-</table>
-<a name="whiteStrs"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">whiteStrs</h3>
-
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-<code class="variable-group">{</code><code class="variable-quote">'</code><code class="variable-string">\t</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><TAB></code><code class="variable-quote">'</code><code class="variable-op">,</code>
- <code class="variable-quote">'''</code><code class="variable-string"></code>
-<code class="variable-string"></code><code class="variable-quote">'''</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><LF></code><code class="variable-quote">'</code><code class="variable-op">,</code>
- <code class="variable-quote">'</code><code class="variable-string">\x0c</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><FF></code><code class="variable-quote">'</code><code class="variable-op">,</code>
- <code class="variable-quote">'</code><code class="variable-string">\r</code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><CR></code><code class="variable-quote">'</code><code class="variable-op">,</code>
- <code class="variable-quote">'</code><code class="variable-string"> </code><code class="variable-quote">'</code><code class="variable-op">: </code><code class="variable-quote">'</code><code class="variable-string"><SPC></code><code class="variable-quote">'</code><code class="variable-group">}</code>
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.Word</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class Word
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.Word-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class Word</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#Word">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- <strong class="uidshort">Word</strong>
-</pre>
-
-<hr />
-<p>Token for matching words composed of allowed character sets. Defined
- with string containing all allowed initial characters, an optional string
- containing allowed body characters (if omitted, defaults to the initial
- character set), and an optional minimum, maximum, and/or exact length.
- The default value for <code>min</code> is 1 (a minimum value < 1 is
- not valid); the default values for <code>max</code> and
- <code>exact</code> are 0, meaning no maximum or exact length restriction.
- An optional <code>excludeChars</code> parameter can list characters that
- might be found in the input <code>bodyChars</code> string; useful to
- define a word of all printables except for one or two characters, for
- instance.</p>
- <p><a href="pyparsing-module.html#srange" class="link">srange</a> is
- useful for defining custom character set strings for defining
- <code>Word</code> expressions, using range notation from regular
- expression character sets.</p>
- <p>A common mistake is to use <code>Word</code> to match a specific
- literal string, as in <code>Word("Address")</code>. Remember
- that <code>Word</code> uses the string argument to define <i>sets</i> of
- matchable characters. This expression would match "Add",
- "AAA", "dAred", or any other word made up of the
- characters 'A', 'd', 'r', 'e', and 's'. To match an exact literal string,
- use <a href="pyparsing.Literal-class.html" class="link"
- onclick="show_private();">Literal</a> or <a
- href="pyparsing.Keyword-class.html" class="link">Keyword</a>.</p>
- <p>pyparsing includes helper strings for building Words:</p>
- <ul>
- <li>
- <a href="pyparsing-module.html#alphas" class="link">alphas</a>
- </li>
- <li>
- <a href="pyparsing-module.html#nums" class="link">nums</a>
- </li>
- <li>
- <a href="pyparsing-module.html#alphanums" class="link">alphanums</a>
- </li>
- <li>
- <a href="pyparsing-module.html#hexnums" class="link">hexnums</a>
- </li>
- <li>
- <a href="pyparsing-module.html#alphas8bit"
- class="link">alphas8bit</a> (alphabetic characters in ASCII range
- 128-255 - accented, tilded, umlauted, etc.)
- </li>
- <li>
- <a href="pyparsing-module.html#punc8bit" class="link">punc8bit</a>
- (non-alphabetic characters in ASCII range 128-255 - currency,
- symbols, superscripts, diacriticals, etc.)
- </li>
- <li>
- <a href="pyparsing-module.html#printables"
- class="link">printables</a> (any non-whitespace character)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- # a word composed of digits
- integer = Word(nums) # equivalent to Word("0123456789") or Word(srange("0-9"))
-
- # a word with a leading capital, and zero or more lowercase
- capital_word = Word(alphas.upper(), alphas.lower())
-
- # hostnames are alphanumeric, with leading alpha, and '-'
- hostname = Word(alphas, alphanums+'-')
-
- # roman numeral (not a strict parser, accepts invalid mix of characters)
- roman = Word("IVXLCDM")
-
- # any string of non-whitespace characters, except for ','
- csv_value = Word(printables, excludeChars=",")
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Word-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">initChars</span>,
- <span class="summary-sig-arg">bodyChars</span>=<span class="summary-sig-default">None</span>,
- <span class="summary-sig-arg">min</span>=<span class="summary-sig-default">1</span>,
- <span class="summary-sig-arg">max</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">exact</span>=<span class="summary-sig-default">0</span>,
- <span class="summary-sig-arg">asKeyword</span>=<span class="summary-sig-default">False</span>,
- <span class="summary-sig-arg">excludeChars</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Word.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Word-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Word.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.Word-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#Word.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="__slotnames__"></a><span class="summary-name">__slotnames__</span> = <code title="[]"><code class="variable-group">[</code><code class="variable-group">]</code></code>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">initChars</span>,
- <span class="sig-arg">bodyChars</span>=<span class="sig-default">None</span>,
- <span class="sig-arg">min</span>=<span class="sig-default">1</span>,
- <span class="sig-arg">max</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">exact</span>=<span class="sig-default">0</span>,
- <span class="sig-arg">asKeyword</span>=<span class="sig-default">False</span>,
- <span class="sig-arg">excludeChars</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Word.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Word.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#Word.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.WordEnd</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class WordEnd
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.WordEnd-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class WordEnd</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#WordEnd">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">WordEnd</strong>
-</pre>
-
-<hr />
-<p>Matches if the current position is at the end of a Word, and is not
- followed by any character in a given set of <code>wordChars</code>
- (default=<code>printables</code>). To emulate the <code>\b</code> behavior
- of regular expressions, use <code>WordEnd(alphanums)</code>.
- <code>WordEnd</code> will also match at the end of the string being
- parsed, or at the end of a line.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.WordEnd-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">wordChars</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY</code><code class="variable-ellipsis">...</code></span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#WordEnd.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.WordEnd-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#WordEnd.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">wordChars</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY</code><code class="variable-ellipsis">...</code></span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#WordEnd.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#WordEnd.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.WordStart</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class WordStart
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.WordStart-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class WordStart</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#WordStart">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
-<a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
- <a href="pyparsing.Token-class.html">Token</a> --+
- |
- _PositionToken --+
- |
- <strong class="uidshort">WordStart</strong>
-</pre>
-
-<hr />
-<p>Matches if the current position is at the beginning of a Word, and is
- not preceded by any character in a given set of <code>wordChars</code>
- (default=<code>printables</code>). To emulate the <code>\b</code> behavior
- of regular expressions, use <code>WordStart(alphanums)</code>.
- <code>WordStart</code> will also match at the beginning of the string
- being parsed, or at the beginning of a line.</p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.WordStart-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">wordChars</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY</code><code class="variable-ellipsis">...</code></span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#WordStart.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.WordStart-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#WordStart.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__str__">__str__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">wordChars</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY</code><code class="variable-ellipsis">...</code></span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#WordStart.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#WordStart.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.ZeroOrMore</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class ZeroOrMore
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.ZeroOrMore-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class ZeroOrMore</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore">source code</a></span></p>
-<pre class="base-tree">
- object --+
- |
- <a href="pyparsing.ParserElement-class.html">ParserElement</a> --+
- |
-<a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a> --+
- |
- _MultipleMatch --+
- |
- <strong class="uidshort">ZeroOrMore</strong>
-</pre>
-
-<hr />
-<p>Optional repetition of zero or more of the given expression.</p>
- <p>Parameters:</p>
- <ul>
- <li>
- expr - expression that must match zero or more times
- </li>
- <li>
- stopOn - (default=<code>None</code>) - expression for a terminating
- sentinel (only required if the sentinel would ordinarily match the
- repetition expression)
- </li>
- </ul>
- <p>Example: similar to <a href="pyparsing.OneOrMore-class.html"
- class="link">OneOrMore</a></p>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ZeroOrMore-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">expr</span>,
- <span class="summary-sig-arg">stopOn</span>=<span class="summary-sig-default">None</span>)</span><br />
- x.__init__(...) initializes x; see help(type(x)) for signature</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.__init__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ZeroOrMore-class.html#parseImpl" class="summary-sig-name">parseImpl</a>(<span class="summary-sig-arg">self</span>,
- <span class="summary-sig-arg">instring</span>,
- <span class="summary-sig-arg">loc</span>,
- <span class="summary-sig-arg">doActions</span>=<span class="summary-sig-default">True</span>)</span></td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.parseImpl">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.ZeroOrMore-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br />
- str(x)</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.__str__">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParseElementEnhance-class.html">ParseElementEnhance</a></code></b>:
- <code><a href="pyparsing.ParseElementEnhance-class.html#checkRecursion">checkRecursion</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#ignore">ignore</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#leaveWhitespace">leaveWhitespace</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#streamline">streamline</a></code>,
- <code><a href="pyparsing.ParseElementEnhance-class.html#validate">validate</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#__add__">__add__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__and__">__and__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__call__">__call__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__eq__">__eq__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__hash__">__hash__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__invert__">__invert__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__mul__">__mul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ne__">__ne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__or__">__or__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__radd__">__radd__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rand__">__rand__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__repr__">__repr__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__req__">__req__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rmul__">__rmul__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rne__">__rne__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__ror__">__ror__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rsub__">__rsub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__rxor__">__rxor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__sub__">__sub__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#__xor__">__xor__</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addCondition">addCondition</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#addParseAction">addParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#canParseNext">canParseNext</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#copy">copy</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#matches">matches</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseFile">parseFile</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseString">parseString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#parseWithTabs">parseWithTabs</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#postParse">postParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#preParse">preParse</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#runTests">runTests</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#scanString">scanString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#searchString">searchString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setBreak">setBreak</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebug">setDebug</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDebugActions">setDebugActions</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setFailAction">setFailAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setName">setName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setParseAction">setParseAction</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setResultsName">setResultsName</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setWhitespaceChars">setWhitespaceChars</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#split">split</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#suppress">suppress</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#transformString">transformString</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#tryParse">tryParse</a></code>
- </p>
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__delattr__</code>,
- <code>__format__</code>,
- <code>__getattribute__</code>,
- <code>__new__</code>,
- <code>__reduce__</code>,
- <code>__reduce_ex__</code>,
- <code>__setattr__</code>,
- <code>__sizeof__</code>,
- <code>__subclasshook__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#enablePackrat">enablePackrat</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#inlineLiteralsUsing">inlineLiteralsUsing</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#resetCache">resetCache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#setDefaultWhitespaceChars">setDefaultWhitespaceChars</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code><a href="pyparsing.ParserElement-class.html">ParserElement</a></code></b>:
- <code><a href="pyparsing.ParserElement-class.html#DEFAULT_WHITE_CHARS">DEFAULT_WHITE_CHARS</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache">packrat_cache</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_lock">packrat_cache_lock</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#packrat_cache_stats">packrat_cache_stats</a></code>,
- <code><a href="pyparsing.ParserElement-class.html#verbose_stacktrace">verbose_stacktrace</a></code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== PROPERTIES ==================== -->
-<a name="section-Properties"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Properties</span></td>
-</tr>
- <tr>
- <td colspan="2" class="summary">
- <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
- <code>__class__</code>
- </p>
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="__init__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">expr</span>,
- <span class="sig-arg">stopOn</span>=<span class="sig-default">None</span>)</span>
- <br /><em class="fname">(Constructor)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.__init__">source code</a></span>
- </td>
- </tr></table>
-
- <p>x.__init__(...) initializes x; see help(type(x)) for signature</p>
- <dl class="fields">
- <dt>Overrides:
- object.__init__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="parseImpl"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">parseImpl</span>(<span class="sig-arg">self</span>,
- <span class="sig-arg">instring</span>,
- <span class="sig-arg">loc</span>,
- <span class="sig-arg">doActions</span>=<span class="sig-default">True</span>)</span>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.parseImpl">source code</a></span>
- </td>
- </tr></table>
-
-
- <dl class="fields">
- <dt>Overrides:
- <a href="pyparsing.ParserElement-class.html#parseImpl">ParserElement.parseImpl</a>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<a name="__str__"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
- <br /><em class="fname">(Informal representation operator)</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#ZeroOrMore.__str__">source code</a></span>
- </td>
- </tr></table>
-
- <p>str(x)</p>
- <dl class="fields">
- <dt>Overrides:
- object.__str__
- <dd><em class="note">(inherited documentation)</em></dd>
- </dt>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing.pyparsing_common</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table width="100%" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td width="100%">
- <span class="breadcrumbs">
- <a href="pyparsing-module.html">Module pyparsing</a> ::
- Class pyparsing_common
- </span>
- </td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <!-- hide/show private -->
- <tr><td align="right"><span class="options"
- >[<a href="frames.html" target="_top">frames</a
- >] | <a href="pyparsing.pyparsing_common-class.html"
- target="_top">no frames</a>]</span></td></tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS DESCRIPTION ==================== -->
-<h1 class="epydoc">Class pyparsing_common</h1><p class="nomargin-top"><span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common">source code</a></span></p>
-<p>Here are some common low-level expressions that may be useful in
- jump-starting parser development:</p>
- <ul>
- <li>
- numeric forms (<a
- href="pyparsing.pyparsing_common-class.html#integer"
- class="link">integers</a>, <a
- href="pyparsing.pyparsing_common-class.html#real"
- class="link">reals</a>, <a
- href="pyparsing.pyparsing_common-class.html#sci_real"
- class="link">scientific notation</a>)
- </li>
- <li>
- common <a href="pyparsing.pyparsing_common-class.html#identifier"
- class="link">programming identifiers</a>
- </li>
- <li>
- network addresses (<a
- href="pyparsing.pyparsing_common-class.html#mac_address"
- class="link">MAC</a>, <a
- href="pyparsing.pyparsing_common-class.html#ipv4_address"
- class="link">IPv4</a>, <a
- href="pyparsing.pyparsing_common-class.html#ipv6_address"
- class="link">IPv6</a>)
- </li>
- <li>
- ISO8601 <a href="pyparsing.pyparsing_common-class.html#iso8601_date"
- class="link">dates</a> and <a
- href="pyparsing.pyparsing_common-class.html#iso8601_datetime"
- class="link">datetime</a>
- </li>
- <li>
- <a href="pyparsing.pyparsing_common-class.html#uuid"
- class="link">UUID</a>
- </li>
- <li>
- <a href="pyparsing.pyparsing_common-class.html#comma_separated_list"
- class="link">comma-separated list</a>
- </li>
- </ul>
- <p>Parse actions:</p>
- <ul>
- <li>
- <code><a
- href="pyparsing.pyparsing_common-class.html#convertToInteger"
- class="link">convertToInteger</a></code>
- </li>
- <li>
- <code><a href="pyparsing.pyparsing_common-class.html#convertToFloat"
- class="link">convertToFloat</a></code>
- </li>
- <li>
- <code><a href="pyparsing.pyparsing_common-class.html#convertToDate"
- class="link">convertToDate</a></code>
- </li>
- <li>
- <code><a
- href="pyparsing.pyparsing_common-class.html#convertToDatetime"
- class="link">convertToDatetime</a></code>
- </li>
- <li>
- <code><a href="pyparsing.pyparsing_common-class.html#stripHTMLTags"
- class="link">stripHTMLTags</a></code>
- </li>
- <li>
- <code><a href="pyparsing.pyparsing_common-class.html#upcaseTokens"
- class="link">upcaseTokens</a></code>
- </li>
- <li>
- <code><a href="pyparsing.pyparsing_common-class.html#downcaseTokens"
- class="link">downcaseTokens</a></code>
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- pyparsing_common.number.runTests('''
- # any int or real number, returned as the appropriate type
- 100
- -100
- +100
- 3.14159
- 6.02e23
- 1e-12
- ''')
-
- pyparsing_common.fnumber.runTests('''
- # any int or real number, returned as float
- 100
- -100
- +100
- 3.14159
- 6.02e23
- 1e-12
- ''')
-
- pyparsing_common.hex_integer.runTests('''
- # hex numbers
- 100
- FF
- ''')
-
- pyparsing_common.fraction.runTests('''
- # fractions
- 1/2
- -3/4
- ''')
-
- pyparsing_common.mixed_integer.runTests('''
- # mixed fractions
- 1
- 1/2
- -3/4
- 1-3/4
- ''')
-
- import uuid
- pyparsing_common.uuid.setParseAction(tokenMap(uuid.UUID))
- pyparsing_common.uuid.runTests('''
- # uuid
- 12345678-1234-5678-1234-567812345678
- ''')
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- # any int or real number, returned as the appropriate type
- 100
- [100]
-
- -100
- [-100]
-
- +100
- [100]
-
- 3.14159
- [3.14159]
-
- 6.02e23
- [6.02e+23]
-
- 1e-12
- [1e-12]
-
- # any int or real number, returned as float
- 100
- [100.0]
-
- -100
- [-100.0]
-
- +100
- [100.0]
-
- 3.14159
- [3.14159]
-
- 6.02e23
- [6.02e+23]
-
- 1e-12
- [1e-12]
-
- # hex numbers
- 100
- [256]
-
- FF
- [255]
-
- # fractions
- 1/2
- [0.5]
-
- -3/4
- [-0.75]
-
- # mixed fractions
- 1
- [1]
-
- 1/2
- [0.5]
-
- -3/4
- [-0.75]
-
- 1-3/4
- [1.75]
-
- # uuid
- 12345678-1234-5678-1234-567812345678
- [UUID('12345678-1234-5678-1234-567812345678')]
-</pre>
-
-<!-- ==================== INSTANCE METHODS ==================== -->
-<a name="section-InstanceMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Instance Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="convertToInteger"></a><span class="summary-sig-name">convertToInteger</span>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- Parse action for converting parsed integers to Python int</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToInteger">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="convertToFloat"></a><span class="summary-sig-name">convertToFloat</span>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- Parse action for converting parsed numbers to Python float</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToFloat">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== STATIC METHODS ==================== -->
-<a name="section-StaticMethods"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Static Methods</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.pyparsing_common-class.html#convertToDate" class="summary-sig-name">convertToDate</a>(<span class="summary-sig-arg">fmt</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">%Y-%m-%d</code><code class="variable-quote">'</code></span>)</span><br />
- Helper to create a parse action for converting parsed date string to
- Python datetime.date</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToDate">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.pyparsing_common-class.html#convertToDatetime" class="summary-sig-name">convertToDatetime</a>(<span class="summary-sig-arg">fmt</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">%Y-%m-%dT%H:%M:%S.%f</code><code class="variable-quote">'</code></span>)</span><br />
- Helper to create a parse action for converting parsed datetime string
- to Python datetime.datetime</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToDatetime">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a href="pyparsing.pyparsing_common-class.html#stripHTMLTags" class="summary-sig-name">stripHTMLTags</a>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">tokens</span>)</span><br />
- Parse action to remove HTML tags from web page HTML source</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.stripHTMLTags">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="upcaseTokens"></a><span class="summary-sig-name">upcaseTokens</span>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- Parse action to convert tokens to upper case.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.upcaseTokens">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><span class="summary-sig"><a name="downcaseTokens"></a><span class="summary-sig-name">downcaseTokens</span>(<span class="summary-sig-arg">s</span>,
- <span class="summary-sig-arg">l</span>,
- <span class="summary-sig-arg">t</span>)</span><br />
- Parse action to convert tokens to lower case.</td>
- <td align="right" valign="top">
- <span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.downcaseTokens">source code</a></span>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-<!-- ==================== CLASS VARIABLES ==================== -->
-<a name="section-ClassVariables"></a>
-<table class="summary" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variables</span></td>
-</tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="integer"></a><span class="summary-name">integer</span> = <code title="integer">integer</code><br />
- expression that parses an unsigned integer, returns an int
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="hex_integer"></a><span class="summary-name">hex_integer</span> = <code title="hex integer">hex integer</code><br />
- expression that parses a hexadecimal integer, returns an int
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="signed_integer"></a><span class="summary-name">signed_integer</span> = <code title="signed integer">signed integer</code><br />
- expression that parses an integer with optional leading sign, returns
- an int
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="fraction"></a><span class="summary-name">fraction</span> = <code title="fraction">fraction</code><br />
- fractional expression of an integer divided by an integer, returns a
- float
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="mixed_integer"></a><span class="summary-name">mixed_integer</span> = <code title="fraction or mixed integer-fraction">fraction or mixed integer-fraction</code><br />
- mixed integer of the form 'integer - fraction', with optional leading
- integer, returns float
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="real"></a><span class="summary-name">real</span> = <code title="real number">real number</code><br />
- expression that parses a floating point number and returns a float
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="sci_real"></a><span class="summary-name">sci_real</span> = <code title="real number with scientific notation">real number with scientific notation</code><br />
- expression that parses a floating point number with optional
- scientific notation and returns a float
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a href="pyparsing.pyparsing_common-class.html#number" class="summary-name">number</a> = <code title="{real number with scientific notation | real number | signed integer}">{real number with scientific notation | real number |<code class="variable-ellipsis">...</code></code><br />
- any numeric expression, returns the corresponding Python type
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="fnumber"></a><span class="summary-name">fnumber</span> = <code title="fnumber">fnumber</code><br />
- any int or real number, returned as float
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="identifier"></a><span class="summary-name">identifier</span> = <code title="identifier">identifier</code><br />
- typical code identifier (leading alpha or '_', followed by 0 or more
- alphas, nums, or '_')
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="ipv4_address"></a><span class="summary-name">ipv4_address</span> = <code title="IPv4 address">IPv4 address</code><br />
- IPv4 address (<code>0.0.0.0 - 255.255.255.255</code>)
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="ipv6_address"></a><span class="summary-name">ipv6_address</span> = <code title="IPv6 address">IPv6 address</code><br />
- IPv6 address (long, short, or mixed form)
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="mac_address"></a><span class="summary-name">mac_address</span> = <code title="MAC address">MAC address</code><br />
- MAC address xx:xx:xx:xx:xx (may also have '-' or '.' delimiters)
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="iso8601_date"></a><span class="summary-name">iso8601_date</span> = <code title="ISO8601 date">ISO8601 date</code><br />
- ISO8601 date (<code>yyyy-mm-dd</code>)
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="iso8601_datetime"></a><span class="summary-name">iso8601_datetime</span> = <code title="ISO8601 datetime">ISO8601 datetime</code><br />
- ISO8601 datetime (<code>yyyy-mm-ddThh:mm:ss.s(Z|+-00:00)</code>) -
- trailing seconds, milliseconds, and timezone optional; accepts
- separating <code>'T'</code> or <code>' '</code>
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="uuid"></a><span class="summary-name">uuid</span> = <code title="UUID">UUID</code><br />
- UUID (<code>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</code>)
- </td>
- </tr>
-<tr>
- <td width="15%" align="right" valign="top" class="summary">
- <span class="summary-type"> </span>
- </td><td class="summary">
- <a name="comma_separated_list"></a><span class="summary-name">comma_separated_list</span> = <code title="comma separated list">comma separated list</code><br />
- Predefined expression of 1 or more printable words or quoted strings,
- separated by commas.
- </td>
- </tr>
-</table>
-<!-- ==================== METHOD DETAILS ==================== -->
-<a name="section-MethodDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Method Details</span></td>
-</tr>
-</table>
-<a name="convertToDate"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">convertToDate</span>(<span class="sig-arg">fmt</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">%Y-%m-%d</code><code class="variable-quote">'</code></span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToDate">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to create a parse action for converting parsed date string to
- Python datetime.date</p>
- <p>Params -</p>
- <ul>
- <li>
- fmt - format to be passed to datetime.strptime
- (default=<code>"%Y-%m-%d"</code>)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- date_expr = pyparsing_common.iso8601_date.copy()
- date_expr.setParseAction(pyparsing_common.convertToDate())
- print(date_expr.parseString("1999-12-31"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [datetime.date(1999, 12, 31)]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="convertToDatetime"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">convertToDatetime</span>(<span class="sig-arg">fmt</span>=<span class="sig-default"><code class="variable-quote">'</code><code class="variable-string">%Y-%m-%dT%H:%M:%S.%f</code><code class="variable-quote">'</code></span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.convertToDatetime">source code</a></span>
- </td>
- </tr></table>
-
- <p>Helper to create a parse action for converting parsed datetime string
- to Python datetime.datetime</p>
- <p>Params -</p>
- <ul>
- <li>
- fmt - format to be passed to datetime.strptime
- (default=<code>"%Y-%m-%dT%H:%M:%S.%f"</code>)
- </li>
- </ul>
- <p>Example:</p>
-<pre class="literalblock">
- dt_expr = pyparsing_common.iso8601_datetime.copy()
- dt_expr.setParseAction(pyparsing_common.convertToDatetime())
- print(dt_expr.parseString("1999-12-31T23:59:59.999"))
-</pre>
- <p>prints:</p>
-<pre class="literalblock">
- [datetime.datetime(1999, 12, 31, 23, 59, 59, 999000)]
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<a name="stripHTMLTags"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <table width="100%" cellpadding="0" cellspacing="0" border="0">
- <tr valign="top"><td>
- <h3 class="epydoc"><span class="sig"><span class="sig-name">stripHTMLTags</span>(<span class="sig-arg">s</span>,
- <span class="sig-arg">l</span>,
- <span class="sig-arg">tokens</span>)</span>
- <br /><em class="fname">Static Method</em>
- </h3>
- </td><td align="right" valign="top"
- ><span class="codelink"><a href="pyparsing-pysrc.html#pyparsing_common.stripHTMLTags">source code</a></span>
- </td>
- </tr></table>
-
- <p>Parse action to remove HTML tags from web page HTML source</p>
- <p>Example:</p>
-<pre class="literalblock">
- # strip HTML links from normal text
- text = '<td>More info at the <a href="http://pyparsing.wikispaces.com">pyparsing</a> wiki page</td>'
- td,td_end = makeHTMLTags("TD")
- table_text = td + SkipTo(td_end).setParseAction(pyparsing_common.stripHTMLTags)("body") + td_end
-
- print(table_text.parseString(text).body) # -> 'More info at the pyparsing wiki page'
-</pre>
- <dl class="fields">
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== CLASS VARIABLE DETAILS ==================== -->
-<a name="section-ClassVariableDetails"></a>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr bgcolor="#70b0f0" class="table-header">
- <td align="left" colspan="2" class="table-header">
- <span class="table-header">Class Variable Details</span></td>
-</tr>
-</table>
-<a name="number"></a>
-<div>
-<table class="details" border="1" cellpadding="3"
- cellspacing="0" width="100%" bgcolor="white">
-<tr><td>
- <h3 class="epydoc">number</h3>
- <p>any numeric expression, returns the corresponding Python type</p>
- <dl class="fields">
- </dl>
- <dl class="fields">
- <dt>Value:</dt>
- <dd><table><tr><td><pre class="variable">
-{real number with scientific notation | real number | signed integer}
-</pre></td></tr></table>
-</dd>
- </dl>
-</td></tr></table>
-</div>
-<br />
-<!-- ==================== NAVIGATION BAR ==================== -->
-<table class="navbar" border="0" width="100%" cellpadding="0"
- bgcolor="#a0c0ff" cellspacing="0">
- <tr valign="middle">
- <!-- Home link -->
- <th> <a
- href="pyparsing-module.html">Home</a> </th>
-
- <!-- Tree link -->
- <th> <a
- href="module-tree.html">Trees</a> </th>
-
- <!-- Index link -->
- <th> <a
- href="identifier-index.html">Indices</a> </th>
-
- <!-- Help link -->
- <th> <a
- href="help.html">Help</a> </th>
-
- <!-- Project homepage -->
- <th class="navbar" align="right" width="100%">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr><th class="navbar" align="center"
- >pyparsing</th>
- </tr></table></th>
- </tr>
-</table>
-<table border="0" cellpadding="0" cellspacing="0" width="100%%">
- <tr>
- <td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Sun Mar 05 20:19:56 2017
- </td>
- <td align="right" class="footer">
- <a target="mainFrame" href="http://epydoc.sourceforge.net"
- >http://epydoc.sourceforge.net</a>
- </td>
- </tr>
-</table>
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<html><head><title>Epydoc Redirect Page</title>
-<meta http-equiv="cache-control" content="no-cache" />
-<meta http-equiv="expires" content="0" />
-<meta http-equiv="pragma" content="no-cache" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-<body>
-<script type="text/javascript">
-<!--
-var pages = ["pyparsing.RecursiveGrammarException-c", "pyparsing.ParseSyntaxException-c", "pyparsing.Regex.compiledREtype-c", "pyparsing.ParseElementEnhance-c", "pyparsing.ParseFatalException-c", "pyparsing.ParseBaseException-c", "pyparsing.pyparsing_common-c", "pyparsing.CaselessKeyword-c", "pyparsing.CaselessLiteral-c", "pyparsing.ParseExpression-c", "pyparsing.ParseException-c", "pyparsing.TokenConverter-c", "pyparsing.ParserElement-c", "pyparsing.ParseResults-c", "pyparsing.QuotedString-c", "pyparsing.StringStart-c", "pyparsing.CharsNotIn-c", "pyparsing.CloseMatch-c", "pyparsing.FollowedBy-c", "pyparsing.GoToColumn-c", "pyparsing.MatchFirst-c", "pyparsing.ZeroOrMore-c", "pyparsing.LineStart-c", "pyparsing.OneOrMore-c", "pyparsing.StringEnd-c", "pyparsing.WordStart-c", "pyparsing.OnlyOnce-c", "pyparsing.Optional-c", "pyparsing.Suppress-c", "pyparsing.Combine-c", "pyparsing.Forward-c", "pyparsing.Keyword-c", "pyparsing.LineEnd-c", "pyparsing.Literal-c", "pyparsing.NoMatch-c", "pyparsing.WordEnd-c", "pyparsing.NotAny-c", "pyparsing.SkipTo-c", "pyparsing.Empty-c", "pyparsing.Group-c", "pyparsing.Regex-c", "pyparsing.Token-c", "pyparsing.White-c", "pyparsing.Dict-c", "pyparsing.Each-c", "pyparsing.Word-c", "pyparsing.And-c", "pyparsing.Or-c", "pyparsing-m"];
-var dottedName = get_anchor();
-if (dottedName) {
- var target = redirect_url(dottedName);
- if (target) window.location.replace(target);
-}
-// -->
-</script>
-
-<h3>Epydoc Auto-redirect page</h3>
-
-<p>When javascript is enabled, this page will redirect URLs of
-the form <tt>redirect.html#<i>dotted.name</i></tt> to the
-documentation for the object with the given fully-qualified
-dotted name.</p>
-<p><a id="message"> </a></p>
-
-<script type="text/javascript">
-<!--
-if (dottedName) {
- var msg = document.getElementById("message");
- msg.innerHTML = "No documentation found for <tt>"+
- dottedName+"</tt>";
-}
-// -->
-</script>
-
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Everything</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<h1 class="toc">Everything</h1>
-<hr />
- <h2 class="toc">All Classes</h2>
- <a target="mainFrame" href="pyparsing.And-class.html"
- >pyparsing.And</a><br /> <a target="mainFrame" href="pyparsing.CaselessKeyword-class.html"
- >pyparsing.CaselessKeyword</a><br /> <a target="mainFrame" href="pyparsing.CaselessLiteral-class.html"
- >pyparsing.CaselessLiteral</a><br /> <a target="mainFrame" href="pyparsing.CharsNotIn-class.html"
- >pyparsing.CharsNotIn</a><br /> <a target="mainFrame" href="pyparsing.CloseMatch-class.html"
- >pyparsing.CloseMatch</a><br /> <a target="mainFrame" href="pyparsing.Combine-class.html"
- >pyparsing.Combine</a><br /> <a target="mainFrame" href="pyparsing.Dict-class.html"
- >pyparsing.Dict</a><br /> <a target="mainFrame" href="pyparsing.Each-class.html"
- >pyparsing.Each</a><br /> <a target="mainFrame" href="pyparsing.Empty-class.html"
- >pyparsing.Empty</a><br /> <a target="mainFrame" href="pyparsing.FollowedBy-class.html"
- >pyparsing.FollowedBy</a><br /> <a target="mainFrame" href="pyparsing.Forward-class.html"
- >pyparsing.Forward</a><br /> <a target="mainFrame" href="pyparsing.GoToColumn-class.html"
- >pyparsing.GoToColumn</a><br /> <a target="mainFrame" href="pyparsing.Group-class.html"
- >pyparsing.Group</a><br /> <a target="mainFrame" href="pyparsing.Keyword-class.html"
- >pyparsing.Keyword</a><br /> <a target="mainFrame" href="pyparsing.LineEnd-class.html"
- >pyparsing.LineEnd</a><br /> <a target="mainFrame" href="pyparsing.LineStart-class.html"
- >pyparsing.LineStart</a><br /> <a target="mainFrame" href="pyparsing.Literal-class.html"
- >pyparsing.Literal</a><br /> <a target="mainFrame" href="pyparsing.MatchFirst-class.html"
- >pyparsing.MatchFirst</a><br /> <a target="mainFrame" href="pyparsing.NoMatch-class.html"
- >pyparsing.NoMatch</a><br /> <a target="mainFrame" href="pyparsing.NotAny-class.html"
- >pyparsing.NotAny</a><br /> <a target="mainFrame" href="pyparsing.OneOrMore-class.html"
- >pyparsing.OneOrMore</a><br /> <a target="mainFrame" href="pyparsing.OnlyOnce-class.html"
- >pyparsing.OnlyOnce</a><br /> <a target="mainFrame" href="pyparsing.Optional-class.html"
- >pyparsing.Optional</a><br /> <a target="mainFrame" href="pyparsing.Or-class.html"
- >pyparsing.Or</a><br /> <a target="mainFrame" href="pyparsing.ParseBaseException-class.html"
- >pyparsing.ParseBaseException</a><br /> <a target="mainFrame" href="pyparsing.ParseElementEnhance-class.html"
- >pyparsing.ParseElementEnhance</a><br /> <a target="mainFrame" href="pyparsing.ParseException-class.html"
- >pyparsing.ParseException</a><br /> <a target="mainFrame" href="pyparsing.ParseExpression-class.html"
- >pyparsing.ParseExpression</a><br /> <a target="mainFrame" href="pyparsing.ParseFatalException-class.html"
- >pyparsing.ParseFatalException</a><br /> <a target="mainFrame" href="pyparsing.ParseResults-class.html"
- >pyparsing.ParseResults</a><br /> <a target="mainFrame" href="pyparsing.ParseSyntaxException-class.html"
- >pyparsing.ParseSyntaxException</a><br /> <a target="mainFrame" href="pyparsing.ParserElement-class.html"
- >pyparsing.ParserElement</a><br /> <a target="mainFrame" href="pyparsing.QuotedString-class.html"
- >pyparsing.QuotedString</a><br /> <a target="mainFrame" href="pyparsing.RecursiveGrammarException-class.html"
- >pyparsing.RecursiveGrammarException</a><br /> <a target="mainFrame" href="pyparsing.Regex-class.html"
- >pyparsing.Regex</a><br /> <a target="mainFrame" href="pyparsing.Regex.compiledREtype-class.html"
- >pyparsing.Regex.compiledREtype</a><br /> <a target="mainFrame" href="pyparsing.SkipTo-class.html"
- >pyparsing.SkipTo</a><br /> <a target="mainFrame" href="pyparsing.StringEnd-class.html"
- >pyparsing.StringEnd</a><br /> <a target="mainFrame" href="pyparsing.StringStart-class.html"
- >pyparsing.StringStart</a><br /> <a target="mainFrame" href="pyparsing.Suppress-class.html"
- >pyparsing.Suppress</a><br /> <a target="mainFrame" href="pyparsing.Token-class.html"
- >pyparsing.Token</a><br /> <a target="mainFrame" href="pyparsing.TokenConverter-class.html"
- >pyparsing.TokenConverter</a><br /> <a target="mainFrame" href="pyparsing.White-class.html"
- >pyparsing.White</a><br /> <a target="mainFrame" href="pyparsing.Word-class.html"
- >pyparsing.Word</a><br /> <a target="mainFrame" href="pyparsing.WordEnd-class.html"
- >pyparsing.WordEnd</a><br /> <a target="mainFrame" href="pyparsing.WordStart-class.html"
- >pyparsing.WordStart</a><br /> <a target="mainFrame" href="pyparsing.ZeroOrMore-class.html"
- >pyparsing.ZeroOrMore</a><br /> <a target="mainFrame" href="pyparsing.pyparsing_common-class.html"
- >pyparsing.pyparsing_common</a><br /> <h2 class="toc">All Functions</h2>
- <a target="mainFrame" href="pyparsing-module.html#col"
- >pyparsing.col</a><br /> <a target="mainFrame" href="pyparsing-module.html#countedArray"
- >pyparsing.countedArray</a><br /> <a target="mainFrame" href="pyparsing-module.html#delimitedList"
- >pyparsing.delimitedList</a><br /> <a target="mainFrame" href="pyparsing-module.html#dictOf"
- >pyparsing.dictOf</a><br /> <a target="mainFrame" href="pyparsing-module.html#downcaseTokens"
- >pyparsing.downcaseTokens</a><br /> <a target="mainFrame" href="pyparsing-module.html#indentedBlock"
- >pyparsing.indentedBlock</a><br /> <a target="mainFrame" href="pyparsing-module.html#infixNotation"
- >pyparsing.infixNotation</a><br /> <a target="mainFrame" href="pyparsing-module.html#line"
- >pyparsing.line</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineno"
- >pyparsing.lineno</a><br /> <a target="mainFrame" href="pyparsing-module.html#locatedExpr"
- >pyparsing.locatedExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#makeHTMLTags"
- >pyparsing.makeHTMLTags</a><br /> <a target="mainFrame" href="pyparsing-module.html#makeXMLTags"
- >pyparsing.makeXMLTags</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchOnlyAtCol"
- >pyparsing.matchOnlyAtCol</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchPreviousExpr"
- >pyparsing.matchPreviousExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchPreviousLiteral"
- >pyparsing.matchPreviousLiteral</a><br /> <a target="mainFrame" href="pyparsing-module.html#nestedExpr"
- >pyparsing.nestedExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#nullDebugAction"
- >pyparsing.nullDebugAction</a><br /> <a target="mainFrame" href="pyparsing-module.html#oneOf"
- >pyparsing.oneOf</a><br /> <a target="mainFrame" href="pyparsing-module.html#originalTextFor"
- >pyparsing.originalTextFor</a><br /> <a target="mainFrame" href="pyparsing-module.html#removeQuotes"
- >pyparsing.removeQuotes</a><br /> <a target="mainFrame" href="pyparsing-module.html#replaceHTMLEntity"
- >pyparsing.replaceHTMLEntity</a><br /> <a target="mainFrame" href="pyparsing-module.html#replaceWith"
- >pyparsing.replaceWith</a><br /> <a target="mainFrame" href="pyparsing-module.html#srange"
- >pyparsing.srange</a><br /> <a target="mainFrame" href="pyparsing-module.html#tokenMap"
- >pyparsing.tokenMap</a><br /> <a target="mainFrame" href="pyparsing-module.html#traceParseAction"
- >pyparsing.traceParseAction</a><br /> <a target="mainFrame" href="pyparsing-module.html#ungroup"
- >pyparsing.ungroup</a><br /> <a target="mainFrame" href="pyparsing-module.html#upcaseTokens"
- >pyparsing.upcaseTokens</a><br /> <a target="mainFrame" href="pyparsing-module.html#withAttribute"
- >pyparsing.withAttribute</a><br /> <a target="mainFrame" href="pyparsing-module.html#withClass"
- >pyparsing.withClass</a><br /> <h2 class="toc">All Variables</h2>
- <a target="mainFrame" href="pyparsing-module.html#alphanums"
- >pyparsing.alphanums</a><br /> <a target="mainFrame" href="pyparsing-module.html#alphas"
- >pyparsing.alphas</a><br /> <a target="mainFrame" href="pyparsing-module.html#alphas8bit"
- >pyparsing.alphas8bit</a><br /> <a target="mainFrame" href="pyparsing-module.html#anyCloseTag"
- >pyparsing.anyCloseTag</a><br /> <a target="mainFrame" href="pyparsing-module.html#anyOpenTag"
- >pyparsing.anyOpenTag</a><br /> <a target="mainFrame" href="pyparsing-module.html#cStyleComment"
- >pyparsing.cStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#commaSeparatedList"
- >pyparsing.commaSeparatedList</a><br /> <a target="mainFrame" href="pyparsing-module.html#commonHTMLEntity"
- >pyparsing.commonHTMLEntity</a><br /> <a target="mainFrame" href="pyparsing-module.html#cppStyleComment"
- >pyparsing.cppStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#dblQuotedString"
- >pyparsing.dblQuotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#dblSlashComment"
- >pyparsing.dblSlashComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#empty"
- >pyparsing.empty</a><br /> <a target="mainFrame" href="pyparsing-module.html#hexnums"
- >pyparsing.hexnums</a><br /> <a target="mainFrame" href="pyparsing-module.html#htmlComment"
- >pyparsing.htmlComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#javaStyleComment"
- >pyparsing.javaStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineEnd"
- >pyparsing.lineEnd</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineStart"
- >pyparsing.lineStart</a><br /> <a target="mainFrame" href="pyparsing-module.html#nums"
- >pyparsing.nums</a><br /> <a target="mainFrame" href="pyparsing-module.html#opAssoc"
- >pyparsing.opAssoc</a><br /> <a target="mainFrame" href="pyparsing-module.html#printables"
- >pyparsing.printables</a><br /> <a target="mainFrame" href="pyparsing-module.html#punc8bit"
- >pyparsing.punc8bit</a><br /> <a target="mainFrame" href="pyparsing-module.html#pythonStyleComment"
- >pyparsing.pythonStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#quotedString"
- >pyparsing.quotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#restOfLine"
- >pyparsing.restOfLine</a><br /> <a target="mainFrame" href="pyparsing-module.html#sglQuotedString"
- >pyparsing.sglQuotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#stringEnd"
- >pyparsing.stringEnd</a><br /> <a target="mainFrame" href="pyparsing-module.html#stringStart"
- >pyparsing.stringStart</a><br /> <a target="mainFrame" href="pyparsing-module.html#unicodeString"
- >pyparsing.unicodeString</a><br /><hr />
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>pyparsing</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<h1 class="toc">Module pyparsing</h1>
-<hr />
- <h2 class="toc">Classes</h2>
- <a target="mainFrame" href="pyparsing.And-class.html"
- >And</a><br /> <a target="mainFrame" href="pyparsing.CaselessKeyword-class.html"
- >CaselessKeyword</a><br /> <a target="mainFrame" href="pyparsing.CaselessLiteral-class.html"
- >CaselessLiteral</a><br /> <a target="mainFrame" href="pyparsing.CharsNotIn-class.html"
- >CharsNotIn</a><br /> <a target="mainFrame" href="pyparsing.CloseMatch-class.html"
- >CloseMatch</a><br /> <a target="mainFrame" href="pyparsing.Combine-class.html"
- >Combine</a><br /> <a target="mainFrame" href="pyparsing.Dict-class.html"
- >Dict</a><br /> <a target="mainFrame" href="pyparsing.Each-class.html"
- >Each</a><br /> <a target="mainFrame" href="pyparsing.Empty-class.html"
- >Empty</a><br /> <a target="mainFrame" href="pyparsing.FollowedBy-class.html"
- >FollowedBy</a><br /> <a target="mainFrame" href="pyparsing.Forward-class.html"
- >Forward</a><br /> <a target="mainFrame" href="pyparsing.GoToColumn-class.html"
- >GoToColumn</a><br /> <a target="mainFrame" href="pyparsing.Group-class.html"
- >Group</a><br /> <a target="mainFrame" href="pyparsing.Keyword-class.html"
- >Keyword</a><br /> <a target="mainFrame" href="pyparsing.LineEnd-class.html"
- >LineEnd</a><br /> <a target="mainFrame" href="pyparsing.LineStart-class.html"
- >LineStart</a><br /> <a target="mainFrame" href="pyparsing.Literal-class.html"
- >Literal</a><br /> <a target="mainFrame" href="pyparsing.MatchFirst-class.html"
- >MatchFirst</a><br /> <a target="mainFrame" href="pyparsing.NoMatch-class.html"
- >NoMatch</a><br /> <a target="mainFrame" href="pyparsing.NotAny-class.html"
- >NotAny</a><br /> <a target="mainFrame" href="pyparsing.OneOrMore-class.html"
- >OneOrMore</a><br /> <a target="mainFrame" href="pyparsing.OnlyOnce-class.html"
- >OnlyOnce</a><br /> <a target="mainFrame" href="pyparsing.Optional-class.html"
- >Optional</a><br /> <a target="mainFrame" href="pyparsing.Or-class.html"
- >Or</a><br /> <a target="mainFrame" href="pyparsing.ParseBaseException-class.html"
- >ParseBaseException</a><br /> <a target="mainFrame" href="pyparsing.ParseElementEnhance-class.html"
- >ParseElementEnhance</a><br /> <a target="mainFrame" href="pyparsing.ParseException-class.html"
- >ParseException</a><br /> <a target="mainFrame" href="pyparsing.ParseExpression-class.html"
- >ParseExpression</a><br /> <a target="mainFrame" href="pyparsing.ParseFatalException-class.html"
- >ParseFatalException</a><br /> <a target="mainFrame" href="pyparsing.ParseResults-class.html"
- >ParseResults</a><br /> <a target="mainFrame" href="pyparsing.ParseSyntaxException-class.html"
- >ParseSyntaxException</a><br /> <a target="mainFrame" href="pyparsing.ParserElement-class.html"
- >ParserElement</a><br /> <a target="mainFrame" href="pyparsing.QuotedString-class.html"
- >QuotedString</a><br /> <a target="mainFrame" href="pyparsing.RecursiveGrammarException-class.html"
- >RecursiveGrammarException</a><br /> <a target="mainFrame" href="pyparsing.Regex-class.html"
- >Regex</a><br /> <a target="mainFrame" href="pyparsing.SkipTo-class.html"
- >SkipTo</a><br /> <a target="mainFrame" href="pyparsing.StringEnd-class.html"
- >StringEnd</a><br /> <a target="mainFrame" href="pyparsing.StringStart-class.html"
- >StringStart</a><br /> <a target="mainFrame" href="pyparsing.Suppress-class.html"
- >Suppress</a><br /> <a target="mainFrame" href="pyparsing.Token-class.html"
- >Token</a><br /> <a target="mainFrame" href="pyparsing.TokenConverter-class.html"
- >TokenConverter</a><br /> <a target="mainFrame" href="pyparsing.White-class.html"
- >White</a><br /> <a target="mainFrame" href="pyparsing.Word-class.html"
- >Word</a><br /> <a target="mainFrame" href="pyparsing.WordEnd-class.html"
- >WordEnd</a><br /> <a target="mainFrame" href="pyparsing.WordStart-class.html"
- >WordStart</a><br /> <a target="mainFrame" href="pyparsing.ZeroOrMore-class.html"
- >ZeroOrMore</a><br /> <a target="mainFrame" href="pyparsing.pyparsing_common-class.html"
- >pyparsing_common</a><br /> <h2 class="toc">Functions</h2>
- <a target="mainFrame" href="pyparsing-module.html#col"
- >col</a><br /> <a target="mainFrame" href="pyparsing-module.html#countedArray"
- >countedArray</a><br /> <a target="mainFrame" href="pyparsing-module.html#delimitedList"
- >delimitedList</a><br /> <a target="mainFrame" href="pyparsing-module.html#dictOf"
- >dictOf</a><br /> <a target="mainFrame" href="pyparsing-module.html#downcaseTokens"
- >downcaseTokens</a><br /> <a target="mainFrame" href="pyparsing-module.html#indentedBlock"
- >indentedBlock</a><br /> <a target="mainFrame" href="pyparsing-module.html#infixNotation"
- >infixNotation</a><br /> <a target="mainFrame" href="pyparsing-module.html#line"
- >line</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineno"
- >lineno</a><br /> <a target="mainFrame" href="pyparsing-module.html#locatedExpr"
- >locatedExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#makeHTMLTags"
- >makeHTMLTags</a><br /> <a target="mainFrame" href="pyparsing-module.html#makeXMLTags"
- >makeXMLTags</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchOnlyAtCol"
- >matchOnlyAtCol</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchPreviousExpr"
- >matchPreviousExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#matchPreviousLiteral"
- >matchPreviousLiteral</a><br /> <a target="mainFrame" href="pyparsing-module.html#nestedExpr"
- >nestedExpr</a><br /> <a target="mainFrame" href="pyparsing-module.html#nullDebugAction"
- >nullDebugAction</a><br /> <a target="mainFrame" href="pyparsing-module.html#oneOf"
- >oneOf</a><br /> <a target="mainFrame" href="pyparsing-module.html#operatorPrecedence"
- >operatorPrecedence</a><br /> <a target="mainFrame" href="pyparsing-module.html#originalTextFor"
- >originalTextFor</a><br /> <a target="mainFrame" href="pyparsing-module.html#removeQuotes"
- >removeQuotes</a><br /> <a target="mainFrame" href="pyparsing-module.html#replaceHTMLEntity"
- >replaceHTMLEntity</a><br /> <a target="mainFrame" href="pyparsing-module.html#replaceWith"
- >replaceWith</a><br /> <a target="mainFrame" href="pyparsing-module.html#srange"
- >srange</a><br /> <a target="mainFrame" href="pyparsing-module.html#tokenMap"
- >tokenMap</a><br /> <a target="mainFrame" href="pyparsing-module.html#traceParseAction"
- >traceParseAction</a><br /> <a target="mainFrame" href="pyparsing-module.html#ungroup"
- >ungroup</a><br /> <a target="mainFrame" href="pyparsing-module.html#upcaseTokens"
- >upcaseTokens</a><br /> <a target="mainFrame" href="pyparsing-module.html#withAttribute"
- >withAttribute</a><br /> <a target="mainFrame" href="pyparsing-module.html#withClass"
- >withClass</a><br /> <h2 class="toc">Variables</h2>
- <a target="mainFrame" href="pyparsing-module.html#alphanums"
- >alphanums</a><br /> <a target="mainFrame" href="pyparsing-module.html#alphas"
- >alphas</a><br /> <a target="mainFrame" href="pyparsing-module.html#alphas8bit"
- >alphas8bit</a><br /> <a target="mainFrame" href="pyparsing-module.html#anyCloseTag"
- >anyCloseTag</a><br /> <a target="mainFrame" href="pyparsing-module.html#anyOpenTag"
- >anyOpenTag</a><br /> <a target="mainFrame" href="pyparsing-module.html#cStyleComment"
- >cStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#commaSeparatedList"
- >commaSeparatedList</a><br /> <a target="mainFrame" href="pyparsing-module.html#commonHTMLEntity"
- >commonHTMLEntity</a><br /> <a target="mainFrame" href="pyparsing-module.html#cppStyleComment"
- >cppStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#dblQuotedString"
- >dblQuotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#dblSlashComment"
- >dblSlashComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#empty"
- >empty</a><br /> <a target="mainFrame" href="pyparsing-module.html#hexnums"
- >hexnums</a><br /> <a target="mainFrame" href="pyparsing-module.html#htmlComment"
- >htmlComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#javaStyleComment"
- >javaStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineEnd"
- >lineEnd</a><br /> <a target="mainFrame" href="pyparsing-module.html#lineStart"
- >lineStart</a><br /> <a target="mainFrame" href="pyparsing-module.html#nums"
- >nums</a><br /> <a target="mainFrame" href="pyparsing-module.html#opAssoc"
- >opAssoc</a><br /> <a target="mainFrame" href="pyparsing-module.html#printables"
- >printables</a><br /> <a target="mainFrame" href="pyparsing-module.html#punc8bit"
- >punc8bit</a><br /> <a target="mainFrame" href="pyparsing-module.html#pythonStyleComment"
- >pythonStyleComment</a><br /> <a target="mainFrame" href="pyparsing-module.html#quotedString"
- >quotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#restOfLine"
- >restOfLine</a><br /> <a target="mainFrame" href="pyparsing-module.html#sglQuotedString"
- >sglQuotedString</a><br /> <a target="mainFrame" href="pyparsing-module.html#stringEnd"
- >stringEnd</a><br /> <a target="mainFrame" href="pyparsing-module.html#stringStart"
- >stringStart</a><br /> <a target="mainFrame" href="pyparsing-module.html#unicodeString"
- >unicodeString</a><br /><hr />
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
+++ /dev/null
-<?xml version="1.0" encoding="ascii"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Table of Contents</title>
- <link rel="stylesheet" href="epydoc.css" type="text/css" />
- <script type="text/javascript" src="epydoc.js"></script>
-</head>
-
-<body bgcolor="white" text="black" link="blue" vlink="#204080"
- alink="#204080">
-<h1 class="toc">Table of Contents</h1>
-<hr />
- <a target="moduleFrame" href="toc-everything.html">Everything</a>
- <br />
- <h2 class="toc">Modules</h2>
- <a target="moduleFrame" href="toc-pyparsing-module.html"
- onclick="setFrame('toc-pyparsing-module.html','pyparsing-module.html');" >pyparsing</a><br /><hr />
-
-<script type="text/javascript">
- <!--
- // Private objects are initially displayed (because if
- // javascript is turned off then we want them to be
- // visible); but by default, we want to hide them. So hide
- // them unless we have a cookie that says to show them.
- checkCookie();
- // -->
-</script>
-</body>
-</html>
-Metadata-Version: 1.1\r
-Name: pyparsing\r
-Version: 2.2.0\r
-Summary: Python parsing module\r
-Home-page: http://pyparsing.wikispaces.com/\r
-Author: Paul McGuire\r
-Author-email: ptmcg@users.sourceforge.net\r
-License: MIT License\r
-Download-URL: http://sourceforge.net/project/showfiles.php?group_id=97203\r
-Description: UNKNOWN\r
-Platform: UNKNOWN\r
-Classifier: Development Status :: 5 - Production/Stable\r
-Classifier: Intended Audience :: Developers\r
-Classifier: Intended Audience :: Information Technology\r
-Classifier: License :: OSI Approved :: MIT License\r
-Classifier: Operating System :: OS Independent\r
-Classifier: Programming Language :: Python\r
-Classifier: Programming Language :: Python :: 2.6\r
-Classifier: Programming Language :: Python :: 2.7\r
-Classifier: Programming Language :: Python :: 3\r
-Classifier: Programming Language :: Python :: 3.3\r
-Classifier: Programming Language :: Python :: 3.4\r
-Classifier: Programming Language :: Python :: 3.5\r
+Metadata-Version: 1.2
+Name: pyparsing
+Version: 2.2.1
+Summary: Python parsing module
+Home-page: https://github.com/pyparsing/pyparsing/
+Author: Paul McGuire
+Author-email: ptmcg@users.sourceforge.net
+License: MIT License
+Download-URL: https://pypi.org/project/pyparsing/
+Description: UNKNOWN
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Intended Audience :: Developers
+Classifier: Intended Audience :: Information Technology
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
-CHANGES
-HowToUsePyparsing.html
-LICENSE
-MANIFEST.in
-README
+README.md
pyparsing.py
-pyparsingClassDiagram.JPG
-pyparsingClassDiagram.PNG
-robots.txt
setup.cfg
setup.py
-docs/HowToUsePyparsing.html
-docs/pycon06-AdventureEngineUsingPyparsing-notes.pdf
-docs/pycon06-IntroToPyparsing-notes.pdf
-docs/pyparsingClassDiagram.JPG
-docs/pyparsingClassDiagram.PNG
-examples/0README.html
-examples/AcManForm.dfm
-examples/LAparser.py
-examples/Setup.ini
-examples/SimpleCalc.py
-examples/SingleForm.dfm
-examples/TAP.py
-examples/__init__.py
-examples/adventureEngine.py
-examples/antlr_grammar.py
-examples/antlr_grammar_tests.py
-examples/apicheck.py
-examples/btpyparse.py
-examples/builtin_parse_action_demo.py
-examples/cLibHeader.py
-examples/chemicalFormulas.py
-examples/commasep.py
-examples/configParse.py
-examples/cpp_enum_parser.py
-examples/datetimeParseActions.py
-examples/deltaTime.py
-examples/dfmparse.py
-examples/dhcpd_leases_parser.py
-examples/dictExample.py
-examples/dictExample2.py
-examples/ebnf.py
-examples/ebnftest.py
-examples/eval_arith.py
-examples/excelExpr.py
-examples/fourFn.py
-examples/gen_ctypes.py
-examples/getNTPservers.py
-examples/getNTPserversNew.py
-examples/greeting.py
-examples/greetingInGreek.py
-examples/greetingInKorean.py
-examples/groupUsingListAllMatches.py
-examples/holaMundo.py
-examples/htmlStripper.py
-examples/httpServerLogParser.py
-examples/idlParse.py
-examples/indentedGrammarExample.py
-examples/invRegex.py
-examples/jsonParser.py
-examples/linenoExample.py
-examples/list1.py
-examples/listAllMatches.py
-examples/lucene_grammar.py
-examples/macroExpander.py
-examples/makeHTMLTagExample.py
-examples/matchPreviousDemo.py
-examples/mozilla.ics
-examples/mozillaCalendarParser.py
-examples/nested.py
-examples/numerics.py
-examples/oc.py
-examples/parseListString.py
-examples/parsePythonValue.py
-examples/parseResultsSumExample.py
-examples/parseTabularData.py
-examples/partial_gene_match.py
-examples/pgn.py
-examples/position.py
-examples/protobuf_parser.py
-examples/pymicko.py
-examples/pythonGrammarParser.py
-examples/rangeCheck.py
-examples/readJson.py
-examples/removeLineBreaks.py
-examples/romanNumerals.py
-examples/scanExamples.py
-examples/scanYahoo.py
-examples/searchParserAppDemo.py
-examples/searchparser.py
-examples/select_parser.py
-examples/sexpParser.py
-examples/shapes.py
-examples/simpleArith.py
-examples/simpleBool.py
-examples/simpleSQL.py
-examples/simpleWiki.py
-examples/sparser.py
-examples/sql2dot.py
-examples/stackish.py
-examples/stateMachine2.py
-examples/test_bibparse.py
-examples/urlExtractor.py
-examples/urlExtractorNew.py
-examples/verilogParse.py
-examples/withAttribute.py
-examples/wordsToNum.py
-htmldoc/api-objects.txt
-htmldoc/class-tree.html
-htmldoc/crarr.png
-htmldoc/epydoc.css
-htmldoc/epydoc.js
-htmldoc/frames.html
-htmldoc/help.html
-htmldoc/identifier-index.html
-htmldoc/index.html
-htmldoc/module-tree.html
-htmldoc/pyparsing-module.html
-htmldoc/pyparsing-pysrc.html
-htmldoc/pyparsing.And-class.html
-htmldoc/pyparsing.CaselessKeyword-class.html
-htmldoc/pyparsing.CaselessLiteral-class.html
-htmldoc/pyparsing.CharsNotIn-class.html
-htmldoc/pyparsing.CloseMatch-class.html
-htmldoc/pyparsing.Combine-class.html
-htmldoc/pyparsing.Dict-class.html
-htmldoc/pyparsing.Each-class.html
-htmldoc/pyparsing.Empty-class.html
-htmldoc/pyparsing.FollowedBy-class.html
-htmldoc/pyparsing.Forward-class.html
-htmldoc/pyparsing.GoToColumn-class.html
-htmldoc/pyparsing.Group-class.html
-htmldoc/pyparsing.Keyword-class.html
-htmldoc/pyparsing.LineEnd-class.html
-htmldoc/pyparsing.LineStart-class.html
-htmldoc/pyparsing.Literal-class.html
-htmldoc/pyparsing.MatchFirst-class.html
-htmldoc/pyparsing.NoMatch-class.html
-htmldoc/pyparsing.NotAny-class.html
-htmldoc/pyparsing.OneOrMore-class.html
-htmldoc/pyparsing.OnlyOnce-class.html
-htmldoc/pyparsing.Optional-class.html
-htmldoc/pyparsing.Or-class.html
-htmldoc/pyparsing.ParseBaseException-class.html
-htmldoc/pyparsing.ParseElementEnhance-class.html
-htmldoc/pyparsing.ParseException-class.html
-htmldoc/pyparsing.ParseExpression-class.html
-htmldoc/pyparsing.ParseFatalException-class.html
-htmldoc/pyparsing.ParseResults-class.html
-htmldoc/pyparsing.ParseSyntaxException-class.html
-htmldoc/pyparsing.ParserElement-class.html
-htmldoc/pyparsing.QuotedString-class.html
-htmldoc/pyparsing.Recipes-class.html
-htmldoc/pyparsing.RecursiveGrammarException-class.html
-htmldoc/pyparsing.Regex-class.html
-htmldoc/pyparsing.Regex.compiledREtype-class.html
-htmldoc/pyparsing.SkipTo-class.html
-htmldoc/pyparsing.StringEnd-class.html
-htmldoc/pyparsing.StringStart-class.html
-htmldoc/pyparsing.Suppress-class.html
-htmldoc/pyparsing.Token-class.html
-htmldoc/pyparsing.TokenConverter-class.html
-htmldoc/pyparsing.White-class.html
-htmldoc/pyparsing.Word-class.html
-htmldoc/pyparsing.WordEnd-class.html
-htmldoc/pyparsing.WordStart-class.html
-htmldoc/pyparsing.ZeroOrMore-class.html
-htmldoc/pyparsing.pyparsing_common-class.html
-htmldoc/redirect.html
-htmldoc/toc-everything.html
-htmldoc/toc-pyparsing-module.html
-htmldoc/toc.html
pyparsing.egg-info/PKG-INFO
pyparsing.egg-info/SOURCES.txt
pyparsing.egg-info/dependency_links.txt
# module pyparsing.py\r
#\r
-# Copyright (c) 2003-2016 Paul T. McGuire\r
+# Copyright (c) 2003-2018 Paul T. McGuire\r
#\r
# Permission is hereby granted, free of charge, to any person obtaining\r
# a copy of this software and associated documentation files (the\r
__doc__ = \\r
"""\r
pyparsing module - Classes and methods to define and execute parsing grammars\r
+=============================================================================\r
\r
The pyparsing module is an alternative approach to creating and executing simple grammars,\r
vs. the traditional lex/yacc approach, or the use of regular expressions. With pyparsing, you\r
- extra or missing whitespace (the above program will also handle "Hello,World!", "Hello , World !", etc.)\r
- quoted strings\r
- embedded comments\r
+\r
+\r
+Getting Started -\r
+-----------------\r
+Visit the classes L{ParserElement} and L{ParseResults} to see the base classes that most other pyparsing\r
+classes inherit from. Use the docstrings for examples of how to:\r
+ - construct literal match expressions from L{Literal} and L{CaselessLiteral} classes\r
+ - construct character word-group expressions using the L{Word} class\r
+ - see how to create repetitive expressions using L{ZeroOrMore} and L{OneOrMore} classes\r
+ - use L{'+'<And>}, L{'|'<MatchFirst>}, L{'^'<Or>}, and L{'&'<Each>} operators to combine simple expressions into more complex ones\r
+ - associate names with your parsed results using L{ParserElement.setResultsName}\r
+ - find some helpful expression short-cuts like L{delimitedList} and L{oneOf}\r
+ - find more useful common expressions in the L{pyparsing_common} namespace class\r
"""\r
\r
-__version__ = "2.2.0"\r
-__versionTime__ = "06 Mar 2017 02:06 UTC"\r
+__version__ = "2.2.1"\r
+__versionTime__ = "18 Sep 2018 00:49 UTC"\r
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"\r
\r
import string\r
except ImportError:\r
from threading import RLock\r
\r
+try:\r
+ # Python 3\r
+ from collections.abc import Iterable\r
+ from collections.abc import MutableMapping\r
+except ImportError:\r
+ # Python 2.7\r
+ from collections import Iterable\r
+ from collections import MutableMapping\r
+\r
try:\r
from collections import OrderedDict as _OrderedDict\r
except ImportError:\r
def __dir__(self):\r
return (dir(type(self)) + list(self.keys()))\r
\r
-collections.MutableMapping.register(ParseResults)\r
+MutableMapping.register(ParseResults)\r
\r
def col (loc,strg):\r
"""Returns current column within a string, counting newlines as line separators.\r
# special handling for Python 3.5.0 - extra deep call stack by 1\r
offset = -3 if system_version == (3,5,0) else -2\r
frame_summary = traceback.extract_stack(limit=-offset+limit-1)[offset]\r
- return [(frame_summary.filename, frame_summary.lineno)]\r
+ return [frame_summary[:2]]\r
def extract_tb(tb, limit=0):\r
frames = traceback.extract_tb(tb, limit=limit)\r
frame_summary = frames[-1]\r
- return [(frame_summary.filename, frame_summary.lineno)]\r
+ return [frame_summary[:2]]\r
else:\r
extract_stack = traceback.extract_stack\r
extract_tb = traceback.extract_tb\r
else:\r
preloc = loc\r
tokensStart = preloc\r
- if self.mayIndexError or loc >= len(instring):\r
+ if self.mayIndexError or preloc >= len(instring):\r
try:\r
loc,tokens = self.parseImpl( instring, preloc, doActions )\r
except IndexError:\r
self.resultsName,\r
asList=self.saveAsList and isinstance(tokens,(ParseResults,list)),\r
modal=self.modalResults )\r
-\r
if debugging:\r
#~ print ("Matched",self,"->",retTokens.asList())\r
if (self.debugActions[1] ):\r
\r
if isinstance( exprs, basestring ):\r
self.exprs = [ ParserElement._literalStringClass( exprs ) ]\r
- elif isinstance( exprs, collections.Iterable ):\r
+ elif isinstance( exprs, Iterable ):\r
exprs = list(exprs)\r
# if sequence of strings provided, wrap with Literal\r
if all(isinstance(expr, basestring) for expr in exprs):\r
\r
@traceParseAction\r
def remove_duplicate_chars(tokens):\r
- return ''.join(sorted(set(''.join(tokens)))\r
+ return ''.join(sorted(set(''.join(tokens))))\r
\r
wds = OneOrMore(wd).setParseAction(remove_duplicate_chars)\r
print(wds.parseString("slkdjs sld sldd sdlf sdljf"))\r
symbols = []\r
if isinstance(strs,basestring):\r
symbols = strs.split()\r
- elif isinstance(strs, collections.Iterable):\r
+ elif isinstance(strs, Iterable):\r
symbols = list(strs)\r
else:\r
warnings.warn("Invalid argument to oneOf, expected string or iterable",\r
_escapedPunc = Word( _bslash, r"\[]-*.$+^?()~ ", exact=2 ).setParseAction(lambda s,l,t:t[0][1])\r
_escapedHexChar = Regex(r"\\0?[xX][0-9a-fA-F]+").setParseAction(lambda s,l,t:unichr(int(t[0].lstrip(r'\0x'),16)))\r
_escapedOctChar = Regex(r"\\0[0-7]+").setParseAction(lambda s,l,t:unichr(int(t[0][1:],8)))\r
-_singleChar = _escapedPunc | _escapedHexChar | _escapedOctChar | Word(printables, excludeChars=r'\]', exact=1) | Regex(r"\w", re.UNICODE)\r
+_singleChar = _escapedPunc | _escapedHexChar | _escapedOctChar | CharsNotIn(r'\]', exact=1)\r
_charRange = Group(_singleChar + Suppress("-") + _singleChar)\r
_reBracketExpr = Literal("[") + Optional("^").setResultsName("negate") + Group( OneOrMore( _charRange | _singleChar ) ).setResultsName("body") + "]"\r
\r
+++ /dev/null
-User-agent: *\r
-Disallow: /htmldoc\r
-[bdist_wheel]\r
-universal = 1\r
-\r
-[wheel]\r
-universal = 1\r
-\r
-[egg_info]\r
-tag_build = \r
-tag_date = 0\r
-tag_svn_revision = 0\r
-\r
+[bdist_wheel]
+universal = 1
+
+[metadata]
+license_file = LICENSE
+
+[egg_info]
+tag_build =
+tag_date = 0
+
description = "Python parsing module",\r
author = "Paul McGuire",\r
author_email = "ptmcg@users.sourceforge.net",\r
- url = "http://pyparsing.wikispaces.com/",\r
- download_url = "http://sourceforge.net/project/showfiles.php?group_id=97203",\r
+ url = "https://github.com/pyparsing/pyparsing/",\r
+ download_url = "https://pypi.org/project/pyparsing/",\r
license = "MIT License",\r
py_modules = modules,\r
+ python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*',\r
classifiers=[\r
'Development Status :: 5 - Production/Stable',\r
'Intended Audience :: Developers',\r
'License :: OSI Approved :: MIT License',\r
'Operating System :: OS Independent',\r
'Programming Language :: Python',\r
+ 'Programming Language :: Python :: 2',\r
'Programming Language :: Python :: 2.6',\r
'Programming Language :: Python :: 2.7',\r
'Programming Language :: Python :: 3',\r
'Programming Language :: Python :: 3.3',\r
'Programming Language :: Python :: 3.4',\r
'Programming Language :: Python :: 3.5',\r
+ 'Programming Language :: Python :: 3.6',\r
+ 'Programming Language :: Python :: 3.7',\r
]\r
)\r