You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromjsonmodelsimportmodels, fields, validatorsimportcopyclassA(models.Base):
x=fields.IntField(required=True)
a1=A(x=1)
a2=copy.deepcopy(a1)
print(a1.x)
print(a2.x) # fails in this line
The text was updated successfully, but these errors were encountered:
"Bug": copy.deepcopy is not possible.
The text was updated successfully, but these errors were encountered: