summaryrefslogtreecommitdiff
path: root/src/CHANGES
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-02-22 01:51:33 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-02-22 01:51:33 +0000
commit158315294d41ec0f833969f5781aa6f3fa61aafc (patch)
treef44185ee5333edeb20b5e034b2a78915cc1962fa /src/CHANGES
parent2c5a9633e9f44d7594170d279de4476b287820f1 (diff)
downloadpyparsing-158315294d41ec0f833969f5781aa6f3fa61aafc.tar.gz
Fixed bug in SkipTo when using failOn; replaced explicit references to obj.__dict__ with vars(obj) (several places); tightened up unit tests for SkipTo
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@327 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
Diffstat (limited to 'src/CHANGES')
-rw-r--r--src/CHANGES2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 2aea473..2072701 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -6,6 +6,8 @@ Version 2.1.1 -
------------------------------
- Added support for assigning to ParseResults using slices.
+- Fixed bug in SkipTo when using failOn, reported by robyschek, thanks!
+
- Removed use of functools.partial in replaceWith, as this creates
an ambiguous signature for the generated parse action, which fails in
PyPy. Reported by Evan Hubinger, thanks Evan!