本文整理汇总了Python中context.Context.step方法的典型用法代码示例。如果您正苦于以下问题:Python Context.step方法的具体用法?Python Context.step怎么用?Python Context.step使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类context.Context
的用法示例。
在下文中一共展示了Context.step方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_run
# 需要导入模块: from context import Context [as 别名]
# 或者: from context.Context import step [as 别名]
def test_run(self):
instructions = [Mov(AX, '2'), Mov(AX, '4')]
context = Context(instructions)
context.run()
self.assertEqual(context.registers.get(AX).value, 0)
context.step()
self.assertEqual(context.registers.get(AX).value, 2)
context.step()
self.assertEqual(context.registers.get(AX).value, 4)
示例2: run_program
# 需要导入模块: from context import Context [as 别名]
# 或者: from context.Context import step [as 别名]
def run_program(program_file):
lines = program_file.readlines()
parser = Parser()
instructions = parser.parse_text(lines)
if len(instructions) == 0:
die(1, 'nothing to run, aborting.')
context = Context(instructions)
view = MainView(100, 40, context)
while True:
view.paint()
inp = input()
if inp == 'r':
context.run()
elif inp == '':
try:
if not context.step():
break
except Exception as e:
die(1, str(e))
elif inp == 'a':
die(0, 'exiting program.')