Is it possible to set a flag for pylint so that it will complain about instance attributes which appear to be unused within the methods defined by the class? If we were examining local variables, a typo might well result in one or two messages (unused or undefined). I'd like similar protection for instance attributes. I realize that lack of use is not necessarily incorrect, but it might well suggest a problem. False positives are fine. It's probably not something I would enable all the time.
Thanks, -- Skip Montanaro - [email protected] - http://www.smontanaro.net/ _______________________________________________ Python-Projects mailing list [email protected] http://lists.logilab.org/mailman/listinfo/python-projects
