[Python] derivare una classe
Francesco Guerrieri
f.guerrieri a gmail.com
Mar 22 Gen 2008 19:34:12 CET
On Jan 22, 2008 5:22 PM, fde <filiderba a email.it> wrote:
>
>
> class frameB(frameA):
> blah=ciao
> self.textCtrlPinco.SetValue("blah")
>
ps: blah = ciao ti darà dei problemi
ho la sensazione che tu volessi fare qualcosa del tipo
class frameB(frameA):
def __init__(self):
frameA.__init__(self)
blah = "ciao"
self..... (blah)
Nota le virgolette intorno a "ciao" e non intorno a blah :-)
ciao,
Francesco
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: http://lists.python.it/pipermail/python/attachments/20080122/a803878d/attachment.htm
More information about the Python
mailing list