summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2013-12-01 18:09:04 +0100
committerStefan Behnel <stefan_ml@behnel.de>2013-12-01 18:09:04 +0100
commit9187d476076ef666c63223ecc3f9a4e3fb4690ab (patch)
tree84f5863356d2dadcac53ef69e3724e7d5f7e2079 /pylintrc
parent08c1d57499216456d861b5f3586a36a5a13244d2 (diff)
downloadcython-9187d476076ef666c63223ecc3f9a4e3fb4690ab.tar.gz
allow visitor dispatch methods in pylint
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 403ba1d6d..c3dfb7c04 100644
--- a/pylintrc
+++ b/pylintrc
@@ -96,7 +96,7 @@ class-rgx=[A-Z_][a-zA-Z0-9]+$
function-rgx=[a-z_][a-z0-9_]{2,30}$
# Regular expression which should only match correct method names
-method-rgx=[a-z_][a-z0-9_]{2,30}$
+method-rgx=[a-z_][a-z0-9_]{2,30}|visit_[A-Za-z]+$
# Regular expression which should only match correct instance attribute names
attr-rgx=[a-z_][a-z0-9_]{2,30}$