This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author GudniNatan
Recipients GudniNatan, serhiy.storchaka
Date 2019-09-27.18:40:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569609601.63.0.944477916693.issue38293@roundup.psfhosted.org>
In-reply-to
Content
This bug appears to also affect shallow copies and can be reproduced with the following code:

>>> import copy
>>> obj = property()
>>> copy.copy(obj)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.1264.0_x64__qbz5n2kfra8p0\lib\copy.py", line 96, in copy
    rv = reductor(4)
TypeError: can't pickle property objects
History
Date User Action Args
2019-09-27 18:40:01GudniNatansetrecipients: + GudniNatan, serhiy.storchaka
2019-09-27 18:40:01GudniNatansetmessageid: <1569609601.63.0.944477916693.issue38293@roundup.psfhosted.org>
2019-09-27 18:40:01GudniNatanlinkissue38293 messages
2019-09-27 18:40:01GudniNatancreate