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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 950BE1382C5 for ; Tue, 19 Jan 2021 00:50:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC09EE0869; Tue, 19 Jan 2021 00:50:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B364CE0869 for ; Tue, 19 Jan 2021 00:50:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FBCA340E39 for ; Tue, 19 Jan 2021 00:50:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CECB592 for ; Tue, 19 Jan 2021 00:50:41 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1611017426.4f77b1ca80a7ae7987c0d3e0ef988b3c06d18744.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/util/socks5.py X-VCS-Directories: lib/portage/util/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4f77b1ca80a7ae7987c0d3e0ef988b3c06d18744 X-VCS-Branch: master Date: Tue, 19 Jan 2021 00:50:41 +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: e0cbafcf-9dcb-4c6d-8006-4b2b9f6b84d3 X-Archives-Hash: 965fc5ee27b31cb28a9c53b9fe0e1334 commit: 4f77b1ca80a7ae7987c0d3e0ef988b3c06d18744 Author: Zac Medico gentoo org> AuthorDate: Tue Jan 19 00:50:13 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jan 19 00:50:26 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4f77b1ca ProxyManager: remove unused loop parameter Signed-off-by: Zac Medico gentoo.org> lib/portage/util/socks5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/portage/util/socks5.py b/lib/portage/util/socks5.py index ddf6bb4d0..4aa08e1ab 100644 --- a/lib/portage/util/socks5.py +++ b/lib/portage/util/socks5.py @@ -73,7 +73,7 @@ class ProxyManager: """ return self.socket_path is not None - async def ready(self, loop=None): + async def ready(self): """ Wait for the proxy socket to become ready. This method is a coroutine. """