From 8c3daeea1286cd52c2ba857e198d7061347e5be8 Mon Sep 17 00:00:00 2001 From: Vo Minh Thu Date: Wed, 18 Jan 2012 12:46:40 +0100 Subject: [PATCH] [IMP] tools: removed __builtin__.{all,any} (they were there for previous python versions). bzr revid: vmt@openerp.com-20120118114640-sm71f9fi48n4qn3q --- openerp/tools/misc.py | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/openerp/tools/misc.py b/openerp/tools/misc.py index b888c898e40..67e4fd6e655 100644 --- a/openerp/tools/misc.py +++ b/openerp/tools/misc.py @@ -545,28 +545,6 @@ class currency(float): def to_xml(s): return s.replace('&','&').replace('<','<').replace('>','>') -# 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():