from
Sylvain Thénault <sylvain.thenault at logilab dot fr>
to
Fabio Zadrozny <fabioz at esss dot com dot br>
subject
[Python-projects] Re: Another problem (related to previous - I think)
date
On Thursday 27 January à 16:27, Fabio Zadrozny wrote:2005/01/28 11:00
> I think this bug is related to the same problem I has with math...
>
> When I have the code:
>
> ------------------------------------
> from qt import *
>
> class Test(QWidget):
>
> def test1(self):
> self.setEnabled(False)
> ------------------------------------
>
> I get the error:
> ID:E0201 Test.test1: Access to undefined member 'setEnabled'
>
> However if I have the code:
>
> ------------------------------------
> import qt
>
> class Test(qt.QWidget):
>
> def test1(self):
> self.setEnabled(False)
> ------------------------------------
>
> There is no error.
yep, probably related to since I'm not able to reproduce it either.
> Oh, I also want to thank you for the support you've been giving me... And
> compliment you, because PyLint is working very well with my code (aside from
> the minor problems I'm having, that you are solving really fast :-) ).
thanks ! So I hope you'll remove the last paragraph of the pydev's
pylint plugin page ;) I really wish that pylint 0.6.* releases be the
most stable ever, on every platforms. I'm beginning to think about a 1.0
release :o)
cheers
--
Sylvain Thénault LOGILAB, Paris (France).
http://www.logilab.com http://www.logilab.fr http://www.logilab.org
_______________________________________________
Python-Projects mailing list
Python-Projects@lists.logilab.org
http://lists.logilab.org/mailman/listinfo/python-projects
