summaryrefslogtreecommitdiff
path: root/src/CHANGES
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-05-13 18:51:50 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-05-13 18:51:50 +0000
commitb0c3af8e8d9e3b3eac8455c1bd9bb1a32851bc6c (patch)
tree2a0e9a8ac3509bc1da1343bf7bad2d05c412e8f9 /src/CHANGES
parentf7336a81d67792afe97320398e9eb948b3fc0817 (diff)
downloadpyparsing-b0c3af8e8d9e3b3eac8455c1bd9bb1a32851bc6c.tar.gz
Added 'fatal' option to addCondition; enhancements to runTests, and added unit test for runTests
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@348 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
Diffstat (limited to 'src/CHANGES')
-rw-r--r--src/CHANGES10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 1a50a73..d2aa8ad 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -5,15 +5,16 @@ Change Log
Version 2.1.4 -
------------------------------
- Split out the '==' behavior in ParserElement, now implemented
- as the matches() method. Using '==' for string test purposes will
- be removed in a future release.
+ as the ParserElement.matches() method. Using '==' for string test
+ purposes will be removed in a future release.
- Expanded capabilities of runTests(). Will now accept embedded
comments (default is Python style, leading '#' character, but
customizable). Comments will be emitted along with the tests and
test output. Useful during test development, to create a test string
consisting only of test case description comments separated by
- blank lines, and then fill in the test cases.
+ blank lines, and then fill in the test cases. Will also highlight
+ ParseFatalExceptions with "(FATAL)".
- Added a 'pyparsing_common' class containing common/helpful little
expressions such as integer, float, identifier, etc. I used this
@@ -23,6 +24,9 @@ Version 2.1.4 -
- Minor enhancement to traceParseAction decorator, to retain the
parse action's name for the trace output.
+- Added optional 'fatal' keyword arg to addCondition, to indicate that
+ a condition failure should halt parsing immediately.
+
Version 2.1.3 - May, 2016
------------------------------