From 4b202050329bd8ae1f61eb9841d486f1d3c2d88d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 1 Nov 2016 17:55:27 -0400 Subject: [PATCH] Comment my new method-rgx in .pylintrc. --- .pylintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 782cd4a..ff7d0fc 100644 --- a/.pylintrc +++ b/.pylintrc @@ -22,7 +22,9 @@ bad-functions= # in your head as you switch between the source code and the papers. good-names=a,b,c,D,e1,e2,h,A,C,G,H,K,_K,L,_L,indented_L,M -# Regular expression matching correct method names +# A regular expression matching correct method names. This differs +# from the default in that it will accept much longer names (50 +# characters) if they happen to begin with "test_". method-rgx=([a-z_][a-z0-9_]{2,30}|test_[a-z_][a-z0-9_]{2,50})$ [MISCELLANEOUS] -- 2.43.2