Copy this RcParams instance.
(self)
| 837 | ) |
| 838 | |
| 839 | def copy(self): |
| 840 | """Copy this RcParams instance.""" |
| 841 | rccopy = self.__class__() |
| 842 | for k in self: # Skip deprecations and revalidation. |
| 843 | rccopy._set(k, self._get(k)) |
| 844 | return rccopy |
| 845 | |
| 846 | |
| 847 | def rc_params(fail_on_error=False): |
no test coverage detected