(self: _Self, **kw: Any)
| 199 | raise NotImplementedError("Immutable objects do not support copying") |
| 200 | |
| 201 | def _clone(self: _Self, **kw: Any) -> _Self: |
| 202 | return self |
| 203 | |
| 204 | def _copy_internals( |
| 205 | self, *, omit_attrs: Iterable[str] = (), **kw: Any |
no outgoing calls
no test coverage detected