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 3FD6F1381F3 for ; Wed, 11 Sep 2013 11:15:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7227E0CA4; Wed, 11 Sep 2013 11:14:54 +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 3DC24E0CA3 for ; Wed, 11 Sep 2013 11:14:54 +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 4C9B133EB81 for ; Wed, 11 Sep 2013 11:14:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F3CB9E545C for ; Wed, 11 Sep 2013 11:14:51 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1378896048.95937f273a0c6cb15e0c9cc0bd33731cf62444db.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/runtime.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 95937f273a0c6cb15e0c9cc0bd33731cf62444db X-VCS-Branch: master Date: Wed, 11 Sep 2013 11:14:51 +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: d42dc8db-4f12-4faa-bb82-e6835a635bf2 X-Archives-Hash: a8b8d186e18d4fde1c866439906619d5 commit: 95937f273a0c6cb15e0c9cc0bd33731cf62444db Author: André Erdmann mailerd de> AuthorDate: Wed Sep 11 10:40:48 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Wed Sep 11 10:40:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=95937f27 runtime: create private _info, _error functions --- roverlay/runtime.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roverlay/runtime.py b/roverlay/runtime.py index 3e251b9..5ef540d 100644 --- a/roverlay/runtime.py +++ b/roverlay/runtime.py @@ -284,8 +284,10 @@ class IndependentRuntimeEnvironment ( MinimalRuntimeEnvironment ): self.stdout = stdout if stdout is not None else sys.stdout self.stderr = stderr if stderr is not None else sys.stderr - self.info = self.stdout.write - self.error = self.stderr.write + self._info = self.stdout.write + self._error = self.stderr.write + self.info = self._info + self.error = self._error if installed: self.INSTALLINFO = self.access_constant ( 'INSTALLINFO' )