本文整理汇总了Python中actions.Actions.run方法的典型用法代码示例。如果您正苦于以下问题:Python Actions.run方法的具体用法?Python Actions.run怎么用?Python Actions.run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类actions.Actions
的用法示例。
在下文中一共展示了Actions.run方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_scan_finished
# 需要导入模块: from actions import Actions [as 别名]
# 或者: from actions.Actions import run [as 别名]
def on_scan_finished(self, scanner):
# GLib.idle_add(self._on_scan_finished)
if self.progreso_dialog is not None:
self.progreso_dialog.destroy()
self.progreso_dialog = None
md = Gtk.MessageDialog(parent=self)
md.set_title('Antiviral')
md.set_property('message_type', Gtk.MessageType.INFO)
md.add_button(Gtk.STOCK_OK, Gtk.ResponseType.ACCEPT)
md.set_property('text', _('Antiviral'))
if len(self.infected) > 0:
md.format_secondary_text(
_('What a pity!, In this machine there are viruses!'))
md.run()
md.destroy()
actions = Actions(self, self.infected)
actions.run()
actions.destroy()
else:
md.format_secondary_text(_('Congratulations!!, no viruses found'))
md.run()
md.destroy()
示例2: test_Actions_run
# 需要导入模块: from actions import Actions [as 别名]
# 或者: from actions.Actions import run [as 别名]
def test_Actions_run(self, run):
actions = Actions([Action(), Action()])
actions.run()
self.assertEqual(run.call_count, 2)