[Libreoffice-commits] dictionaries.git: en/pythonpath hu_HU/pythonpath pt_BR/pythonpath

László Németh nemeth at numbertext.org
Thu May 15 04:08:55 PDT 2014


 en/pythonpath/lightproof_impl_en.py       |    2 +-
 hu_HU/pythonpath/lightproof_impl_hu_HU.py |    2 +-
 pt_BR/pythonpath/lightproof_impl_pt_BR.py |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 38b1410ca674bd47d218e4e77cf90e6adcc6d87c
Author: László Németh <nemeth at numbertext.org>
Date:   Thu May 15 13:03:17 2014 +0200

    fix LightProof measurement conversion for Python 3
    
    Change-Id: I6d36bc804271956e1c8649df0832615311fcf5e1

diff --git a/en/pythonpath/lightproof_impl_en.py b/en/pythonpath/lightproof_impl_en.py
index 2c7072c..ac668dc 100644
--- a/en/pythonpath/lightproof_impl_en.py
+++ b/en/pythonpath/lightproof_impl_en.py
@@ -328,7 +328,7 @@ def measurement(mnum, min, mout, mstr, decimal, remove):
         mnum = mnum.replace(" 1/2", ".5").replace(u" \xbd", ".5").replace(u"\xbd",".5")
     m = calc("CONVERT_ADD", (float(eval(mnum.replace(remove, "").replace(decimal, ".").replace(u"\u2212", "-"))), min, mout))
     a = list(set([str(calc("ROUND", (m, 0)))[:-2], str(calc("ROUND", (m, 1))), str(calc("ROUND", (m, 2))), str(m)])) # remove duplicated rounded items
-    a.sort(lambda x, y: len(x) - len(y)) # sort by string length
+    a.sort(key=lambda x: len(x)) # sort by string length
     return (mstr + "\n").join(a).replace(".", decimal).replace("-", u"\u2212") + mstr
 
 
diff --git a/hu_HU/pythonpath/lightproof_impl_hu_HU.py b/hu_HU/pythonpath/lightproof_impl_hu_HU.py
index 62e0025..d88c136 100644
--- a/hu_HU/pythonpath/lightproof_impl_hu_HU.py
+++ b/hu_HU/pythonpath/lightproof_impl_hu_HU.py
@@ -244,7 +244,7 @@ paralcap = re.compile(u"(?u)^[a-z\xf6\xfc\xf3\u0151\xfa\xe9\xe1\u0171\xed].*[.?!
 def measurement(mnum, min, mout, mstr):
     m = calc("CONVERT_ADD", (float(mnum.replace(",", ".").replace(u"\u2212", "-")), min, mout))
     a = list(set([str(calc("ROUND", (m, 0)))[:-2], str(calc("ROUND", (m, 1))), str(calc("ROUND", (m, 2))), str(m)])) # remove duplicated rounded items
-    a.sort(lambda x, y: len(x) - len(y)) # sort by string length
+    a.sort(key=lambda x: len(x)) # sort by string length
     return (mstr + "|").join(a).replace(".", ",").replace("-", u"\u2212") + mstr
 
 
diff --git a/pt_BR/pythonpath/lightproof_impl_pt_BR.py b/pt_BR/pythonpath/lightproof_impl_pt_BR.py
index 8d0100f..8611ee5 100644
--- a/pt_BR/pythonpath/lightproof_impl_pt_BR.py
+++ b/pt_BR/pythonpath/lightproof_impl_pt_BR.py
@@ -24417,7 +24417,7 @@ def measurement(mnum, min, mout, mstr, decimal, remove):
         mnum = mnum.replace(" 1/2", ".5").replace(u" \xbd", ".5").replace(u"\xbd",".5")
     m = calc("CONVERT_ADD", (float(eval(mnum.replace(remove, "").replace(decimal, ".").replace(u"\u2212", "-"))), min, mout))
     a = list(set([str(calc("ROUND", (m, 0)))[:-2], str(calc("ROUND", (m, 1))), str(calc("ROUND", (m, 2))), str(m)])) # remove duplicated rounded items
-    a.sort(lambda x, y: len(x) - len(y)) # sort by string length
+    a.sort(key=lambda x: len(x)) # sort by string length
     return (mstr + "\n").join(a).replace(".", decimal).replace("-", u"\u2212") + mstr
 
 


More information about the Libreoffice-commits mailing list