__module__ __new__ __reduce__ __repr__ __reduce_ex__ __getattribute__
ringa_lee
Look here
http://rafekettler.com/magicmethods.html
Hide attributes or methods.
such as
>>> '33'.__hash__() 4038753864587545164 >>> '33'.__len__()==len('33') True >>> (3).__pow__(2) 9 >>> int.__pow__(3,2) 9
Simply put, it’s a hook.
Look here
http://rafekettler.com/magicmethods.html
Hide attributes or methods.
such as
Simply put, it’s a hook.