コード例 #1
0
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
コード例 #2
0
ファイル: importLib.py プロジェクト: jdobes/spacewalk
 def __add__(self, other):
     for obj in other:
         validateInformation(obj)
     UserList.__add__(self, other)
コード例 #3
0
ファイル: Util.py プロジェクト: bluebellzhy/chromium
 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))