Received: by mail.netbsd.org (Postfix, from userid 605) id 6AF1F85B13; Thu, 2 Aug 2018 15:13:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 62E9785AE3 for ; Thu, 2 Aug 2018 15:13:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Utri5SzBT9-Q for ; Thu, 2 Aug 2018 15:13:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D044B85AC4 for ; Thu, 2 Aug 2018 15:13:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C3D81FBEC; Thu, 2 Aug 2018 15:13:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1533222814261750" MIME-Version: 1.0 Date: Thu, 2 Aug 2018 15:13:34 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-astroid To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180802151334.C3D81FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1533222814261750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Aug 2 15:13:34 UTC 2018 Modified Files: pkgsrc/devel/py-astroid: Makefile distinfo Log Message: py-astroid: updated to 2.0.2 What's New in astroid 2.0.2? * Stop repeat inference attempt causing a RuntimeError in Python3.7 * infer_call_result can raise InferenceError so make sure to handle that for the call sites where it is used infer_call_result started recently to raise InferenceError for objects for which it could not find any returns. Previously it was silently raising a StopIteration, which was especially leaking when calling builtin methods. Since it is after all an inference method, it is expected that it could raise an InferenceError rather than returning nothing. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-astroid/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-astroid/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1533222814261750 Content-Disposition: inline Content-Length: 1657 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-astroid/Makefile diff -u pkgsrc/devel/py-astroid/Makefile:1.19 pkgsrc/devel/py-astroid/Makefile:1.20 --- pkgsrc/devel/py-astroid/Makefile:1.19 Tue Jul 24 06:13:53 2018 +++ pkgsrc/devel/py-astroid/Makefile Thu Aug 2 15:13:34 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2018/07/24 06:13:53 adam Exp $ +# $NetBSD: Makefile,v 1.20 2018/08/02 15:13:34 adam Exp $ -DISTNAME= astroid-2.0.1 +DISTNAME= astroid-2.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astroid/} Index: pkgsrc/devel/py-astroid/distinfo diff -u pkgsrc/devel/py-astroid/distinfo:1.13 pkgsrc/devel/py-astroid/distinfo:1.14 --- pkgsrc/devel/py-astroid/distinfo:1.13 Tue Jul 24 06:13:53 2018 +++ pkgsrc/devel/py-astroid/distinfo Thu Aug 2 15:13:34 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2018/07/24 06:13:53 adam Exp $ +$NetBSD: distinfo,v 1.14 2018/08/02 15:13:34 adam Exp $ -SHA1 (astroid-2.0.1.tar.gz) = 42bcbc856140777971ed2151daffa0319c39c33e -RMD160 (astroid-2.0.1.tar.gz) = 4e42718e892f54338960d07726c2b027e2210663 -SHA512 (astroid-2.0.1.tar.gz) = a5d5d3168007de71d7ef715b632ab674d574b92bf71b7c272dffc01001fd37d13d959e27059ed59af430a0a222494b22ec04d386643a347ee337c312f5ef3672 -Size (astroid-2.0.1.tar.gz) = 273383 bytes +SHA1 (astroid-2.0.2.tar.gz) = 3e9052b54beda04862f6bf2a367f2297fa57e6e2 +RMD160 (astroid-2.0.2.tar.gz) = 1d925c00b5f3e49b42c06c1a77eacdd90fe2b640 +SHA512 (astroid-2.0.2.tar.gz) = 428330eb8e5d215424784b3bc5239b0539fb331eead6ec44f67c70fa3c556e87ad87317a625581e058c41d953b7e1eed1461e76866e9f464e725c9a7057f94c1 +Size (astroid-2.0.2.tar.gz) = 273737 bytes --_----------=_1533222814261750--