summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2009-04-18 05:21:19 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2009-04-18 05:21:19 +0000
commit8e93168d072196ec3a04a9d2506b387970ff90aa (patch)
tree8a9e1fa0557a8f71a9d4a68e0f2355079d5b6b17
parente6d69935d50bacafbaab7f4fa8b857c671071aaa (diff)
downloadpyparsing_1.5.2@182.tar.gz
Changes for pyparsing version 1.5.2pyparsing_1.5.2@182
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/src@182 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--CHANGES5
-rw-r--r--HowToUsePyparsing.txt12
-rw-r--r--pyparsingClassDiagram.JPGbin216763 -> 236402 bytes
-rw-r--r--pyparsingClassDiagram.PNGbin125444 -> 141354 bytes
4 files changed, 4 insertions, 13 deletions
diff --git a/CHANGES b/CHANGES
index 6047a2c..e42d4d9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -9,7 +9,7 @@ Version 1.5.2 - April, 2009
import pyparsing_py3
- Thanks for help from Patrick Laban and his friend is Geremy
+ Thanks for help from Patrick Laban and his friend Geremy
Condra on the pyparsing wiki.
- Removed __slots__ declaration on ParseBaseException, for
@@ -46,6 +46,9 @@ Version 1.5.2 - April, 2009
Based on a problem posed by Denis Spir on the Python tutor
list.
+- Added new example eval_arith.py, which extends the example
+ simpleArith.py to actually evaluate the parsed expressions.
+
Version 1.5.1 - October, 2008
-------------------------------
diff --git a/HowToUsePyparsing.txt b/HowToUsePyparsing.txt
index 21ad72c..11cc9fc 100644
--- a/HowToUsePyparsing.txt
+++ b/HowToUsePyparsing.txt
@@ -789,18 +789,6 @@ Helper methods
- ``dictOf( key, value )`` - convenience function for quickly declaring a
dictionary pattern of ``Dict( ZeroOrMore( Group( key + value ) ) )``.
-- ``nestedExpr(opener, closer, content, ignoreExpr)`` - helper method for defining
- nested lists enclosed in opening and closing delimiters ("(" and ")" are the default).
-
- - opener - opening character for a nested list (default="("); can also be a pyparsing expression
-
- - closer - closing character for a nested list (default=")"); can also be a pyparsing expression
-
- - content - expression for items within the nested lists (default=None)
-
- - ignoreExpr - expression for ignoring opening and closing delimiters (default=quotedString)
-
-
- ``makeHTMLTags( tagName )`` and ``makeXMLTags( tagName )`` - convenience
functions to create definitions of opening and closing tag expressions. Returns
a pair of expressions, for the corresponding <tag> and </tag> strings. Includes
diff --git a/pyparsingClassDiagram.JPG b/pyparsingClassDiagram.JPG
index 5b0ca90..ef10424 100644
--- a/pyparsingClassDiagram.JPG
+++ b/pyparsingClassDiagram.JPG
Binary files differ
diff --git a/pyparsingClassDiagram.PNG b/pyparsingClassDiagram.PNG
index d2b3031..f59baaf 100644
--- a/pyparsingClassDiagram.PNG
+++ b/pyparsingClassDiagram.PNG
Binary files differ