__module__ __new__ __reduce__ __repr__ __reduce_ex__ __getattribute__
ringa_lee
看这里
http://rafekettler.com/magicmethods.html
隐藏属性,或者隐藏方法。
比如
>>> '33'.__hash__() 4038753864587545164 >>> '33'.__len__()==len('33') True >>> (3).__pow__(2) 9 >>> int.__pow__(3,2) 9
简单的说,就是hook。
看这里
http://rafekettler.com/magicmethods.html
隐藏属性,或者隐藏方法。
比如
简单的说,就是hook。