def any(ls): """Reimplementation of 'any' function, which is not available in Python 2.4 yet.""" _log.deprecated("own definition of any", "2.0") return _any(ls)
def any(ls): """Reimplementation of 'any' function, which is not available in Python 2.4 yet.""" return _any(ls)