(self)
| 2864 | self._patch = patch |
| 2865 | |
| 2866 | def _revalidate(self): |
| 2867 | patch_path = self._patch.get_path() |
| 2868 | # Force invalidation if the patch path changed; otherwise, let base |
| 2869 | # class check invalidation. |
| 2870 | if patch_path != self._path: |
| 2871 | self._path = patch_path |
| 2872 | self._transformed_path = None |
| 2873 | super()._revalidate() |
| 2874 | |
| 2875 | |
| 2876 | def _nonsingular(vmin, vmax, expander=0.001, tiny=1e-15, increasing=True): |
nothing calls this directly
no test coverage detected