1
0

Accepting request 306410 from home:benoit_monin:branches:devel:languages:python

- update to version 2.0.3
- fix end of line encoding of every file in examples

OBS-URL: https://build.opensuse.org/request/show/306410
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=31
This commit is contained in:
Denisart Benjamin
2015-05-16 12:53:17 +00:00
committed by Git OBS Bridge
parent 54a411dd3d
commit f20a1ebe23
4 changed files with 29 additions and 6 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Mon May 11 17:40:24 UTC 2015 - benoit.monin@gmx.fr
- update to version 2.0.3:
* Fixed escaping behavior in QuotedString. Formerly, only
quotation marks (or characters designated as quotation marks in
the QuotedString constructor) would be escaped. Now all escaped
characters will be escaped, and the escaping backslashes will
be removed.
* Fixed regression in ParseResults.pop() - pop() was pretty much
broken after I added *improvements* in 2.0.2. Reported by Iain
Shelvington, thanks Iain!
* Fixed bug in And class when initializing using a generator.
* Enhanced ParseResults.dump() method to list out nested
ParseResults that are unnamed arrays of sub-structures.
* Fixed UnboundLocalError under Python 3.4 in oneOf method,
reported on Sourceforge by aldanor, thanks!
* Fixed bug in ParseResults __init__ method, when returning
non-ParseResults types from parse actions that implement
__eq__. Raised during discussion on the pyparsing wiki with
cyrfer.
- fix end of line encoding of every file in examples
-------------------------------------------------------------------
Tue Nov 11 17:34:18 UTC 2014 - Greg.Freemyer@gmail.com