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