[tryton-debian-vcs] tryton-proteus branch upstream-3.8 updated. upstream/3.8.2-1-g85efc83

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Mon Aug 8 09:36:29 UTC 2016


The following commit has been merged in the upstream-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/3.8.2-1-g85efc83

commit 85efc83f4c94229e46dd43a55f6b9128eca19ace
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Fri Aug 5 12:07:59 2016 +0200

    Adding upstream version 3.8.3.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index d1ae480..e3d6ec5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.3 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.2 - 2016-07-04
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 00f08f4..7c26124 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.8.2
+Version: 3.8.3
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index 00f08f4..7c26124 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.8.2
+Version: 3.8.3
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus/__init__.py b/proteus/__init__.py
index 1bf7b0e..de5b982 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "3.8.2"
+__version__ = "3.8.3"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff --git a/proteus/pyson.py b/proteus/pyson.py
index d90cd8a..112d6df 100644
--- a/proteus/pyson.py
+++ b/proteus/pyson.py
@@ -58,6 +58,8 @@ class PYSON(object):
         else:
             return And(self, other)
 
+    __rand__ = __and__
+
     def __or__(self, other):
         if (isinstance(other, PYSON)
                 and other.types() != set([bool])):
@@ -70,6 +72,8 @@ class PYSON(object):
         else:
             return Or(self, other)
 
+    __ror__ = __or__
+
     def __eq__(self, other):
         return Equal(self, other)
 
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list