diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-06-09 22:50:19 -0500 |
---|---|---|
committer | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-06-09 22:50:19 -0500 |
commit | 6267bb50b3b462e0515e204a83ccdfc3c65870d7 (patch) | |
tree | 6df5238b7d8f68cfda6c42e8a1f57dd5e5c86216 | |
parent | 17aaf616a752990327ec51f41d2ac4c4a0871215 (diff) | |
download | pyparsing-git-6267bb50b3b462e0515e204a83ccdfc3c65870d7.tar.gz |
Add CHANGES blurb for new ignoreWhitespace and leaveWhitespace methods with recurse arguments
-rw-r--r-- | CHANGES | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -64,8 +64,8 @@ Deprecated features removed: will have changed as a result. -Version 3.0.0a2 ---------------- +Version 3.0.0a2 - June, 2020 +---------------------------- - API CHANGE Changed result returned when parsing using countedArray, the array items are no long returned in a doubly-nested @@ -94,6 +94,11 @@ Version 3.0.0a2 Very nice work provided by Michael Milton, thanks a ton! +- Added ignoreWhitespace(recurse:bool = True) and added a + recurse argument to leaveWhitespace, both added to provide finer + control over pyparsing's whitespace skipping. Also contributed + by Michael Milton. + - Enhanced ParseResults dump() to show both results names and list subitems. Fixes bug where adding a results name would hide lower-level structures in the ParseResults. |