| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Improved support for "python setup.py test" | Paul McGuire | 2019-04-07 | 1 | -3/+3 |
* | Fixed dict structure in makeHTMLTags expressions, and added tag_body attribut... | Paul McGuire | 2019-04-06 | 1 | -2/+5 |
* | General code cleanup; have unit test module exit(0 or 1) depending on test su... | Paul McGuire | 2019-04-01 | 1 | -23/+36 |
* | Modifies makeXXXTags to reuse expressions for '<' and '>' literals, to be mor... | Paul McGuire | 2019-03-30 | 1 | -14/+19 |
* | Convert docstrings containing regex examples to raw string literals, to avoid... | Paul McGuire | 2019-03-30 | 1 | -3/+3 |
* | Merge remote-tracking branch 'origin/master' | Paul McGuire | 2019-03-30 | 1 | -10/+12 |
|\ |
|
| * | Fix cases where an indentedBlock partially parsing will cause all other corre... | TMiguelT | 2019-03-12 | 1 | -1/+7 |
| * | Descriptive names for Forward expressions (#71) | Eric Wald | 2019-03-10 | 1 | -9/+5 |
| * | Support for simple_unit_tests under Python 2 (#72) | Eric Wald | 2019-03-10 | 1 | -1/+5 |
* | | Add __compat__.collect_all_And_tokens to address version incompatibility, and... | Paul McGuire | 2019-03-30 | 1 | -7/+22 |
|/ |
|
* | Add compiler from rosettacode.org; fix bug in ParserElement.runTests that int... | Paul McGuire | 2019-01-31 | 1 | -4/+6 |
* | Add note that explain() is only supported under Python 3. | ptmcg | 2019-01-09 | 1 | -8/+4 |
* | Modify explain() for Py2 compat | ptmcg | 2019-01-09 | 1 | -2/+7 |
* | Add enumerated place holders for strings that invoke str.format(), for Py2 co... | ptmcg | 2019-01-09 | 1 | -9/+9 |
* | Fix inconsistency between Keyword(caseless=True) and CaselessKeyword (issue #65) | ptmcg | 2019-01-07 | 1 | -7/+1 |
* | Add experimental ParseException.explain() method, to return a multiline strin... | Paul McGuire | 2019-01-05 | 1 | -3/+71 |
* | Update Travis-CI scripts to include examples; fix bug in runTests if postPars... | Paul McGuire | 2018-12-30 | 1 | -1/+3 |
* | Fix matching of dictOf with empty contents (Issue #53) | ptmcg | 2018-12-28 | 1 | -2/+2 |
* | Fix partial named results when And embedded in named MatchFirst or Or | ptmcg | 2018-12-28 | 1 | -2/+24 |
* | Use HTTPS URLs where available in docs, examples, and comments | Jon Dufresne | 2018-12-25 | 1 | -5/+5 |
* | Remove mentions of 'psyco' from docs and examples | Jon Dufresne | 2018-12-24 | 1 | -5/+3 |
* | Remove unused imports throughout project | Jon Dufresne | 2018-12-24 | 1 | -1/+1 |
* | Fix runTests to strip leading BOM added for some unicode strings after splitl... | Paul McGuire | 2018-12-22 | 1 | -2/+3 |
* | Fix postParse bug introduced in runTests; extended cleanup of unitTests (conv... | Paul McGuire | 2018-12-21 | 1 | -3/+3 |
* | Add support for optional postParse argument to ParserElement.runTests | Paul McGuire | 2018-12-21 | 1 | -7/+15 |
* | Issue #51 Expanded the whitespace characters recognized by the White class to... | ptmcg | 2018-12-13 | 1 | -16/+53 |
* | Minor update to module welcome; add version to generated docs | ptmcg | 2018-11-22 | 1 | -3/+3 |
* | Intern unicode range strings to prevent their listing in generated docs (pypa... | ptmcg | 2018-11-22 | 1 | -13/+25 |
* | Convert sphinx inline code literal markups to less-verbose form | ptmcg | 2018-11-21 | 1 | -225/+242 |
* | More sphinx cleanup | ptmcg | 2018-11-21 | 1 | -143/+194 |
* | Update timestamp and CHANGES file to reflect mcepl improvements | ptmcg | 2018-11-20 | 1 | -1/+1 |
* | Reformatting of documentation strings. | Matěj Cepl | 2018-11-20 | 1 | -364/+562 |
* | Add some fixes | Matěj Cepl | 2018-11-20 | 1 | -19/+40 |
* | Initial conversion to Sphinx generated documentation. | Matěj Cepl | 2018-11-20 | 1 | -271/+283 |
* | Convert pyparsing.py by a script | Matěj Cepl | 2018-11-20 | 1 | -123/+123 |
* | CRLF -> LF | Matěj Cepl | 2018-11-20 | 1 | -6010/+6010 |
* | Add support for combining unicode_sets using multiple inheritance | Paul McGuire | 2018-11-17 | 1 | -8/+10 |
* | Added unicode sets for LatinA and LatinB ranges | ptmcg | 2018-11-09 | 1 | -5/+9 |
* | Remove _Constants in favor of types.SimpleNamespace | ptmcg | 2018-10-30 | 1 | -4/+7 |
* | Add Devanagari language set; make unicode_set public so users can define and ... | ptmcg | 2018-10-27 | 1 | -17/+21 |
* | Add Py2 unicodeisms | ptmcg | 2018-10-27 | 1 | -4/+9 |
* | Must use setattr syntax with unicode identifiers pre-Py3 | ptmcg | 2018-10-27 | 1 | -11/+11 |
* | Unicode identifiers only in Py3 | ptmcg | 2018-10-27 | 1 | -11/+12 |
* | Add unicode character ranges by name | ptmcg | 2018-10-27 | 1 | -221/+321 |
* | Fix extra nesting level in ParseResults when defining results name in another... | ptmcg | 2018-10-12 | 1 | -1/+1 |
* | Fix Issue #22, test for returning given parse results from a parse action; co... | ptmcg | 2018-10-07 | 1 | -2/+2 |
* | Added PrecededBy class (Issue#30); updated FollowedBy to accept results names... | ptmcg | 2018-10-06 | 1 | -14/+122 |
* | Issue #4 - add special handling for IndexError exceptions raised in user pars... | ptmcg | 2018-09-30 | 1 | -4/+16 |
* | tighten up error checking in Regex.sub() | Paul McGuire | 2018-09-29 | 1 | -1/+17 |
* | Add Regex.sub() method, and asMatch and asGroupList parameters | Paul McGuire | 2018-09-29 | 1 | -6/+19 |