Save the state of the entire Namespace tree structure.
(self, path)
| 98 | __getitem__ = __getattr__ |
| 99 | |
| 100 | def save(self, path): |
| 101 | "Save the state of the entire Namespace tree structure." |
| 102 | if isinstance(self.__owner, Namespace): |
| 103 | self.__owner.save(path) |
| 104 | else: |
| 105 | self._save(path, {Namespace: self.state}) |
| 106 | |
| 107 | def load(self, path): |
| 108 | "Load the state of the entire Namespace tree structure." |
no test coverage detected