Create a shallow copy
(self, **kw: Any)
| 176 | shallow_copy(self, other) |
| 177 | |
| 178 | def _clone(self, **kw: Any) -> Self: |
| 179 | """Create a shallow copy""" |
| 180 | c = self.__class__.__new__(self.__class__) |
| 181 | self._shallow_copy_to(c) |
| 182 | return c |
| 183 | |
| 184 | |
| 185 | class GenerativeOnTraversal(HasShallowCopy): |
no test coverage detected