예제 #1
0
파일: dmi.py 프로젝트: Panke/zerobugs
	def run_interactive(self, thread):
		zero.bypass_builtin_command_interpreter(True)
		self.__debugger.command("list", thread)
		line = raw_input("(zero) ")
		if line:
			tokens = line.split(" ")
			if tokens[0][0] == '-':
				return self.__mi_command(tokens, thread)
		self.__debugger.command(line, thread)
예제 #2
0
파일: dmi.py 프로젝트: cristivlas/zerobugs
 def run_interactive(self, thread):
     zero.bypass_builtin_command_interpreter(True)
     self.__debugger.command("list", thread)
     line = raw_input("(zero) ")
     if line:
         tokens = line.split(" ")
         if tokens[0][0] == '-':
             return self.__mi_command(tokens, thread)
     self.__debugger.command(line, thread)
예제 #3
0
파일: app.py 프로젝트: Panke/zerobugs
	def bypass_builtin_command_interpreter(self, value):
		zero.bypass_builtin_command_interpreter(value)
예제 #4
0
파일: app.py 프로젝트: cristivlas/zerobugs
 def bypass_builtin_command_interpreter(self, value):
     zero.bypass_builtin_command_interpreter(value)