diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-25 14:46:05 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-25 14:46:05 +0200 |
commit | 06a3ddb16d12a7e1b80877dadda64c3dcd66766b (patch) | |
tree | adb4711d1d1d80a81621e1024d6c3d557b079279 /man | |
parent | 2f57c3b90806e851462029498ad6214a7263f878 (diff) | |
download | pylint-git-06a3ddb16d12a7e1b80877dadda64c3dcd66766b.tar.gz |
help / man: more explicit on dummy variable regex
Diffstat (limited to 'man')
-rw-r--r-- | man/pylint.1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/pylint.1 b/man/pylint.1 index 74f7423cb..c68175507 100644 --- a/man/pylint.1 +++ b/man/pylint.1 @@ -172,7 +172,7 @@ Maximum number of public methods for a class (see R0904). [current: 20] .IP "--init-import=<y_or_n>" Tells whether we should check for unused import in __init__ files. [current: no] .IP "--dummy-variables-rgx=<regexp>" -A regular expression matching names used for dummy variables (i.e. not used). [current: _|dummy] +A regular expression matching matching the beginning of the name of dummy variables (i.e. not used). [current: _|dummy] .IP "--additional-builtins=<comma separated list>" List of additional names supposed to be defined in builtins. Remember that you should avoid to define new builtins when possible. [current: none] |