Hello community,

here is the log from the commit of package python3-pyparsing for 
openSUSE:Factory checked in at 2014-12-03 22:48:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-pyparsing (Old)
 and      /work/SRC/openSUSE:Factory/.python3-pyparsing.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-pyparsing"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-pyparsing/python3-pyparsing.changes      
2013-12-09 07:17:01.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pyparsing.new/python3-pyparsing.changes 
2014-12-03 22:49:00.000000000 +0100
@@ -0,0 +1,61 @@
+Sun Nov 30 21:09:17 UTC 2014 - a...@gmx.de
+
+- 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.
+
+- changes from version 2.0.2:
+  * Extended "expr(name)" shortcut (same as "expr.setResultsName(name)")
+    to accept "expr()" as a shortcut for "expr.copy()".
+  * Added "locatedExpr(expr)" helper, to decorate any returned tokens
+    with their location within the input string. Adds the results names
+    locn_start and locn_end to the output parse results.
+  * Added "pprint()" method to ParseResults, to simplify troubleshooting
+    and prettified output. Now instead of importing the pprint module
+    and then writing "pprint.pprint(result)", you can just write
+    "result.pprint()".  This method also accepts addtional positional and
+    keyword arguments (such as indent, width, etc.), which get passed
+    through directly to the pprint method
+    (see http://docs.python.org/2/library/pprint.html#pprint.pprint).
+  * Removed deprecation warnings when using '<<' for Forward expression
+    assignment. '<<=' is still preferred, but '<<' will be retained
+    for cases whre '<<=' operator is not suitable (such as in defining
+    lambda expressions).
+  * Expanded argument compatibility for classes and functions that
+    take list arguments, to now accept generators as well.
+  * Extended list-like behavior of ParseResults, adding support for
+    append and extend. NOTE: if you have existing applications using
+    these names as results names, you will have to access them using
+    dict-style syntax: res["append"] and res["extend"]
+  * ParseResults emulates the change in list vs. iterator semantics for
+    methods like keys(), values(), and items(). Under Python 2.x, these
+    methods will return lists, under Python 3.x, these methods will
+    return iterators.
+  * ParseResults now has a method haskeys() which returns True or False
+    depending on whether any results names have been defined. This simplifies
+    testing for the existence of results names under Python 3.x, which
+    returns keys() as an iterator, not a list.
+  * ParseResults now supports both list and dict semantics for pop().
+    If passed no argument or an integer argument, it will use list semantics
+    and pop tokens from the list of parsed tokens. If passed a non-integer
+    argument (most likely a string), it will use dict semantics and
+    pop the corresponding value from any defined results names. A
+    second default return value argument is supported, just as in
+    dict.pop().
+  * Fixed bug in markInputline, thanks for reporting this, Matt Grant!
+  * Cleaned up my unit test environment, now runs with Python 2.6 and
+    3.3.
+
@@ -105 +165,0 @@
-

Old:
----
  pyparsing-2.0.1.tar.gz

New:
----
  pyparsing-2.0.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python3-pyparsing.spec ++++++
--- /var/tmp/diff_new_pack.TYGxNp/_old  2014-12-03 22:49:01.000000000 +0100
+++ /var/tmp/diff_new_pack.TYGxNp/_new  2014-12-03 22:49:01.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pyparsing
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           python3-pyparsing
-Version:        2.0.1
+Version:        2.0.3
 Release:        0
 Url:            http://pyparsing.wikispaces.com/
 Summary:        Grammar Parser Library for Python

++++++ pyparsing-2.0.1.tar.gz -> pyparsing-2.0.3.tar.gz ++++++
++++ 14492 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to