Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/MongoEngine/mongoengine
/ __copy__
Method
__copy__
mongoengine/fields.py:1723–1726 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
1721
return
self_dict
1722
1723
def
__copy__(self):
1724
copied = GridFSProxy()
1725
copied.__dict__.update(self.__getstate__())
1726
return
copied
1727
1728
def
__deepcopy__(self, memo):
1729
return
self.__copy__()
Callers
1
__deepcopy__
Method · 0.95
Calls
3
__getstate__
Method · 0.95
GridFSProxy
Class · 0.85
update
Method · 0.45
Tested by
no test coverage detected