summaryrefslogtreecommitdiff
path: root/src/CHANGES
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-06-12 22:00:04 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-06-12 22:00:04 +0000
commit5d9802adead9380b29824492f140c17054376081 (patch)
tree7bd22545c6eac17ff7c7d52c516e13a41ff23f22 /src/CHANGES
parent954d356444a76281e4f5f18b70b041a32d475cc6 (diff)
downloadpyparsing-5d9802adead9380b29824492f140c17054376081.tar.gz
Change result value returned by runTests to be a list of (test,result) tuples
Add pyparsing_common helpers convertToDate and convertToDatetime Add named regex fields to iso8601_date and iso8601_datetime Fix pyparsing_common method stripHTMLTags Corresponding cleanups in unittests git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@364 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
Diffstat (limited to 'src/CHANGES')
-rw-r--r--src/CHANGES4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 33f1266..10c5593 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -33,12 +33,14 @@ Verison 2.1.5 - June, 2016
. IPv4 and IPv6 addresses (including long, short, and mixed forms
of IPv6)
. MAC address
- . ISO8601 date and date time strings
+ . ISO8601 date and date time strings (with named fields for year, month, etc.)
. UUID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
. hex integer (returned as int)
. fraction (integer '/' integer, returned as float)
. mixed integer (integer '-' fraction, or just fraction, returned as float)
. stripHTMLTags (parse action to remove tags from HTML source)
+ . parse action helpers convertToDate and convertToDatetime to do custom parse
+ time conversions of parsed ISO8601 strings
- runTests now returns a two-tuple: success if all tests succeed,
and an output list of each test and its output lines.