"Magic that displays content of the dictionary"
// do not return __builtins__ beacuse it is too long...
actions = line.strip().split()
keys = [x for x in actions if x not in ["reset", "all", "keys"]]
for x in keys:
if not x in env.sos_dict:
raise RuntimeError("Unrecognized sosdict option or variable name {}".format(x))
if "reset" in actions:
return self._reset()
if "keys" in actions:
if "all" in actions: