diff -r 81f26c9809dc -r e7be52fec71c 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}$