Load the state of the entire Namespace tree structure.
(self, path)
| 105 | self._save(path, {Namespace: self.state}) |
| 106 | |
| 107 | def load(self, path): |
| 108 | "Load the state of the entire Namespace tree structure." |
| 109 | if isinstance(self.__owner, Namespace): |
| 110 | self.__owner.load(path) |
| 111 | else: |
| 112 | self.state = self._load(path)[Namespace] |
| 113 | |
| 114 | def __get_state(self): |
| 115 | "Get the state of this Namespace and any child Namespaces." |
no test coverage detected