[IMP] tools: removed __builtin__.{all,any} (they were there for previous python versions).

bzr revid: vmt@openerp.com-20120118114640-sm71f9fi48n4qn3q
This commit is contained in:
Vo Minh Thu 2012-01-18 12:46:40 +01:00
parent b5caa70b83
commit 8c3daeea12
1 changed files with 0 additions and 22 deletions

View File

@ -545,28 +545,6 @@ class currency(float):
def to_xml(s):
return s.replace('&','&amp;').replace('<','&lt;').replace('>','&gt;')
# to be compatible with python 2.4
import __builtin__
if not hasattr(__builtin__, 'all'):
def all(iterable):
for element in iterable:
if not element:
return False
return True
__builtin__.all = all
del all
if not hasattr(__builtin__, 'any'):
def any(iterable):
for element in iterable:
if element:
return True
return False
__builtin__.any = any
del any
def get_iso_codes(lang):
if lang.find('_') != -1:
if lang.split('_')[0] == lang.split('_')[1].lower():