summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@users.noreply.github.com>2020-06-09 22:50:19 -0500
committerPaul McGuire <ptmcg@users.noreply.github.com>2020-06-09 22:50:19 -0500
commit6267bb50b3b462e0515e204a83ccdfc3c65870d7 (patch)
tree6df5238b7d8f68cfda6c42e8a1f57dd5e5c86216
parent17aaf616a752990327ec51f41d2ac4c4a0871215 (diff)
downloadpyparsing-git-6267bb50b3b462e0515e204a83ccdfc3c65870d7.tar.gz
Add CHANGES blurb for new ignoreWhitespace and leaveWhitespace methods with recurse arguments
-rw-r--r--CHANGES9
1 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 5868b1a..70a7cf4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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.