summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-08-11 16:10:28 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-08-11 16:10:28 +0000
commitfc4697b083158381451a713305dd5a56497928ba (patch)
tree0b8a3349c8735b3fd236d49c06cb3bc2ba34c29a
parenta6c722140499dcfbd383f45c29cc235148b785b9 (diff)
downloadpyparsing-fc4697b083158381451a713305dd5a56497928ba.tar.gz
Update changelog with Iterable improvements to oneOf
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@410 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/CHANGES5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 13ae937..63fef0c 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -8,6 +8,11 @@ Version 2.1.7 -
tests) when using ParseSyntaxExceptions (raised when using operator '-')
with packrat parsing.
+- Minor fix to oneOf, to accept all iterables, not just space-delimited
+ strings and lists. (If you have a list or set of strings, it is
+ not necessary to concat them using ' '.join to pass them to oneOf,
+ oneOf will accept the list or set or generator directly.)
+
Version 2.1.6 -
------------------------------