MCPcopy Create free account
hub / github.com/dot-agent/nextpy / __copy__

Method __copy__

nextpy/backend/state.py:2071–2077  ·  view source on GitHub ↗

Return a copy of the proxy. Returns: A copy of the wrapped object, unconnected to the proxy.

(self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

copyMethod · 0.45

Tested by

no test coverage detected