summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2012-11-17 22:27:12 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2012-11-17 22:27:12 +0000
commit12ee2e34f2faec340a77e9a44b7d63c5d55ca57d (patch)
treeb62c2f653c2d62af05075de2092ec747ab11e458
parent21980d021b403df5e1bddb57306d4169609f5bdf (diff)
downloadpyparsing-12ee2e34f2faec340a77e9a44b7d63c5d55ca57d.tar.gz
Add notes for operatorPrecedence renaming to infixNotation, and adding optional lpar and rpar arguments
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@240 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 0a74d45..b1f4bc1 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -30,6 +30,14 @@ Version 1.5.7 - October, 2012
storing the contents of a Forward(). '<<=' does not have the same
operator precedence problems that '<<' does.
+- 'operatorPrecedence' is being renamed 'infixNotation' as a better
+ description of what this helper function creates. 'operatorPrecedence'
+ is deprecated, and will be dropped entirely in a future release.
+
+- Added optional arguments lpar and rpar to operatorPrecedence, so that
+ expressions that use it can override the default suppression of the
+ grouping characters.
+
- Added support for using single argument builtin functions as parse
actions. Now you can write 'expr.setParseAction(len)' and get back
the length of the list of matched tokens. Supported builtins are: