本文整理汇总了Python中lib.reporting.logger.Logger.add_result方法的典型用法代码示例。如果您正苦于以下问题:Python Logger.add_result方法的具体用法?Python Logger.add_result怎么用?Python Logger.add_result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lib.reporting.logger.Logger
的用法示例。
在下文中一共展示了Logger.add_result方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Destroy
# 需要导入模块: from lib.reporting.logger import Logger [as 别名]
# 或者: from lib.reporting.logger.Logger import add_result [as 别名]
def Destroy(self, *args, **kw):
self.shown = False
Logger.add_result("Dialog '%s' closed" % self.GetLabel())
wxTextEntryDialog.Destroy(self, *args, **kw)
示例2: Destroy
# 需要导入模块: from lib.reporting.logger import Logger [as 别名]
# 或者: from lib.reporting.logger.Logger import add_result [as 别名]
def Destroy(self, *args, **kw):
self.shown = False
Logger.add_result("Dialog '%s' closed" % self.GetLabel())
wxSingleChoiceDialog.Destroy(self, *args, **kw)
示例3: ShowModal
# 需要导入模块: from lib.reporting.logger import Logger [as 别名]
# 或者: from lib.reporting.logger.Logger import add_result [as 别名]
def ShowModal(self, *args, **kw):
self.shown = True
Logger.add_result("Dialog opened")
wx.CallLater(TIME_TO_WAIT_FOR_DIALOG_TO_SHOW_IN_MILLISECONDS, self._register_and_explore)
super(TextEntryDialog, self).ShowModal(*args, **kw)
示例4: ShowModal
# 需要导入模块: from lib.reporting.logger import Logger [as 别名]
# 或者: from lib.reporting.logger.Logger import add_result [as 别名]
def ShowModal(self):
Logger.add_result("MessageDialog opened")
wx.CallLater(TIME_TO_WAIT_FOR_DIALOG_TO_SHOW_IN_MILLISECONDS,
self._explore, MessageDialog.listener)
return super(MessageDialog, self).ShowModal()