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


Python Messager.debug方法代码示例

本文整理汇总了Python中message.Messager.debug方法的典型用法代码示例。如果您正苦于以下问题:Python Messager.debug方法的具体用法?Python Messager.debug怎么用?Python Messager.debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在message.Messager的用法示例。


在下文中一共展示了Messager.debug方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from message import Messager [as 别名]
# 或者: from message.Messager import debug [as 别名]
 def __init__(self, projectconf):
     self.data = {}
     self.val = True
     self.projectconf = projectconf
     for t in projectconf.get_entity_types():
         self.data[t] = []
     for t in projectconf.get_event_types():
         self.data[t] = []
     for t in projectconf.get_relation_types():
         self.data[t] = []
     for t in projectconf.get_attribute_types():
         self.data[t] = []
     for t in projectconf.get_equiv_types():
         self.data[t] = []
     try:
         nodes = projectconf.get_rules_type_hierarchy()
         if not nodes:
             raise KeyError
         for node in nodes:
             vrule = ValidationRule(node)
             self.data[vrule.type].append(vrule)
     except KeyError:
         self.val = False
         Messager.debug("No rules defined")
开发者ID:proycon,项目名称:brat,代码行数:26,代码来源:validation_rule.py

示例2: __init__

# 需要导入模块: from message import Messager [as 别名]
# 或者: from message.Messager import debug [as 别名]
 def __init__(self, directory):
     # debugging (note: latter test for windows paths)
     if directory[:1] != "/" and not re.search(r'^[a-zA-Z]:\\', directory):
         Messager.debug("Project config received relative directory ('%s'), configuration may not be found." % directory, duration=-1)
     self.directory = directory
开发者ID:TsujiiLaboratory,项目名称:stav,代码行数:7,代码来源:projectconfig.py


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