Changeset 8563 for branches/jingle

Show
Ignore:
Timestamp:
08/24/07 17:44:49 (15 months ago)
Author:
liori
Message:

Jingle: backport of py2.5-only function

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/jingle/src/common/jingle.py

    r8559 r8563  
    2525import farsight 
    2626sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_LOCAL) 
     27 
     28def all(iterable):              # backport of py2.5 function 
     29        for element in iterable: 
     30                if not element: 
     31                        return False 
     32        return True 
    2733 
    2834def timeout_add_and_call(timeout, callable, *args, **kwargs):