[Python-projects] W0613 false positive on overridden dictionary methods

2009-09-17 Thread Huurne, Maarten ter
Hi, When inheriting from "dict" and overriding methods, W0613 is issued on some methods: === class DictArgInstance(dict): def __delitem__(self, key): raise TypeError('attempt to modify read-only dictionary') def __setitem__(self, key, value): rai

[Python-projects] W0613 false positive on __delete__ descriptor

2009-09-17 Thread Huurne, Maarten ter
Hi, The new pylint and astng releases solved most of the remaining false positives on our project. Thanks for the fixes! One of the false positives that remains is the following one: === class SomeProperty(object): def __get__(self, obj, objtype = None): if obj is None:

Re: [Python-projects] pylint needs you

2009-09-17 Thread Huurne, Maarten ter
Hi, > Now I was wondering what could be done to make pylint going further, > and the first ideas which came to my mind was : > > * do ~3 days sprint > * do some 'tickets killing' days, as done in some popular oss projects Speaking for myself here: I will be soon leaving the very Python intensive

[Python-projects] pylint needs you

2009-09-17 Thread Alexandre Fayolle
I'm echoing a recent blog by Sylvain (http://www.logilab.org/blogentry/10055): After several months with no time to fix/enhance pylint beside answering email and filing tickets, I've finally tackled some tasks yesterday night to publish bug fixes releases ([`1`_] and [`2`_]). The problem is th