Esempio n. 1
0
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."""
    _log.deprecated("own definition of all", "2.0")
    return _all(ls)
Esempio n. 3
0
def all(ls):
    """Reimplementation of 'all' function, which is not available in Python 2.4 yet."""
    return _all(ls)