summaryrefslogtreecommitdiff
path: root/doc/features.txt
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2007-04-12 09:27:43 +0200
committerSylvain Thénault <sylvain.thenault@logilab.fr>2007-04-12 09:27:43 +0200
commit34af881b21ea2cd1157f332b09563ac2f9c49cb4 (patch)
tree92f8a43f2c163c50e4cd433312598bab26da5112 /doc/features.txt
parent7166da1c7f99660642320992f5cf44b564469b90 (diff)
downloadpylint-git-34af881b21ea2cd1157f332b09563ac2f9c49cb4.tar.gz
ReST syntax fixes
Diffstat (limited to 'doc/features.txt')
-rw-r--r--doc/features.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/features.txt b/doc/features.txt
index 714a4721c..999a48a8b 100644
--- a/doc/features.txt
+++ b/doc/features.txt
@@ -135,6 +135,7 @@ Main reports
Basic checker
-------------
checks for :
+
* doc strings
* modules / classes / functions / methods / arguments / variables name
* number of arguments, local variables, branchs, returns and statements in
@@ -337,7 +338,7 @@ Messages
:W0613: *Unused argument %r*
Used when a function or method argument is not used.
:W0614: *Unused import %s from wildcard import*
- Used when an imported module or variable is not used from a 'from X import *'
+ Used when an imported module or variable is not used from a 'from X import \*'
style import.
:W0621: *Redefining name %r from outer scope (line %s)*
Used when a variable's name hide a name defined in the outer scope.