Beispiel #1
0
	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)
Beispiel #2
0
 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)
Beispiel #3
0
	def bypass_builtin_command_interpreter(self, value):
		zero.bypass_builtin_command_interpreter(value)
Beispiel #4
0
 def bypass_builtin_command_interpreter(self, value):
     zero.bypass_builtin_command_interpreter(value)