コード例 #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)
コード例 #2
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)
コード例 #3
0
def all(ls):
    """Reimplementation of 'all' function, which is not available in Python 2.4 yet."""
    return _all(ls)