# HG changeset patch # User Pawel Solyga # Date 1236185061 0 # Node ID e7be52fec71c2b4bdb5fac4df72b6112a10d2563 # Parent 81f26c9809dc8fd463b1898bbbf853dd3246de2d 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 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}$