| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Code cleanup in examples; move test code into main for bigquery_view_parser.p... | ptmcg | 2020-04-25 | 1 | -18/+25 |
* | enable packrat parsing in all examples using infixNotation | ptmcg | 2020-04-07 | 6 | -5/+23 |
* | Blacken changes | ptmcg | 2020-02-23 | 1 | -3/+3 |
* | Fix bug in delta_time when number of seconds/minutes/hours > 999 (confusion w... | ptmcg | 2020-02-23 | 1 | -5/+16 |
* | ensure test can fail (#178) | Kyle Lahnakoski | 2020-02-23 | 1 | -102/+93 |
* | Smedberg/various minor fixes (#173) | Michael Smedberg | 2020-01-23 | 1 | -40/+87 |
* | Include 2.4.x change notes to CHANGES; add select_parser to unit tests; minor... | ptmcg | 2019-11-18 | 1 | -4/+3 |
* | select_parser example: misc improvements (#157) | Robert Coup | 2019-11-18 | 1 | -152/+94 |
* | Blacken the project (#141) | Jon Dufresne | 2019-10-31 | 92 | -3863/+6316 |
* | Use pyupgrade to upgrade the code to use Python3 conventions (#138) | Jon Dufresne | 2019-10-24 | 33 | -160/+145 |
* | Py3 cleanup: Remove workaround for Python2 urllib (#143) | Jon Dufresne | 2019-10-19 | 2 | -16/+3 |
* | Remove unused imports (#147) | Jon Dufresne | 2019-10-19 | 7 | -9/+6 |
* | Py3 cleanup: Remove workaround from Python3 unichr() (#144) | Jon Dufresne | 2019-10-17 | 1 | -6/+1 |
* | Py3 cleanup: Remove use of closing() with urlopen() (#145) | Jon Dufresne | 2019-10-17 | 5 | -14/+11 |
* | Py3 cleanup: Remove unnecessary __ne__ method (#140) | Jon Dufresne | 2019-10-17 | 1 | -2/+0 |
* | Py3 cleanup: Remove __nonzero__ method (#142) | Jon Dufresne | 2019-10-17 | 1 | -3/+3 |
* | BigQuery View parse fails on IGNORE NULLS (#126) | Michael Smedberg | 2019-09-27 | 1 | -3/+14 |
* | BigQuery SQL parser: handle WINDOW clause in WITH section (#122) | Michael Smedberg | 2019-09-08 | 1 | -0/+19 |
* | Add Py2 compat code at submitter's request; add non-Western test case; more h... | Paul McGuire | 2019-08-18 | 1 | -98/+109 |
* | Boolean Search query parser: allows to perform searches with the common boole... | xecgr | 2019-08-13 | 1 | -0/+394 |
* | Update example to proto3 syntax (#113) | Andrew Artyushok | 2019-08-13 | 1 | -5/+18 |
* | Typo and spelling cleanup, add helpful comments | Paul McGuire | 2019-08-07 | 1 | -3/+10 |
* | Fixed bug in CloseMatch where end location was incorrectly computed; and upda... | Paul McGuire | 2019-08-05 | 1 | -88/+51 |
* | Code style updates; remove deprecated methods | Paul McGuire | 2019-08-05 | 3 | -144/+147 |
* | Example BigQuery view SQL parser (#112) | Michael Smedberg | 2019-08-04 | 1 | -0/+1510 |
* | fourFn.py updates - handle leading '+' and '-' unary signs for parenthesized ... | Paul McGuire | 2019-08-04 | 1 | -4/+11 |
* | Update fourFn.py to handle functions that take multiple args, and nested func... | Paul McGuire | 2019-08-03 | 2 | -309/+354 |
* | Version 2.4.2a1 - changing [...] notation to ZeroOrMore, not OneOrMore | Paul McGuire | 2019-07-23 | 2 | -267/+267 |
* | Update coding styles; better comments, attribution of example file | Paul McGuire | 2019-07-20 | 1 | -9/+21 |
* | Change example to use addCondition instead of parse action that raises ParseE... | Paul McGuire | 2019-07-19 | 1 | -10/+10 |
* | Update/cleanup code in examples | Paul McGuire | 2019-07-13 | 7 | -1187/+1244 |
* | Code reorg/reformat, added results names | Paul McGuire | 2019-07-06 | 1 | -127/+151 |
* | Add support for multiple '...' skips in a single expression; `_skippped` resu... | Paul McGuire | 2019-07-06 | 1 | -4/+5 |
* | Update examples to reflect newer pyparsing and coding styles, and use '...' t... | ptmcg | 2019-07-05 | 3 | -91/+93 |
* | Add compatibility results name; ungroup qty expression to simplify accessing ... | Paul McGuire | 2019-05-29 | 1 | -6/+8 |
* | Some code cleanup, and added tests and test validations | Paul McGuire | 2019-05-28 | 1 | -6/+27 |
* | Fix description in module header | Paul McGuire | 2019-05-28 | 1 | -1/+3 |
* | delta_time fixes: add more time validations; add 1-second epsilon when verify... | ptmcg | 2019-05-28 | 1 | -2/+24 |
* | Update generated code for both unnamed and named state transition state machines | Paul McGuire | 2019-05-27 | 1 | -1/+9 |
* | Typo - `isinstance` should be `issubclass` | Paul McGuire | 2019-05-27 | 1 | -1/+1 |
* | Fine tuning of statemachine example, moving InvalidStateTransition declaratio... | Paul McGuire | 2019-05-27 | 7 | -12/+167 |
* | Updated runTests to call postParse before dumping parsed results; added neste... | Paul McGuire | 2019-05-26 | 3 | -208/+366 |
* | Fix generated stateMixin class to properly implement overridable transition m... | Paul McGuire | 2019-04-17 | 2 | -9/+7 |
* | Added change note re: changes to statemachine example; some code reformat/cle... | Paul McGuire | 2019-04-16 | 1 | -1/+13 |
* | Refactor generated State code to use overridden transition methods instead of... | Paul McGuire | 2019-04-15 | 4 | -78/+117 |
* | Code updates to current idiomspyparsing_2.4.0 | Paul McGuire | 2019-04-07 | 2 | -54/+117 |
* | Improved support for "python setup.py test" | Paul McGuire | 2019-04-07 | 1 | -219/+223 |
* | Fixed dict structure in makeHTMLTags expressions, and added tag_body attribut... | Paul McGuire | 2019-04-06 | 10 | -528/+452 |
* | Updated examples to current pyparsing styles, and to use runTests | Paul McGuire | 2019-04-06 | 2 | -96/+90 |
* | Some reformatting for better readability, and more explanatory comments | Paul McGuire | 2019-04-05 | 1 | -22/+33 |