summaryrefslogtreecommitdiff
path: root/src/pyparsing.py
Commit message (Expand)AuthorAgeFilesLines
* Add minor enht for infixNotation, to accept a sequence of parse actions at ea...ptmcg2017-03-061-5/+10
* Prep for 2.2.0 releaseptmcg2017-03-031-1/+1
* Fix error and expand docstring examples for ParserElement.searchStringptmcg2017-03-031-1/+5
* Fix deprecated use of '\' as described in https://bugs.python.org/issue27364 ...ptmcg2017-02-281-4/+4
* Minor change when using '-' operator, to be compatible with ParserElement.str...ptmcg2017-02-281-1/+1
* Fix KeyError when packrat cache gets updated recursivelyptmcg2017-02-281-5/+20
* Fix docstring formatting for epydoc compatibilityptmcg2016-10-071-2/+2
* Fix @(*#&$#& typoptmcg2016-10-061-4/+2
* Add example to LineStart docstringptmcg2016-10-061-0/+19
* Fixed bug in col, which allowed simplification of LineStart down to minimal i...ptmcg2016-10-061-9/+3
* Fixed behavior of LineStart; added AutoReset to other unit tests that modify ...ptmcg2016-10-041-10/+8
* Fix all bare 'except:' statements in pyparsing; add more 'n-or-more' unit testsptmcg2016-10-021-10/+10
* Fix bug in ZeroOrMore results name reportingptmcg2016-09-281-6/+3
* Fixed bug in ParseResults.dump when keys were not strings. Also changed displ...ptmcg2016-09-241-3/+7
* Added support for multiline test strings in runTestsptmcg2016-09-111-1/+9
* Fix typo in doc string; add comment on support for ()'s in infixNotationptmcg2016-09-111-4/+5
* Cleanup/notes in prep for 2.1.9 releaseptmcg2016-09-101-2/+2
* Fix Py3 bug in ParseResults.getName; fixed bug in Keyword and CaselessKeyword...ptmcg2016-09-081-5/+7
* Copied upcaseTokens and downcaseTokens to pyparsing_common; renamed pyparsing...ptmcg2016-08-261-11/+27
* Added CloseMatch classptmcg2016-08-171-3/+64
* Some docstring changesptmcg2016-08-151-11/+34
* Some docstring changesptmcg2016-08-141-9/+11
* enhanced runTests to better handle non-parsing exceptionsptmcg2016-08-141-3/+17
* Simplified merging ParseResults from expressions in an Each; also fixed class...ptmcg2016-08-131-40/+31
* Add limit=n args to extract_stack and extract_tb calls, to minimize scanning ...ptmcg2016-08-121-7/+7
* Clearer example output in ParseResultsptmcg2016-08-111-15/+18
* Added inline doc example for ParserElement.setDebugptmcg2016-08-111-2/+31
* Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite loop with Su...ptmcg2016-08-111-3/+6
* Undo removal of generator handlingptmcg2016-08-111-1/+5
* Remove dangling ref to _generatorTypeptmcg2016-08-111-1/+1
* Add support for all iterables (sets, generators, etc.) to oneOf and ParseExpr...ptmcg2016-08-111-11/+6
* Fix regression when using packrat parsing and raising ParseSyntaxException in...ptmcg2016-08-091-11/+17
* Typo in Keyword docstringptmcg2016-08-071-1/+1
* docstring tweak (ParseResults.asDict)ptmcg2016-08-071-1/+1
* More docstring cleanup/enhancementptmcg2016-08-071-27/+45
* Fix typo in SkipTo docstringptmcg2016-08-071-1/+1
* Reformat Word docstring to include links to helper stringsptmcg2016-08-071-9/+10
* Add the last of the new inline doc examplesptmcg2016-08-061-57/+469
* Add more inline doc examplesptmcg2016-08-061-36/+286
* Fixed version dateptmcg2016-08-061-1/+1
* Add inline examples to docstrings, for realptmcg2016-08-051-481/+1094
* Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5, when the pa...ptmcg2016-08-051-2/+2
* Add inline examples to docstrings, so that reference docs will show sample co...ptmcg2016-08-051-8/+8
* Deprecated ParseResults.asXML ptmcg2016-08-051-2/+2
* Updated traceParseAction to use repr of input/output tokens instead of strptmcg2016-08-051-3/+3
* Rename pyparsing_common's "numeric" and "number" expressions to "number" and ...ptmcg2016-08-051-5/+5
* LRU rework to use OrderedDict instead, better cross-version Python compatibil...ptmcg2016-08-041-41/+86
* Modified init for Py2 compatibility (need args attribute for exception constr...ptmcg2016-07-271-0/+1
* Final code cleanup for adding lru_cache. Removed DictCache wrapper on dict, j...ptmcg2016-07-271-43/+29
* Rework to use lru_cache instead of TTLCacheptmcg2016-07-271-70/+62