From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E121B1381F3 for ; Tue, 13 Nov 2012 20:44:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9263321C058; Tue, 13 Nov 2012 20:41:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A134021C056 for ; Tue, 13 Nov 2012 20:41:03 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD24433DA73 for ; Tue, 13 Nov 2012 20:41:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 723AEE5453 for ; Tue, 13 Nov 2012 20:40:59 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1352687547.da15ffa5a762cbfa16c02dd56819f27d09f221db.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/dependencies.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: da15ffa5a762cbfa16c02dd56819f27d09f221db X-VCS-Branch: gentoolkit Date: Tue, 13 Nov 2012 20:40:59 +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-Archives-Salt: 2304cc62-0041-4f84-b9c4-3a91f2a3d253 X-Archives-Hash: f876a73d7aef3f645e4119211694d0e0 commit: da15ffa5a762cbfa16c02dd56819f27d09f221db Author: W. Trevor King tremily us> AuthorDate: Mon Nov 12 02:32:27 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Mon Nov 12 02:32:27 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=da15ffa5 dependencies: update Dependencies doctest to use portage-9999 --- pym/gentoolkit/dependencies.py | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pym/gentoolkit/dependencies.py b/pym/gentoolkit/dependencies.py index 84e3672..726d546 100644 --- a/pym/gentoolkit/dependencies.py +++ b/pym/gentoolkit/dependencies.py @@ -31,12 +31,14 @@ class Dependencies(Query): Example usage: >>> from gentoolkit.dependencies import Dependencies - >>> portage = Dependencies('sys-apps/portage-2.1.6.13') + >>> portage = Dependencies('sys-apps/portage-9999') >>> portage - + >>> # All methods return gentoolkit.atom.Atom instances ... portage.get_depend() - [=dev-lang/python-2.5'>, , ...] + ... # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE + [, + =dev-lang/python-2.7'>, ...] """ def __init__(self, query, parser=None):