本文整理汇总了Python中socorrolib.lib.util.DotDict.collapse_arguments方法的典型用法代码示例。如果您正苦于以下问题:Python DotDict.collapse_arguments方法的具体用法?Python DotDict.collapse_arguments怎么用?Python DotDict.collapse_arguments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类socorrolib.lib.util.DotDict
的用法示例。
在下文中一共展示了DotDict.collapse_arguments方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: import
# 需要导入模块: from socorrolib.lib.util import DotDict [as 别名]
# 或者: from socorrolib.lib.util.DotDict import collapse_arguments [as 别名]
SendWaitReceivePort,
Bug811804,
Bug812318,
)
from socorro.processor.signature_utilities import CSignatureTool
from socorro.unittest.processor.test_breakpad_pipe_to_json import (
cannonical_json_dump
)
from socorro.unittest.testbase import TestCase
csig_config = DotDict()
csig_config.irrelevant_signature_re = ''
csig_config.prefix_signature_re = ''
csig_config.signatures_with_line_numbers_re = ''
csig_config.signature_sentinels = []
csig_config.collapse_arguments = True
c_signature_tool = CSignatureTool(csig_config)
def create_basic_fake_processor():
fake_processor = DotDict()
fake_processor.c_signature_tool = c_signature_tool
fake_processor.config = DotDict()
# need help figuring out failures? switch to FakeLogger and read stdout
fake_processor.config.logger = SilentFakeLogger()
fake_processor.processor_notes = []
#fake_processor.config.logger = FakeLogger()
return fake_processor
class TestSkunkClassificationRule(TestCase):