summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added tag pylint-version-0.28.0 for changeset 36355f1fe1fdpylint-debian-version-0.28.0-1Sylvain Thénault2013-04-251-0/+1
|
* [pkginfo] update project's url to pylint.org and kill deprecated ftp/copyrightpylint-version-0.28.0Sylvain Thénault2013-04-251-3/+1
|
* [test] extract python 2.7 specific code from func_dangerous_value to avoid ↵Sylvain Thénault2013-04-253-7/+10
| | | | failure on 2.6
* [test] move gtk enum crash test out of automatic functional tests,Sylvain Thénault2013-04-252-0/+11
| | | | it depends on pygtk being installed so require specific attention
* [test] grmbl, C0121 disabling was missingSylvain Thénault2013-04-251-1/+1
|
* fix failing testSylvain Thénault2013-04-251-3/+4
|
* prepare .28Sylvain Thénault2013-04-253-7/+16
|
* [doc gen] fix feature.rst generation rule in Makefile and remove it from hgSylvain Thénault2013-04-252-843/+10
|
* Change C0109 [useless-else-on-loop] to W0120 (W0109 is already taken) and ↵Torsten Marek2013-04-254-12/+17
| | | | change it to only accept breaks for else: branches on loops.
* [doc] backport content about visual studio configuration from logilab.orgSylvain Thénault2013-04-172-0/+9
|
* [doc/install] link to setuptools, easy_install instead of easyinstallSylvain Thénault2013-04-171-3/+4
|
* [doc] add missing title, fixing tocSylvain Thénault2013-04-171-1/+3
|
* [doc/faq] refer to existing section of the documentation in the faq, reorder ↵Sylvain Thénault2013-04-171-128/+54
| | | | message control section
* [doc] redo some of my changes after rebasing nico's changes; rm former ↵Sylvain Thénault2013-04-1710-947/+60
| | | | manual/quickstart
* [doc] complete refactoringNicolas Chauvat2013-04-0614-79/+782
|
* [doc] generate documentation with sphinxNicolas Chauvat2013-04-0411-3/+385
|
* [doc/tutorial] use sourcecode directiveNicolas Chauvat2013-04-171-9/+26
|
* add test case for (astng fixed) #127416Sylvain Thénault2013-04-161-0/+19
|
* closes #1 (bitbucket): fix "dictionary changed size during iteration" crashSylvain Thénault2013-04-162-2/+4
|
* Moving development to bitbucket. Rephrase README on the waySylvain Thénault2013-04-163-31/+36
|
* a few documentation fixesSylvain Thénault2013-04-163-32/+36
|
* doc rest fixesSylvain Thénault2013-04-163-5/+3
|
* pylint home page is www.pylint.org / ftp is deadSylvain Thénault2013-04-163-4/+4
|
* namingSylvain Thénault2013-04-161-1/+1
|
* documentation typos, spotted by afayolleSylvain Thénault2013-04-164-9/+9
|
* drop deprecated announce fileSylvain Thénault2013-04-161-46/+0
|
* update to avoid mkdoc deprecation warningsSylvain Thénault2013-04-163-1/+7
|
* d-t-wSylvain Thénault2013-04-163-89/+82
|
* regenerate generated documentationSylvain Thénault2013-04-163-482/+582
|
* consistent product naming: PylintSylvain Thénault2013-04-1610-58/+59
|
* closes #123892 by adding errors=replace when encoding unicode stringsSylvain Thénault2013-04-122-1/+7
|
* fix NameErrorAurelien Campeas2013-04-111-3/+3
|
* a few pylint fixes and copyright cleanupsSylvain Thénault2013-03-295-16/+12
|
* Emit a warning for loops that have an else clause but no break or return.Torsten Marek2013-03-294-4/+86
| | | | | | | | | | Technically, the else: is superfluous with the return statement, but after much internal discussion, I've changed the patch to allow this. The main point is that the indented block is useful as a visual marker to say that the loop may end early and end execution of the whole block, or something else might happen afterwards. That being said, I wouldn't be terribly sad if we took it out again. Closes #81378
* Lambdas can contain yields, do not warn about them.Torsten Marek2013-03-294-1/+10
| | | | Closes #123259
* Make sure that pragmas that apply to whole lines are interpreted literally, ↵Torsten Marek2013-03-297-17/+78
| | | | | | | | | so that their scope is not extended to the whole scope if they occur at the beginning of a scope. Closes #123285
* Improve the warning message for E1124[redundant-keyword-arg].Torsten Marek2013-03-293-2/+4
|
* Warn about duplicate argument names. Python raises a SyntaxError, but it's notTorsten Marek2013-03-294-1/+33
| | | | | | raised during the actual parsing, but in pass 2 (before bytecode compilation). Closes #123233
* Unify handling for dangerous default values and make sure that set, dict and ↵Torsten Marek2013-03-296-10/+24
| | | | | | | | list literals are treated the same way as list(), set() and dict(). Depends on inference fixes found in logilab-astng 0.24.3/0.25
* move string literal checker from format.py to strings.pySylvain Thénault2013-03-294-107/+110
|
* Warn about suspicious arguments in {bytes,str,unicode}.{l,r,}strip calls. ↵Torsten Marek2013-03-294-2/+47
| | | | Closes #74013
* fix name error causing crash when symbols are included in output messages. ↵Aurelien Campeas2013-03-132-1/+3
| | | | Closes #124662
* stop relying on is_standard_module to avoid having internal dependencies in ↵Sylvain Thénault2013-03-292-20/+16
| | | | external deps report. Closes #124660
* add test for #124337, fixed in logilab-astngSylvain Thénault2013-03-291-0/+11
|
* use any(genexp) rather than a list comprehensionSylvain Thénault2013-03-271-3/+3
|
* add test for #122793 (fixed in astng)Sylvain Thénault2013-03-271-0/+9
|
* Added tag pylint-debian-version-0.27.0-1 for changeset b79adc16cd58Sylvain Thénault2013-02-271-0/+1
|
* Added tag pylint-version-0.27.0 for changeset 83bf3a2efddfpylint-debian-version-0.27.0-1Sylvain Thénault2013-02-271-0/+1
|
* 0.27pylint-version-0.27.0Sylvain Thénault2013-02-262-2/+8
|
* changelog cleanupSylvain Thénault2013-02-261-22/+22
|