(self: _Self, **kw: Any)
| 211 | raise NotImplementedError("Immutable objects do not support copying") |
| 212 | |
| 213 | def _clone(self: _Self, **kw: Any) -> _Self: |
| 214 | return self |
| 215 | |
| 216 | def _copy_internals( |
| 217 | self, *, omit_attrs: Iterable[str] = (), **kw: Any |
no outgoing calls
no test coverage detected