예제 #1
0
파일: Models.py 프로젝트: hiddenman/impexp
 def __imul__(self, n):
     UserList.__imul__(self, n)
     self.notify()
예제 #2
0
파일: Util.py 프로젝트: georgescubogdan/PP
 def __imul__(self, other):
     result = UserList.__imul__(self, other)
     result.unique = False
     return result
예제 #3
0
 def __imul__(self, other):
     result = UserList.__imul__(self, other)
     result.unique = False
     return result
예제 #4
0
 def __imul__(self, n):
     res = UserList.__imul__(self, n)
     self._changed()
     return res
예제 #5
0
	def __imul__(self, n):
		res = UserList.__imul__(self, n)
		self._changed()
		return res