def contain(command):
# TODO: exec command, note the difference between the exec flavours
# https://docs.python.org/2/library/os.html#os.execv
# NOTE: command is an array (the first element is path/file, and the entire
# array is exec's args)
os._exit(0) # TODO: remove this after adding exec
评论列表
文章目录