当前位置: 首页>>代码示例>>Python>>正文


Python Actions.run方法代码示例

本文整理汇总了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()
开发者ID:atareao,项目名称:antiviral,代码行数:24,代码来源:antiviral.py

示例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)
开发者ID:AHAPX,项目名称:test-rest,代码行数:6,代码来源:tests.py


注:本文中的actions.Actions.run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。