Makes the ParamsDict immutable.
(self)
| 202 | self.__dict__[k] = copy.deepcopy(v) |
| 203 | |
| 204 | def lock(self): |
| 205 | """Makes the ParamsDict immutable.""" |
| 206 | self._locked = True |
| 207 | |
| 208 | def as_dict(self): |
| 209 | """Returns a dict representation of ParamsDict. |
no outgoing calls