debuggers.hg
changeset 6945:b6ee902f83f4
Added _1,.._5 to dummy-variables, so that we can specify multiple unused
parameters in our code. Removed map and filter from bad-functions - I don't
think that we have any problem with functional programming styles!
Signed-off-by: Ewan Mellor<ewan@xensource.com>
parameters in our code. Removed map and filter from bad-functions - I don't
think that we have any problem with functional programming styles!
Signed-off-by: Ewan Mellor<ewan@xensource.com>
author | emellor@ewan |
---|---|
date | Sat Sep 17 10:22:42 2005 +0100 (2005-09-17) |
parents | 8bc44f718714 |
children | 4507382c88e5 |
files | tools/python/pylintrc |
line diff
1.1 --- a/tools/python/pylintrc Sat Sep 17 08:26:11 2005 +0000 1.2 +++ b/tools/python/pylintrc Sat Sep 17 10:22:42 2005 +0100 1.3 @@ -74,7 +74,7 @@ enable-variables=yes 1.4 init-import=no 1.5 1.6 # List of variable names used for dummy variables (i.e. not used). 1.7 -dummy-variables=_,dummy 1.8 +dummy-variables=_,_1,_2,_3,_4,_5,dummy 1.9 1.10 1.11 1.12 @@ -131,7 +131,7 @@ good-names=i,j,k,ex,Run,_ 1.13 bad-names=foo,bar,baz,toto,tutu,tata 1.14 1.15 # List of builtins function names that should not be used, separated by a comma 1.16 -bad-functions=map,filter,apply,input 1.17 +bad-functions=apply,input 1.18 1.19 1.20