object inheritance and default values

2005-10-14 Thread Ron Adam
I'm trying to implement simple svg style colored complex objects in tkinter and want to be able to inherit default values from other previously defined objects. I want to something roughly similar to ... class shape(object): def __init__(self, **kwds): # set a bunch

Re: object inheritance and default values

2005-10-14 Thread George Sakkis
Ron Adam [EMAIL PROTECTED] wrote: I'm trying to implement simple svg style colored complex objects in tkinter and want to be able to inherit default values from other previously defined objects. I want to something roughly similar to ... class shape(object): def

Re: object inheritance and default values

2005-10-14 Thread Kay Schluehr
George Sakkis wrote: Ron Adam [EMAIL PROTECTED] wrote: I'm trying to implement simple svg style colored complex objects in tkinter and want to be able to inherit default values from other previously defined objects. I want to something roughly similar to ... class

Re: object inheritance and default values

2005-10-14 Thread Ron Adam
George Sakkis wrote: Ron Adam [EMAIL PROTECTED] wrote: I'm trying to implement simple svg style colored complex objects in tkinter and want to be able to inherit default values from other previously defined objects. I want to something roughly similar to ... class shape(object):