summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2010-06-21 13:04:46 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2010-06-21 13:04:46 +0000
commit4bb2691e52d7cfffa5f6c9292431f5db8787172d (patch)
treeaf32b98292238cde18389b27589889fa968acbea
parent868a1fe6e0ab7caec50eb875a7316ca6b7c0ab96 (diff)
downloadpyparsing-4bb2691e52d7cfffa5f6c9292431f5db8787172d.tar.gz
Two more examples were added to this release
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/src@198 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index e2b1140..cd01129 100644
--- a/CHANGES
+++ b/CHANGES
@@ -42,6 +42,9 @@ Version 1.5.3 - May, 2010
(Note: this example is separately licensed under the GPLv3,
and requires Python 2.6 or higher.) Thank you, Zarko!
+ . oc.py, a subset C parser, using the BNF from the 1996 Obfuscated C
+ Contest.
+
. stateMachine2.py, a modified version of stateMachine.py submitted
by Matt Anderson, that is compatible with Python versions 2.7 and
above - thanks so much, Matt!
@@ -64,6 +67,9 @@ Version 1.5.3 - May, 2010
implementing a special variation on Literal that does "close" matching,
up to a given number of allowed mismatches. The application was to
find matching gene sequences, with allowance for one or two mismatches.
+
+ . tagCapture.py, a sample showing how to use a Forward placeholder to
+ enforce matching of text parsed in a previous expression.