| Commit message (Expand) | Author | Age | Files | Lines |
* | Change log - reformat test comments for runTests | ptmcg | 2016-08-14 | 1 | -0/+2 |
* | reformat test comments for runTests; example of using results from runTests i... | ptmcg | 2016-08-14 | 3 | -24/+67 |
* | enhanced runTests to better handle non-parsing exceptions | ptmcg | 2016-08-14 | 1 | -3/+17 |
* | Add examples from pyparsing_common | ptmcg | 2016-08-14 | 1 | -1/+13 |
* | Update to new pyparsing and Python features | ptmcg | 2016-08-14 | 1 | -14/+7 |
* | Simplified merging ParseResults from expressions in an Each; also fixed class... | ptmcg | 2016-08-13 | 3 | -40/+80 |
* | Add limit=n args to extract_stack and extract_tb calls, to minimize scanning ... | ptmcg | 2016-08-12 | 3 | -7/+64 |
* | Clearer example output in ParseResults | ptmcg | 2016-08-11 | 1 | -15/+18 |
* | Added inline doc example for ParserElement.setDebug | ptmcg | 2016-08-11 | 2 | -2/+33 |
* | Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite loop with Su... | ptmcg | 2016-08-11 | 3 | -3/+61 |
* | Update changelog with Iterable improvements to oneOf | ptmcg | 2016-08-11 | 1 | -0/+5 |
* | oneOf test cleanup | ptmcg | 2016-08-11 | 1 | -5/+5 |
* | Undo removal of generator handling | ptmcg | 2016-08-11 | 1 | -1/+5 |
* | Remove dangling ref to _generatorType | ptmcg | 2016-08-11 | 1 | -1/+1 |
* | Add support for all iterables (sets, generators, etc.) to oneOf and ParseExpr... | ptmcg | 2016-08-11 | 2 | -11/+24 |
* | Add missing authorship attributions and copyrights to examples | ptmcg | 2016-08-09 | 18 | -46/+92 |
* | Fix regression when using packrat parsing and raising ParseSyntaxException in... | ptmcg | 2016-08-09 | 3 | -11/+42 |
* | Update to current pyparsing features | ptmcg | 2016-08-07 | 3 | -45/+21 |
* | Typo in Keyword docstring | ptmcg | 2016-08-07 | 1 | -1/+1 |
* | docstring tweak (ParseResults.asDict) | ptmcg | 2016-08-07 | 1 | -1/+1 |
* | More docstring cleanup/enhancement | ptmcg | 2016-08-07 | 1 | -27/+45 |
* | Fix typo in SkipTo docstring | ptmcg | 2016-08-07 | 1 | -1/+1 |
* | Fix relative dir typo in xcopy pyparsing.py command | ptmcg | 2016-08-07 | 1 | -1/+1 |
* | Reformat Word docstring to include links to helper strings | ptmcg | 2016-08-07 | 1 | -9/+10 |
* | Update indentedGrammarExample.py to use indentedBlock | ptmcg | 2016-08-07 | 2 | -69/+10 |
* | Add the last of the new inline doc examples | ptmcg | 2016-08-06 | 1 | -57/+469 |
* | Add more inline doc examples | ptmcg | 2016-08-06 | 1 | -36/+286 |
* | Fixed version date | ptmcg | 2016-08-06 | 1 | -1/+1 |
* | Add inline examples to docstrings, for real | ptmcg | 2016-08-05 | 1 | -481/+1094 |
* | Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5, when the pa... | ptmcg | 2016-08-05 | 3 | -5/+15 |
* | Add inline examples to docstrings, so that reference docs will show sample co... | ptmcg | 2016-08-05 | 2 | -8/+16 |
* | Deprecated ParseResults.asXML | ptmcg | 2016-08-05 | 2 | -2/+14 |
* | Updated traceParseAction to use repr of input/output tokens instead of str | ptmcg | 2016-08-05 | 2 | -3/+17 |
* | Rename pyparsing_common's "numeric" and "number" expressions to "number" and ... | ptmcg | 2016-08-05 | 3 | -8/+18 |
* | Update to reflect Py3 is now default Python in dev environment | ptmcg | 2016-08-04 | 1 | -1/+1 |
* | LRU rework to use OrderedDict instead, better cross-version Python compatibil... | ptmcg | 2016-08-04 | 2 | -50/+93 |
* | Typo in Jython-specific unit test | ptmcg | 2016-07-27 | 1 | -1/+1 |
* | Typo in Jython-specific unit test | ptmcg | 2016-07-27 | 1 | -1/+1 |
* | Tweak unicode ranges for Jython 2.7.0 compatibility | ptmcg | 2016-07-27 | 1 | -2/+6 |
* | Modified init for Py2 compatibility (need args attribute for exception constr... | ptmcg | 2016-07-27 | 1 | -0/+1 |
* | Final code cleanup for adding lru_cache. Removed DictCache wrapper on dict, j... | ptmcg | 2016-07-27 | 2 | -43/+39 |
* | Rework to use lru_cache instead of TTLCache | ptmcg | 2016-07-27 | 1 | -70/+62 |
* | Remove pprint import; convert to use ParseResults.pprint methods | ptmcg | 2016-07-27 | 1 | -3/+2 |
* | _TTLCache logic cleanup, add get() method similar to dict.get | ptmcg | 2016-07-27 | 1 | -7/+10 |
* | Redo packrat cache to use _TTLCache instead of dict, to permit cache size con... | ptmcg | 2016-07-26 | 1 | -21/+95 |
* | Put test case classes back in order, as they are defined in the source module... | ptmcg | 2016-07-26 | 1 | -0/+4 |
* | Fixed bug in pyparsing_common.numeric, integers were parsed as floats | ptmcg | 2016-06-18 | 3 | -3/+20 |
* | Added ParserElement.split() generator method | ptmcg | 2016-06-13 | 3 | -1/+118 |
* | Fix docstring formatting for epydoc | ptmcg | 2016-06-12 | 1 | -5/+5 |
* | Fix docstring formatting for epydoc | ptmcg | 2016-06-12 | 1 | -2/+2 |