Python 2
此代码在和中产生不同的输出Python 3
。
class Descriptor(object):
def __get__(self, instance, owner):
print('read')
return 1
def __set__(self, instance, value):
print('write')
def __delete__(self, instance):
print('del')
class C():
a = Descriptor()
c = C()
c.a
c.a = 3
del c.a
c.a
print('finished')
Python 2 的输出是:
read
read
finished
对于 Python 3,它是:
read
write
del
read
finished
为什么会这样?描述符与描述符有何Python 2
不同Python 3
?
这也没有任何意义,因为http://docs.python.org/release/3.0.1/reference/datamodel.html#invoking-descriptors清楚地描述了与http://docs.python.org/reference/完全相同的 内容datamodel.html#invoking-descriptors
(这些是 和 的文档Python 2.7
。Python 3.0
)