summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Backport FutureWarning fix (regex with nested set), and runTests reformatpyparsing_2.4.7ptmcg2020-03-292-4/+6
|
* Fix regexen in pyparsing_common.real and .sci_real (Issue #194)ptmcg2020-03-232-2/+3
|
* Py2 exceptions need special checks for presence of __traceback__ptmcg2020-03-071-5/+10
|
* Selected backports from 3.0.0 workptmcg2020-03-064-20/+90
|
* Run all the testspyparsing_2.4.6Paul McGuire2019-12-231-1/+0
|
* Fix left-assoc ternary operator in infixNotation; fix White \u string typos; ↵Paul McGuire2019-12-233-24/+258
| | | | backport pyparsing_test from 3.0
* Updates for 2.4.5 release - bump version and timestamppyparsing_2.4.5ptmcg2019-11-091-2/+2
|
* Updates for 2.4.5 release - add note to CHANGESptmcg2019-11-091-0/+8
|
* Explicitly specify UTF-8 encoding when opening README file (#163)Thomas2019-11-062-2/+3
| | | | | | | | * Explicitly specify UTF-8 encoding when opening README file * Fix Python 2.6.x+ support for setup.py * Removed stray unicode space character from README.rst
* Update CHANGESpyparsing_2.4.4Paul McGuire2019-11-051-1/+2
|
* Clean up DeprecationWarnings and Py2 compat warningsPaul McGuire2019-11-052-6/+9
|
* Unresolved symbol reference in 2.4.3 release was masked by stdout buffering ↵Paul McGuire2019-11-053-3/+26
| | | | in unit tests
* Updates for 2.4.3 release - pathlib not Py2-compatibleptmcg2019-11-031-3/+2
|
* Updates for 2.4.3 release - use README.rst body instead of pyparsing ↵ptmcg2019-11-031-1/+9
| | | | docstring for PyPI compatibility
* Updates for 2.4.3 releasepyparsing_2.4.3ptmcg2019-11-033-4/+6
|
* indentedBlock loop forever bugPaul McGuire2019-10-212-3/+7
|
* Remove reference to overriding imported re with regex module for nowPaul McGuire2019-10-211-12/+3
|
* Backport support for 3rd party regex modulePaul McGuire2019-10-132-9/+28
|
* Backport changes from 3.0.0 to fix PrecededBy bug (Issue #127)Paul McGuire2019-10-133-6/+23
|
* Merge remote-tracking branch 'origin/pyparsing_2.4.x' into pyparsing_2.4.xPaul McGuire2019-10-136-107/+238
|\ | | | | | | | | | | | | # Conflicts: # CHANGES # docs/HowToUsePyparsing.rst # pyparsing.py
| * Test first, then commitptmcg2019-09-251-27/+8
| |
| * Revert Word perf enhancement, not Py2-friendlyptmcg2019-09-252-12/+11
| |
| * Backport of __diag__.enable_all_warnings and Word perf enhancement from ↵ptmcg2019-09-252-19/+47
| | | | | | | | 3.0.0 dev branch
| * Fixed bug in ParserElement.__eq__, addresses issue #123ptmcg2019-09-252-9/+14
| |
| * Manually merge 2.4.2 changes from master back to 2.4.x branchPaul McGuire2019-08-028-1286/+1496
| |
* | Version 2.4.2a1 - changing [...] notation to ZeroOrMore, not OneOrMorePaul McGuire2019-07-236-1260/+1352
|/
* Fix latent bug if adding a parse action after having cleared parse actions ↵pyparsing_2.4.1Paul McGuire2019-07-202-2/+6
| | | | with None
* Update coding styles; better comments, attribution of example filePaul McGuire2019-07-201-9/+21
|
* Change example to use addCondition instead of parse action that raises ↵Paul McGuire2019-07-191-10/+10
| | | | ParseException
* Missing bits in CONTRIBUTING filePaul McGuire2019-07-151-4/+5
|
* Add CONTRIBUTING.md guidelines; code and whitespace cleanupPaul McGuire2019-07-153-948/+1091
|
* Update/cleanup code in examplesPaul McGuire2019-07-138-1187/+1245
|
* Update `__eq__` to Py2/Py3 compatPaul McGuire2019-07-131-2/+5
|
* Some code cleanup based on inspection reportsPaul McGuire2019-07-131-4/+8
|
* Some performance refinements, pre-resolving re.match to re_match attribute, ↵Paul McGuire2019-07-131-31/+52
| | | | overriding current class with a class with optimized parseImpl()
* Simplify from_dict signature, support nested dict -> nested ParseResultsPaul McGuire2019-07-112-17/+22
|
* Add include_list optional arg to ParseResults.dump(); make Optional default ↵Paul McGuire2019-07-102-10/+28
| | | | singleton class-local
* Add new module symbols to __all__Paul McGuire2019-07-091-2/+3
|
* Cleaned up CHANGES to accurately describe the pre/post 2.3.0 bugfix ↵Paul McGuire2019-07-093-20/+150
| | | | behavior; added file argument to runTests; added conditionAsParseAction helper
* sys.write does not take keyword argsPaul McGuire2019-07-081-2/+2
|
* Add __diag__ namespace to enable diagnostic switches; add asKeyword optional ↵Paul McGuire2019-07-083-34/+189
| | | | arg for oneOf to emit Keyword expressions instead of Literals
* Nicer looking found string if fail on backslashPaul McGuire2019-07-081-1/+1
|
* Add deprecation Final Warning to CHANGESPaul McGuire2019-07-071-3/+31
|
* Some code cleanup in unitTests.pyPaul McGuire2019-07-071-109/+177
|
* Augment ParseException str() output to include what character was found at ↵Paul McGuire2019-07-072-4/+26
| | | | the error location, to help diagnose errors.
* Add ParseResults.from_dict classmethod, for easy construction outside of ↵Paul McGuire2019-07-072-3/+32
| | | | parseString
* Code reorg/reformat, added results namesPaul McGuire2019-07-061-127/+151
|
* Run *all* the unit tests!Paul McGuire2019-07-061-1/+0
|
* Add support for multiple '...' skips in a single expression; `_skippped` ↵Paul McGuire2019-07-064-31/+49
| | | | results name will always return a list of skipped items
* Cleanup unit tests for SkipTo expressions, especially using '...'Paul McGuire2019-07-051-31/+47
|