Message201200
| 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:30 | Kassym.Dorsel | set | recipients:
+ Kassym.Dorsel, alexandre.vassalotti, eric.snow |
| 2013年10月25日 02:15:30 | Kassym.Dorsel | set | messageid: <1382667330.67.0.213749091632.issue19364@psf.upfronthosting.co.za> |
| 2013年10月25日 02:15:30 | Kassym.Dorsel | link | issue19364 messages |
| 2013年10月25日 02:15:30 | Kassym.Dorsel | create |
|