Update pylintrc file. Now function and method names can by up to 40 characters (30 was maximum previously).
authorPawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 16:44:21 +0000
changeset 1616 e7be52fec71c
parent 1615 81f26c9809dc
child 1617 9fdf1bf1e6a6
Update pylintrc file. Now function and method names can by up to 40 characters (30 was maximum previously). Patch by: Pawel Solyga Reviewed by: to-be-reviewed
scripts/pylint/pylintrc
--- a/scripts/pylint/pylintrc	Wed Mar 04 16:29:21 2009 +0000
+++ b/scripts/pylint/pylintrc	Wed Mar 04 16:44:21 2009 +0000
@@ -133,10 +133,10 @@
 class-rgx=[A-Z_][a-zA-Z0-9]+$
 
 # Regular expression which should only match correct function names
-function-rgx=[a-z_][a-zA-Z0-9_]{2,30}$
+function-rgx=[a-z_][a-zA-Z0-9_]{2,40}$
 
 # Regular expression which should only match correct method names
-method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$
+method-rgx=[a-z_][a-zA-Z0-9_]{2,40}$
 
 # Regular expression which should only match correct instance attribute names
 attr-rgx=[a-z_][a-z0-9_]{2,30}$