Example #1
0
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
Example #2
0
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
Example #3
0
 def __add__(self, other):
     result = UserList.__add__(self, other)
     result.unique = False
     return result
Example #4
0
 def __add__(self, other):
     result = UserList.__add__(self, other)
     result.unique = False
     return result
Example #5
0
File: Util.py Project: jmatt/scons
 def __add__(self, other):
     return UserList.__add__(self, CLVar(other))