Return a copy of the proxy. Returns: A copy of the wrapped object, unconnected to the proxy.
(self)
| 2069 | self._mark_dirty(super().__setattr__, args=(name, value)) |
| 2070 | |
| 2071 | def __copy__(self) -> Any: |
| 2072 | """Return a copy of the proxy. |
| 2073 | |
| 2074 | Returns: |
| 2075 | A copy of the wrapped object, unconnected to the proxy. |
| 2076 | """ |
| 2077 | return copy.copy(self.__wrapped__) |
| 2078 | |
| 2079 | def __deepcopy__(self, memo=None) -> Any: |
| 2080 | """Return a deepcopy of the proxy. |