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
--- 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}$