Set default instance of configuration. It stores default configuration, which can be returned by get_default_copy method. :param default: object of Configuration
(cls, default)
| 260 | |
| 261 | @classmethod |
| 262 | def set_default(cls, default): |
| 263 | """Set default instance of configuration. |
| 264 | |
| 265 | It stores default configuration, which can be |
| 266 | returned by get_default_copy method. |
| 267 | |
| 268 | :param default: object of Configuration |
| 269 | """ |
| 270 | cls._default = copy.deepcopy(default) |
| 271 | |
| 272 | @classmethod |
| 273 | def get_default_copy(cls): |
no outgoing calls