From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F060158091 for ; Sun, 5 Jun 2022 16:21:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9922E08FE; Sun, 5 Jun 2022 16:21:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A358E08FE for ; Sun, 5 Jun 2022 16:21:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A265D341AD5 for ; Sun, 5 Jun 2022 16:21:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C2173B8 for ; Sun, 5 Jun 2022 16:21:12 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1654385402.29e2f510dd9232bc4d080ae21f5b140151bda38e.floppym@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: pylintrc X-VCS-Directories: / X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 29e2f510dd9232bc4d080ae21f5b140151bda38e X-VCS-Branch: master Date: Sun, 5 Jun 2022 16:21:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4f0542a9-dc4d-4ba1-8e24-68fc28f819ac X-Archives-Hash: efbeb9ca64bb49de32fd4eb177bcee25 commit: 29e2f510dd9232bc4d080ae21f5b140151bda38e Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 4 23:27:44 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 4 23:30:02 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=29e2f510 pylintrc: disable cyclic-import check We have cyclic imports in Portage; pylint before 2.14.0 fails to find them. Signed-off-by: Mike Gilbert gentoo.org> pylintrc | 1 - 1 file changed, 1 deletion(-) diff --git a/pylintrc b/pylintrc index ce5dec11b..398c04475 100644 --- a/pylintrc +++ b/pylintrc @@ -13,7 +13,6 @@ #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module disable=all enable= - cyclic-import, import-error, import-self, misplaced-future,