| Commit message (Expand) | Author | Age | Files | Lines |
* | Backport FutureWarning fix (regex with nested set), and runTests reformatpyparsing_2.4.7 | ptmcg | 2020-03-29 | 1 | -4/+4 |
* | Fix regexen in pyparsing_common.real and .sci_real (Issue #194) | ptmcg | 2020-03-23 | 1 | -2/+2 |
* | Py2 exceptions need special checks for presence of __traceback__ | ptmcg | 2020-03-07 | 1 | -5/+10 |
* | Selected backports from 3.0.0 work | ptmcg | 2020-03-06 | 1 | -9/+21 |
* | Fix left-assoc ternary operator in infixNotation; fix White \u string typos; ... | Paul McGuire | 2019-12-23 | 1 | -21/+204 |
* | Updates for 2.4.5 release - bump version and timestamppyparsing_2.4.5 | ptmcg | 2019-11-09 | 1 | -2/+2 |
* | Unresolved symbol reference in 2.4.3 release was masked by stdout buffering i... | Paul McGuire | 2019-11-05 | 1 | -3/+3 |
* | Updates for 2.4.3 releasepyparsing_2.4.3 | ptmcg | 2019-11-03 | 1 | -1/+1 |
* | indentedBlock loop forever bug | Paul McGuire | 2019-10-21 | 1 | -3/+3 |
* | Remove reference to overriding imported re with regex module for now | Paul McGuire | 2019-10-21 | 1 | -12/+3 |
* | Backport support for 3rd party regex module | Paul McGuire | 2019-10-13 | 1 | -6/+24 |
* | Backport changes from 3.0.0 to fix PrecededBy bug (Issue #127) | Paul McGuire | 2019-10-13 | 1 | -5/+5 |
* | Test first, then commit | ptmcg | 2019-09-25 | 1 | -27/+8 |
* | Revert Word perf enhancement, not Py2-friendly | ptmcg | 2019-09-25 | 1 | -10/+10 |
* | Backport of __diag__.enable_all_warnings and Word perf enhancement from 3.0.0... | ptmcg | 2019-09-25 | 1 | -19/+44 |
* | Fixed bug in ParserElement.__eq__, addresses issue #123 | ptmcg | 2019-09-25 | 1 | -9/+7 |
* | Manually merge 2.4.2 changes from master back to 2.4.x branch | Paul McGuire | 2019-08-02 | 1 | -25/+42 |
* | Fix latent bug if adding a parse action after having cleared parse actions wi...pyparsing_2.4.1 | Paul McGuire | 2019-07-20 | 1 | -2/+2 |
* | Add CONTRIBUTING.md guidelines; code and whitespace cleanup | Paul McGuire | 2019-07-15 | 1 | -948/+966 |
* | Update `__eq__` to Py2/Py3 compat | Paul McGuire | 2019-07-13 | 1 | -2/+5 |
* | Some code cleanup based on inspection reports | Paul McGuire | 2019-07-13 | 1 | -4/+8 |
* | Some performance refinements, pre-resolving re.match to re_match attribute, o... | Paul McGuire | 2019-07-13 | 1 | -31/+52 |
* | Simplify from_dict signature, support nested dict -> nested ParseResults | Paul McGuire | 2019-07-11 | 1 | -14/+20 |
* | Add include_list optional arg to ParseResults.dump(); make Optional default s... | Paul McGuire | 2019-07-10 | 1 | -9/+27 |
* | Add new module symbols to __all__ | Paul McGuire | 2019-07-09 | 1 | -2/+3 |
* | Cleaned up CHANGES to accurately describe the pre/post 2.3.0 bugfix behavior;... | Paul McGuire | 2019-07-09 | 1 | -13/+31 |
* | Add __diag__ namespace to enable diagnostic switches; add asKeyword optional ... | Paul McGuire | 2019-07-08 | 1 | -28/+122 |
* | Nicer looking found string if fail on backslash | Paul McGuire | 2019-07-08 | 1 | -1/+1 |
* | Augment ParseException str() output to include what character was found at th... | Paul McGuire | 2019-07-07 | 1 | -3/+10 |
* | Add ParseResults.from_dict classmethod, for easy construction outside of pars... | Paul McGuire | 2019-07-07 | 1 | -1/+24 |
* | Add support for multiple '...' skips in a single expression; `_skippped` resu... | Paul McGuire | 2019-07-06 | 1 | -8/+10 |
* | Add support for "(expr | ...)" as a form of "on-error, skip" notation | ptmcg | 2019-07-05 | 1 | -54/+85 |
* | Further mods to `Forward.__str__` to possibly address memory issues reported ... | ptmcg | 2019-07-05 | 1 | -6/+9 |
* | Slight mod to `Forward.__str__` to possibly address memory issues reported in... | ptmcg | 2019-07-05 | 1 | -4/+4 |
* | Minor code changes in runTests | ptmcg | 2019-07-04 | 1 | -19/+20 |
* | Add support for ... as short cut for SkipTo in And, and for repetition as One... | Paul McGuire | 2019-07-03 | 1 | -10/+97 |
* | Issue #93 - interaction of Or and addCondition sometimes selects alternative ... | Paul McGuire | 2019-07-02 | 1 | -23/+46 |
* | Fix up changes to parse reals without leading digits before the decimal, and ... | Paul McGuire | 2019-06-29 | 1 | -3/+3 |
* | Merge remote-tracking branch 'origin/master' | Paul McGuire | 2019-06-29 | 1 | -2/+2 |
|\ |
|
| * | Support for omitted integer part of the float number (#98) | Paul McGuire | 2019-06-29 | 1 | -2/+2 |
| |\ |
|
| | * | Added support for omitted integer part in sci_real numbers | Andrey Sobolev | 2019-06-14 | 1 | -1/+1 |
| | * | Added support for omitted integer part of the float number | Andrey Sobolev | 2019-06-12 | 1 | -1/+1 |
* | | | Add support for expr.setParseAction(None) to clear all parse actions | Paul McGuire | 2019-06-29 | 1 | -3/+11 |
|/ / |
|
* | | Fix runTests to output results if post_parse returns None | Paul McGuire | 2019-06-29 | 1 | -1/+3 |
* | | Fix issue #87, regression in indentedBlock | Paul McGuire | 2019-06-29 | 1 | -8/+11 |
* | | Fix typo: "the the" (#99) | Jon Dufresne | 2019-06-29 | 1 | -1/+1 |
|/ |
|
* | Add better help directing to ParseResults as the return type for ParserElemen... | Paul McGuire | 2019-06-05 | 1 | -1/+7 |
* | Fix runTests output bug introduced in d2332c95675d71c10605eaf00b1171ef11d0970d | Paul McGuire | 2019-06-02 | 1 | -3/+6 |
* | Updated runTests to call postParse before dumping parsed results; added neste... | Paul McGuire | 2019-05-26 | 1 | -3/+5 |
* | Additional useful kwargs for Char (passthru to Word) | Paul McGuire | 2019-04-07 | 1 | -3/+4 |