本文整理汇总了Python中context.Context.remove_extra_else方法的典型用法代码示例。如果您正苦于以下问题:Python Context.remove_extra_else方法的具体用法?Python Context.remove_extra_else怎么用?Python Context.remove_extra_else使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类context.Context
的用法示例。
在下文中一共展示了Context.remove_extra_else方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: int
# 需要导入模块: from context import Context [as 别名]
# 或者: from context.Context import remove_extra_else [as 别名]
continue
match = re.search('figura\s*(\d*)', verse, re.I | re.M)
figure_id = int(match.group(1))
del figures[figure_id]
elif verse.find("gata") != -1:
if context.has_extra():
context.remove_extra_end()
else:
context.remove_layer()
elif verse.find("altfel") != -1:
if context.has_extra():
context.remove_extra_else()
else:
context.set_location(False)
elif verse.find("daca") != -1:
if context.number_conditions > 0 and not context.should_evaluate():
context.add_extra()
else:
matches = re.findall('figura\s*(\d*)', verse, re.I | re.M)
figure_id1 = int(matches[0])
figure_id2 = int(matches[1])
context.add_layer(check_intersection(figures[figure_id1], figures[figure_id2]))