[Python-Dev] Let's get rid of unbound methods

Greg Ewing greg.ewing at canterbury.ac.nz
Fri Jan 28 23:51:00 CET 2005


Tim Peters wrote:
> I expect that's because he stopped working on Zope code, so actually
> thinks it's odd again to see a gazillion methods like:
> 
> class Registerer(my_base):
>     def register(*args, **kws):
>         my_base.register(*args, **kws)

I second that! My PyGUI code is *full* of __init__
methods like that, because of my convention for supplying
initial values of properties as keyword arguments.

--
Greg



More information about the Python-Dev mailing list