Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Terry Reedy Newsgroups: comp.lang.python Subject: Re: pylint woes Date: Sat, 7 May 2016 21:44:46 -0400 Lines: 19 Message-ID: References: <572E3967.9060206@icloud.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de tpl0grjOySjKsWAFg1hlCgi98/9PKkl5QiJ9rMlfmYQQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'example:': 0.10; 'def': 0.13; 'complains': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'twice.': 0.16; 'wrote:': 0.16; 'insert': 0.23; 'header:In-Reply- To:1': 0.24; 'header:User-Agent:1': 0.26; 'header:X-Complaints- To:1': 0.26; 'parameters': 0.27; 'function': 0.28; 'once.': 0.29; 'pep': 0.29; 'ray': 0.29; 'to:addr:python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'to:addr:python.org': 0.40; 'received:96': 0.63; 'body.': 0.66; 'biggest': 0.67; 'received:fios.verizon.net': 0.91 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: pool-96-227-207-81.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: <572E3967.9060206@icloud.com> Xref: csiph.com comp.lang.python:108316 On 5/7/2016 3:52 PM, Ray Cote wrote: > Biggest issue I have with pyLint is that it complains when function > parameters are indented twice vs. once. pyFlakes likes the twice. > Example: > def function_name( > parm_1, > long_parm_name, > =E2=80=A6. > end_of_long_list_of params) > parm_1 =3D long_parm_name This is the recommendation in PEP 8. I would otherwise insert a blank=20 line before the body. tjr