diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-03-16 19:07:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-03-16 19:07:34 -0400 |
commit | 351264bd7deff3fdf6e393581560b4d994c1dbfa (patch) | |
tree | f0863f0b7fe7fb0017caf00afc1ccb6e9dc53b3b | |
parent | a76468c859f4a1a2a60d81863ff14b31bc87eaad (diff) | |
download | python-coveragepy-git-351264bd7deff3fdf6e393581560b4d994c1dbfa.tar.gz |
A simple correction from future pylint
-rw-r--r-- | .pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ no-docstring-rgx=__.*__|test[A-Z_].*|setUp|tearDown module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ # Regular expression which should only match correct module level names -const-rgx=(([A-Z_][A-Z1-9_]*)|(__.*__))$ +const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ # Regular expression which should only match correct class names class-rgx=[A-Z_][a-zA-Z0-9]+$ |