Phillip J. Eby wrote:

> class MoneyField(Field):
>     # does need staticmethod because two_decimal_places
>     # doesn't take a self
>     converter = staticmethod(two_decimal_places)

Okay, I see what you mean now. But you could just as well wrap
it in a function that takes self and discards it, so I still
don't think staticmethod is essential in the absence of
unbound methods.

Not that I would object if it stayed around -- I don't really
mind one way or the other.

--
Greg
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to