示例#1
0
 def __imul__(self, n):
     UserList.__imul__(self, n)
     self.notify()
示例#2
0
 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