From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qohsm-0002qJ-KN for garchives@archives.gentoo.org; Wed, 03 Aug 2011 20:17:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8004B21C22D; Wed, 3 Aug 2011 20:17:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 49B3221C22D for ; Wed, 3 Aug 2011 20:17:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B76142AC00C for ; Wed, 3 Aug 2011 20:17:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id CA20E80044 for ; Wed, 3 Aug 2011 20:17:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/library/standard/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/library/standard/special_vars.py X-VCS-Directories: pmstestsuite/library/standard/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a82bd3527ee5d3abf3a2aa451e859fd07ff1c8cb Date: Wed, 3 Aug 2011 20:17:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: c685ff2e34dc2280820cbe8b2cb31bc6 commit: a82bd3527ee5d3abf3a2aa451e859fd07ff1c8cb Author: Micha=C5=82 G=C3=B3rny mgorny alt pl= > AuthorDate: Wed Aug 3 19:10:53 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Wed Aug 3 19:10:53 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Da82bd352 Add __repr__() for DepMatcher. --- pmstestsuite/library/standard/special_vars.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/pmstestsuite/library/standard/special_vars.py b/pmstestsuite= /library/standard/special_vars.py index 2502691..845d698 100644 --- a/pmstestsuite/library/standard/special_vars.py +++ b/pmstestsuite/library/standard/special_vars.py @@ -38,6 +38,9 @@ class RDependFallbackTest(DBusEbuildTestCase): def __str__(self): return 'virtual/libc' =20 + def __repr__(self): + return repr(str(self)) + rdep =3D pm.installed[self.atom(pm)].run_dependencies mydep =3D DepMatcher() =20