summaryrefslogtreecommitdiff
path: root/checkers/variables.py
Commit message (Collapse)AuthorAgeFilesLines
...
* cleanupsylvain thenault2009-03-231-2/+3
|
* more complete list of special methods, also skip W0613sylvain thenault2009-03-231-5/+6
| | | | for python internal method
* fix #8687, W0613 false positive on inner functionsylvain thenault2009-03-231-2/+2
|
* test and fix W0612 false positivesylvain thenault2009-03-181-0/+2
|
* fix module special attributes checkingsylvain thenault2009-03-181-1/+1
|
* give stmt node, not function node,~ to get correct line numbersylvain thenault2009-03-181-1/+1
|
* oopsSylvain2009-03-171-1/+1
|
* simply test using isinstance...Sylvain2009-03-171-2/+1
|
* fix checking of module attributes accessible in module scopeSylvain2009-03-171-1/+1
|
* fix import for new astng organisationSylvain2009-03-171-19/+4
|
* handle Del* and AugAssing situationsEmile Anclin2009-03-171-5/+4
|
* fromlineno *must not be zero* eitherEmile Anclin2009-03-171-1/+1
|
* import are_exclusive from astng where it's definedEmile Anclin2009-03-171-1/+2
|
* fix E0601/E0602 alternative and testsEmile Anclin2009-03-161-3/+5
|
* stmt.fromlineno can be 0 for names defined on module levelEmile Anclin2009-03-161-1/+2
|
* handle AssName / DelName to enhance detection of unused/undefined variable ↵sylvain thenault2009-03-131-6/+19
| | | | on aug and del assigment
* cleanup & simplifyEmile Anclin2009-03-111-10/+12
|
* fix default value Name nodesEmile Anclin2009-03-101-1/+2
|
* we want the names, not AssName nodes : use new argnames methodEmile Anclin2009-03-101-4/+4
|
* replace argnames by args.argsEmile Anclin2009-03-091-5/+5
|
* no source_line() / last_source_line() are replaced by fromlineno / tolinenoEmile Anclin2009-03-091-1/+1
|
* astng2 supportsylvain thenault2009-03-061-1/+2
|
* Decorators of methods should see the class namespaceMads Kiilerich2009-01-181-4/+4
| | | | | | | | - just like default values does but the body doesn't. Fixes https://www.logilab.net/elo/ticket/3711 - bug finding decorator arguments https://www.logilab.net/elo/ticket/5626 - name resolution bug inside classes
* fix #6949: as suggested by m. kiilerich, we should remove __dict__ node ↵sylvain thenault2009-01-161-1/+8
| | | | added by astng to avoid E0601/E0602 false negative
* typosylvain thenault2009-01-151-1/+1
|
* fix W0631 false positive reported by Paul HachmannSylvain Thenault2008-12-161-2/+7
|
* * include a modified version of Maarten ter Huurne patch of avoid W0613Sylvain Thenault2008-12-031-10/+35
| | | | warning on arguments from overridden method
* NameErrorAdrien Di Mascio2007-08-211-1/+1
|
* mergeAdrien Di Mascio2007-08-161-7/+1
|\
| * fix module inference bugAdrien Di Mascio2007-08-161-1/+1
| |
* | update for new astng apiSylvain2007-02-161-4/+10
|/
* see changelogSylvain2006-12-051-4/+9
|
* fix gen expr scope bugSylvain2006-09-241-1/+12
|
* forget the past.root2006-04-261-0/+428
forget the past.