コード例 #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
ファイル: Util.py プロジェクト: bluebellzhy/chromium
 def __imul__(self, other):
     result = UserList.__imul__(self, other)
     result.unique = False
     return result
コード例 #4
0
ファイル: base.py プロジェクト: dainmiller/vimwiki-org
 def __imul__(self, n):
     res = UserList.__imul__(self, n)
     self._changed()
     return res
コード例 #5
0
ファイル: liborgmode.py プロジェクト: Sophrinix/vim-orgmode
	def __imul__(self, n):
		res = UserList.__imul__(self, n)
		self._changed()
		return res