Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Ian Kelly Newsgroups: comp.lang.python Subject: Re: pylint woes Date: Sat, 7 May 2016 23:09:18 -0600 Lines: 27 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de 1VdNVPrkth7Xen+CSX86swKJXqVID+WMgVXA2ymLyoPg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'follows.': 0.09; 'module)': 0.09; 'pyodbc': 0.09; 'received:209.85.218': 0.10; '2016': 0.16; 'complained': 0.16; 'complains': 0.16; 'dfs': 0.16; 'module).': 0.16; 'pep8': 0.16; 're,': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'sqlite3': 0.16; 'wrote:': 0.16; 'switched': 0.18; 'library': 0.20; 'sat,': 0.23; 'third-party': 0.23; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'bugs': 0.27; 'message-id:@mail.gmail.com': 0.27; 'skip:( 20': 0.28; 'probably': 0.31; 'advice': 0.35; 'received:google.com': 0.35; 'but': 0.36; 'there': 0.36; 'received:209.85': 0.36; 'to:addr:python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:209': 0.38; 'to:addr:python.org': 0.40; 'some': 0.40; 'here:': 0.63; 'confusing': 0.84; 'itself?': 0.84; 'to:name:python': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=AEHpfxIaFieaWn/N8QqN2XYhDPe3vkbKGLgt8f9k1HE=; b=D1dXs3PLrD/4fdRLJU5yiyw9uwA72oD7+oTA472LoyLVS8x81ti5IeWHcEBHJ2Ecjm 3K9w/WpqgMuEmuXcbnfC3hd5cWm+sl98bcqiDBedF+N0odQG8JTOB8Ldc50mY63UYqQA x4rRHC91hf2ggOxabUb6DWkHAEMDPa7Al0WkNClu6dB18RIiAqavRavk0SS10yWMQJ3R Mo5W19pBiWB76COijDKmjCka4z3QFu7cKzBZfyS3eLa7p6BXLYhrmtQgbJpXzwuYATaG zQIZuUgABPN0byeOvQUVxPfPMJdUjYjusGVlTS/q+4OerTcn9/6UDNcPCCzEexZDnrVo pxoA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=AEHpfxIaFieaWn/N8QqN2XYhDPe3vkbKGLgt8f9k1HE=; b=Zj91VDYvvLcfwst6pjY41OJI7Jj1OQRx9QQNjSv+5PF3f8DbV937M5Z4oq8k5M/1ix zZdyovuj6jkzPjI9b/FZEC3gqSjRHCcU+6QIzqXVoxbuCzgoLWy6DJW3F6aGYdx3xOCp eM1do0W72DF6FcecVRPcZ5arE2CqsQMexfUNMwm6GOO+AdYb+1J26UxlZ3o3clVKlJJB hH7YuY8nnGvD/qclNdqqX/VWDlMQhmQRRTi/RGpHcC88VmzDiNlu9ShG9BTND+cxAX3P HvIGa/bQsLBfZ8ZmfRQYPu1aNavzJ5rrk7z1RQZl1OtdtozsSqFLRf/g6hN3BnxWUQ2C o7Xw== X-Gm-Message-State: AOPr4FWFK3BAjmaVWvQEZXjTdsAjxiQTPUpg370eGpgCgu4uAaQoX4wmSH82Yy3vKN5OhnIhTbdRsUUjyb5eaw== X-Received: by 10.202.4.213 with SMTP id 204mr6146925oie.47.1462684197910; Sat, 07 May 2016 22:09:57 -0700 (PDT) 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: Xref: csiph.com comp.lang.python:108339 On Sat, May 7, 2016 at 9:28 PM, DFS wrote: > But I think there are some pylint bugs here: > ------------------------------------------------------------------------- > > standard import "import pyodbc, sqlite3" comes before "import pyodbc, > sqlite3" (wrong-import-order) > > * complains that the line comes before itself? I think that it actually wants you to import sqlite3 (a standard library module) before pyodbc (a third-party module). The message is confusing because they happen to be on the same line. PEP8 has some advice on import ordering, which this probably follows. > > ------------------------------------------------------------------------- > > standard import "import re, requests" comes before "import pyodbc, sqlite3" > (wrong-import-order) > > * So I switched them, and then it complained about that: > > standard import "import pyodbc, sqlite3" comes before "import re, requests" > (wrong-import-order) Same thing. It wants the re import to come before pyodbc, and it wants sqlite3 to come before requests.