Email PyLint problems with qt

from
to
Sylvain Thenault <syt at logilab dot fr>
subject
PyLint problems with qt
date
2005/01/27 12:41
Hi Sylvain,

The code below is giving the error:
ID:W0221 ToElapse.timerEvent: Arguments number differs from overriden method

But it shouldn't, as the timerEvent signature is correct ( virtual void
timerEvent ( QTimerEvent * ) )
And I couldn't make it work with less or more arguments.

import qt

class ToElapse(qt.QObject):

    def __init__(self):
        qt.QObject.__init__(self)
        
    def timerEvent(self, event):
        pass 


[]s

Fabio Zadrozny
------------------------------------------------------
Software Developer
ESSS - Engineering Simulation and Scientific Software
www.esss.com.br


has reply