(self, p: Any, cycle: bool)
| 686 | |
| 687 | # https://ipython.readthedocs.io/en/stable/config/integrating.html#pretty-printing |
| 688 | def _repr_pretty_(self, p: Any, cycle: bool) -> None: |
| 689 | if cycle: |
| 690 | p.text(repr(self)) |
| 691 | else: |
| 692 | p.text(pformat(self.copy_to_dict())) |
| 693 | |
| 694 | def pop(self, name: _SettingsKey, default: Any = __default) -> Any: # pylint: disable=arguments-renamed |
| 695 | try: |
nothing calls this directly
no test coverage detected