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 21A72138206 for ; Thu, 28 Apr 2016 15:05:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F46721C09B; Thu, 28 Apr 2016 15:05:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A42421C09B for ; Thu, 28 Apr 2016 15:05:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D49E0340CF4 for ; Thu, 28 Apr 2016 15:05:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4ACBD334 for ; Thu, 28 Apr 2016 15:05:44 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1461855041.5cb92a836ed539b7dd5952b7404b5c7f473b844a.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/scanner.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 5cb92a836ed539b7dd5952b7404b5c7f473b844a X-VCS-Branch: repoman Date: Thu, 28 Apr 2016 15:05:44 +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: c57f01f7-2da7-4eb4-8272-319a3ee2c382 X-Archives-Hash: da1b431223f555e8575a80450318b6dd Message-ID: <20160428150544.qdCrAKqGvn2qZcdy-Hi50reMxih2ZyF6fMJWjKiQCRA@z> commit: 5cb92a836ed539b7dd5952b7404b5c7f473b844a Author: Brian Dolbec gentoo org> AuthorDate: Wed Apr 27 03:22:37 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Apr 28 14:50:41 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5cb92a83 repoman/scanner.py: Clean up some debug prints pym/repoman/scanner.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py index f1a0231..e5e5717 100644 --- a/pym/repoman/scanner.py +++ b/pym/repoman/scanner.py @@ -260,17 +260,14 @@ class Scanner(object): @param dynamic_data: dictionary @param key: tuple of (dictionary-key, default-value) ''' - #print("***", key, data) if data[0] in ['Future', 'ExtendedFuture']: if data[1] in ['UNSET']: - #print("adding unset default") dynamic_data[key] = ExtendedFuture() else: if data[1] in DATA_TYPES: default = DATA_TYPES[data[1]]() else: default = data[1] - #print("adding default:", default) dynamic_data[key] = ExtendedFuture(default) def scan_pkgs(self, can_force):