예제 #1
0
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
예제 #2
0
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
예제 #3
0
 def __add__(self, other):
     result = UserList.__add__(self, other)
     result.unique = False
     return result
예제 #4
0
파일: Util.py 프로젝트: georgescubogdan/PP
 def __add__(self, other):
     result = UserList.__add__(self, other)
     result.unique = False
     return result
예제 #5
0
파일: Util.py 프로젝트: jmatt/scons
 def __add__(self, other):
     return UserList.__add__(self, CLVar(other))