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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 75B3715838C for ; Wed, 17 Jan 2024 08:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF8EFE2A8B; Wed, 17 Jan 2024 08:34:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 902F2E2A8B for ; Wed, 17 Jan 2024 08:34:33 +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 95734343350 for ; Wed, 17 Jan 2024 08:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 023F5B39 for ; Wed, 17 Jan 2024 08:34:31 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1705381258.d84df20569840532fb915aa0b6090ee6c7a62af3.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/snakeoil:master commit in: src/snakeoil/ X-VCS-Repository: proj/pkgcore/snakeoil X-VCS-Files: src/snakeoil/klass.py X-VCS-Directories: src/snakeoil/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: d84df20569840532fb915aa0b6090ee6c7a62af3 X-VCS-Branch: master Date: Wed, 17 Jan 2024 08:34:31 +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: fb3debe0-4e9c-4b1e-8627-59747b8a3e25 X-Archives-Hash: 6bba73e1fdc9aea6effefd177f6aea72 commit: d84df20569840532fb915aa0b6090ee6c7a62af3 Author: Brian Harring gmail com> AuthorDate: Tue Jan 16 04:58:43 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Jan 16 05:00:58 2024 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=d84df205 Add missing DirProxy/GetAttrProxy to klass.__all__ These are public symbols and were supposed to be marked as such. Signed-off-by: Brian Harring gmail.com> src/snakeoil/klass.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/snakeoil/klass.py b/src/snakeoil/klass.py index 23d6d3c5..08daaab2 100644 --- a/src/snakeoil/klass.py +++ b/src/snakeoil/klass.py @@ -28,6 +28,8 @@ __all__ = ( "alias", "patch", "SlotsPicklingMixin", + "DirProxy", + "GetAttrProxy", ) import inspect