def super_handle(self, command_set):
handled = None
for command_i, command in enumerate(command_set):
to_capture = []
try:
to_capture = self.uncaptured_variable_blocks[command_i]
except:
pass
handled = self.handle_command(command.split(" "), to_capture, self.variables, self.meta)
if handled:
if "captured" in handled:
self.variables.update(handled["captured"])
print("")
#####################################
#TODO return aggregate message for scripts instead of last message
return handled
评论列表
文章目录