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 Kassym.Dorsel
Recipients Kassym.Dorsel, alexandre.vassalotti, eric.snow
Date 2013-10-25.02:15:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382667330.67.0.213749091632.issue19364@psf.upfronthosting.co.za>
In-reply-to
Content
Yes. You're correct. Sorry for the confusion. Below is an updated snippet of code.

>>> from copy import copy
>>> class foo():
...   def __getattr__(self, attr):
...     return None
... 
>>> f = foo()
>>> copy(f)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 76, in copy
    return copier(x)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 125, in _copy_inst
    return x.__copy__()
TypeError: 'NoneType' object is not callable
History
Date User Action Args
2013-10-25 02:15:30Kassym.Dorselsetrecipients: + Kassym.Dorsel, alexandre.vassalotti, eric.snow
2013-10-25 02:15:30Kassym.Dorselsetmessageid: <1382667330.67.0.213749091632.issue19364@psf.upfronthosting.co.za>
2013-10-25 02:15:30Kassym.Dorsellinkissue19364 messages
2013-10-25 02:15:30Kassym.Dorselcreate