Hello community,

here is the log from the commit of package python3-EasyProcess for 
openSUSE:Factory checked in at 2016-10-28 10:44:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-EasyProcess (Old)
 and      /work/SRC/openSUSE:Factory/.python3-EasyProcess.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-EasyProcess"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-EasyProcess/python3-EasyProcess.changes  
2016-05-25 21:23:03.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-EasyProcess.new/python3-EasyProcess.changes 
    2016-10-28 10:45:00.000000000 +0200
@@ -1,0 +2,12 @@
+Sun Oct  2 16:54:21 UTC 2016 - [email protected]
+
+- update to version 0.2.3:
+  * fix travis error: "Fatal Python error: deallocating None"
+  * fix test coverage py35 error: "Fatal Python error: deallocating
+    None"
+  * FIX: Ignore errors when decoding to utf-8
+  * fix repr (#9)
+  * vagrant: fix locale
+  * doc
+
+-------------------------------------------------------------------

Old:
----
  EasyProcess-0.2.2.tar.gz

New:
----
  EasyProcess-0.2.3.tar.gz

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

Other differences:
------------------
++++++ python3-EasyProcess.spec ++++++
--- /var/tmp/diff_new_pack.qs86YM/_old  2016-10-28 10:45:01.000000000 +0200
+++ /var/tmp/diff_new_pack.qs86YM/_new  2016-10-28 10:45:01.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python3-EasyProcess
-Version:        0.2.2
+Version:        0.2.3
 Release:        0
 Url:            https://github.com/ponty/easyprocess
 Summary:        Easy to use python subprocess interface

++++++ EasyProcess-0.2.2.tar.gz -> EasyProcess-0.2.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/EasyProcess.egg-info/PKG-INFO 
new/EasyProcess-0.2.3/EasyProcess.egg-info/PKG-INFO
--- old/EasyProcess-0.2.2/EasyProcess.egg-info/PKG-INFO 2016-02-15 
07:03:32.000000000 +0100
+++ new/EasyProcess-0.2.3/EasyProcess.egg-info/PKG-INFO 2016-10-02 
11:13:46.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: EasyProcess
-Version: 0.2.2
+Version: 0.2.3
 Summary: Easy to use python subprocess interface.
 Home-page: https://github.com/ponty/easyprocess
 Author: ponty
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/PKG-INFO 
new/EasyProcess-0.2.3/PKG-INFO
--- old/EasyProcess-0.2.2/PKG-INFO      2016-02-15 07:03:32.000000000 +0100
+++ new/EasyProcess-0.2.3/PKG-INFO      2016-10-02 11:13:47.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: EasyProcess
-Version: 0.2.2
+Version: 0.2.3
 Summary: Easy to use python subprocess interface.
 Home-page: https://github.com/ponty/easyprocess
 Author: ponty
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/docs/conf.py 
new/EasyProcess-0.2.3/docs/conf.py
--- old/EasyProcess-0.2.2/docs/conf.py  2015-10-28 06:24:43.000000000 +0100
+++ new/EasyProcess-0.2.3/docs/conf.py  2016-04-14 18:32:12.000000000 +0200
@@ -19,13 +19,12 @@
     'sphinx.ext.autodoc',
 #     'sphinxcontrib.programoutput',
     #     'sphinxcontrib.programscreenshot',
-    'sphinx.ext.graphviz',
+#     'sphinx.ext.graphviz',
 #     'sphinxcontrib.autorun',
     #'sphinx.ext.autosummary',
     'sphinx.ext.intersphinx',
 ]
 intersphinx_mapping = {'python': ('http://docs.python.org/', None)}
-# intersphinx_mapping =  {'http://docs.python.org/': None}
 
 # Source
 master_doc = 'index'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/easyprocess/__init__.py 
new/EasyProcess-0.2.3/easyprocess/__init__.py
--- old/EasyProcess-0.2.2/easyprocess/__init__.py       2016-02-13 
11:08:49.000000000 +0100
+++ new/EasyProcess-0.2.3/easyprocess/__init__.py       2016-10-02 
10:27:18.000000000 +0200
@@ -115,7 +115,7 @@
             raise EasyProcessError(self, 'empty command!')
 
     def __repr__(self):
-        msg = '<%s cmd_param=%s cmd=%s oserror=%s returncode=%s stdout="%s" 
stderr="%s" timeout=%s>' % (
+        msg = '<%s cmd_param=%s cmd=%s oserror=%s return_code=%s stdout="%s" 
stderr="%s" timeout_happened=%s>' % (
             self.__class__.__name__,
             self.cmd_param,
             self.cmd,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/easyprocess/about.py 
new/EasyProcess-0.2.3/easyprocess/about.py
--- old/EasyProcess-0.2.2/easyprocess/about.py  2016-02-15 07:01:53.000000000 
+0100
+++ new/EasyProcess-0.2.3/easyprocess/about.py  2016-10-02 11:10:22.000000000 
+0200
@@ -1 +1 @@
-__version__ = '0.2.2'
+__version__ = '0.2.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.2/easyprocess/unicodeutil.py 
new/EasyProcess-0.2.3/easyprocess/unicodeutil.py
--- old/EasyProcess-0.2.2/easyprocess/unicodeutil.py    2016-02-13 
11:08:49.000000000 +0100
+++ new/EasyProcess-0.2.3/easyprocess/unicodeutil.py    2016-10-02 
10:27:18.000000000 +0200
@@ -60,5 +60,5 @@
         s = s.decode()
     else:
         if isinstance(s, str):
-            s = s.decode('utf-8')
+            s = s.decode('utf-8', 'ignore')
     return s


Reply via email to