Path: csiph.com!usenet.pasdenom.info!news.franciliens.net!fdn.fr!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.030 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'url:bitbucket': 0.05; 'fixes': 0.07; 'json': 0.07; 'subject:ANN': 0.07; 'subject:released': 0.07; 'string': 0.09; 'newly': 0.09; 'warn': 0.09; 'python': 0.11; 'bug': 0.12; 'changes': 0.15; 'argument.': 0.16; 'builtins.': 0.16; 'mro': 0.16; 'to:addr:python-announce- list': 0.16; 'usable': 0.16; 'url:)': 0.16; 'fix': 0.17; 'subject:] ': 0.20; 'unicode': 0.24; 'class.': 0.26; 'tracker': 0.26; 'resolution': 0.29; 'properties': 0.29; 'message- id:@mail.gmail.com': 0.30; 'constant': 0.31; 'slot': 0.31; 'tuples': 0.31; 'class': 0.32; 'open': 0.33; 'announce': 0.33; 'checking': 0.33; 'definition': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'false': 0.36; 'raising': 0.36; 'entry': 0.36; 'method': 0.36; 'url:org': 0.36; 'positive': 0.37; 'list': 0.37; 'to:addr:python-list': 0.38; 'issue': 0.38; 'subject:[': 0.39; 'to:addr:python.org': 0.39; 'release': 0.40; 'subject: / ': 0.60; 'most': 0.60; 'tips': 0.61; 'new': 0.61; 'here:': 0.62; 'complete': 0.62; 'skip:n 10': 0.64; 'our': 0.64; 'to:2**2': 0.65; 'brain': 0.68; 'hesitate': 0.70; 'to:no real name:2**2': 0.72; 'pleasure': 0.74; 'restore': 0.78; 'closes': 0.84; 'features:': 0.84; 'flag.': 0.84; 'favour': 0.91; 'sfxlen:1': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=mbwa8ZI9ajTziLeYiOFVWunOWB4CKFGIrLjrcW6fTE8=; b=Z69plN7KlegFBmYJw503Rd3p1sWWXVJL25kDY0FqfcRA6bepDYNbg5jV4AOchlO0T4 0v47Wvmg6U13lIEZ9uD+uN6fcBHeUwjXryBMZDbpZ+dkiAvjcGBK0GtFBVbT5+1qAMLN TO5pAFgbKFWZqvOe3Tcl6bl8I7kXCdAhL8yjJk7r4ZYco+5RHIM548qAcZaNkNb3Wp3i jEhwtNB7HRJRI9KZ+kwpHyxIrQBZX9w0UfgfVlyF8VJpcJc3qhazv8lsG4cI9pW62RJt Xz6wPfkpYDJqJvf+3aW3Dr4QZ7eE8KkcPou58rGywu8M+Y0yDC0ZkO7GCRGi0XpfORVQ Glhg== MIME-Version: 1.0 X-Received: by 10.152.87.46 with SMTP id u14mr17594464laz.36.1421439762994; Fri, 16 Jan 2015 12:22:42 -0800 (PST) Date: Fri, 16 Jan 2015 22:22:42 +0200 Subject: [ANN] Pylint 1.4.1 / Astroid 1.3.3 released From: Claudiu Popa To: pylint-dev@lists.logilab.org, "code-quality@python.org" , python-list@python.org, python-announce-list@python.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 59 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421440706 news.xs4all.nl 2965 [2001:888:2000:d::a6]:52367 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83898 Hello, It's my pleasure to announce the release of both Pylint 1.4.1 and Astroid 1.3.3 respectively. The following bug fixes and features made their way into Astroid 1.3.3: * Restore file_stream to a property, but deprecate it in favour of the newly added method Module.stream. * Add inference tips for 'tuple', 'list', 'dict' and 'set' builtins. * Add brain definition for most string and unicode methods * Add a new method to Class nodes, 'mro', for obtaining the the method resolution order of the class. * Add brain tips for six.moves. Closes issue #63. * .slots() can contain unicode strings on Python 2. * Add inference tips for nose.tools. The complete list of changes can be seen here: https://bitbucket.org/logilab/astroid/src/15cff6016b793bb64c92d04acc4da001a2c98683/ChangeLog?at=default#cl-4 For Pylint, we have the following fixes and features: * Add a new JSON reporter, usable through -f flag. * Add a new warning, 'redundant-unittest-assert', emitted when using unittest's methods assertTrue and assertFalse with constant value as argument. * Check the return of properties when checking for not-callable. Closes issue #406. * Warn about using the input() or round() built-ins for Python 3. Closes issue #411. * Use a mro traversal for finding abstract methods. Closes issue #415. * Fix a false positive on Python 2 for raising-bad-type, when raising tuples in the form 'raise (ZeroDivisionError, None)'. * Fix a false positive with invalid-slots-objects, where the slot entry was an unicode string on Python 2. Closes issue #421. The complete list of changes can be found here: https://bitbucket.org/logilab/pylint/src/02eabae6b72569876e7104db7724ad26a7de0af3/ChangeLog?at=default#cl-4 If you find any bugs, don't hesitate to open a new issue on our issue tracker (https://bitbucket.org/logilab/pylint/) Enjoy!