Disable further changes to the current settings. After calling this method, the present state of the settings will become immutable. Trying to change values through the :meth:`~set` method and its variants won't be possible and will be alerted.
(self)
| 630 | return copy.deepcopy(self) |
| 631 | |
| 632 | def freeze(self) -> None: |
| 633 | """ |
| 634 | Disable further changes to the current settings. |
| 635 | |
| 636 | After calling this method, the present state of the settings will become |
| 637 | immutable. Trying to change values through the :meth:`~set` method and |
| 638 | its variants won't be possible and will be alerted. |
| 639 | """ |
| 640 | self.frozen = True |
| 641 | |
| 642 | def frozencopy(self) -> Self: |
| 643 | """ |
no outgoing calls