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 1Re9XB-0004J2-Rp for garchives@archives.gentoo.org; Fri, 23 Dec 2011 18:07:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A77121C131; Fri, 23 Dec 2011 18:07:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3A3F121C131 for ; Fri, 23 Dec 2011 18:07:48 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B659A1B4057 for ; Fri, 23 Dec 2011 18:07:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id EEB8C80042 for ; Fri, 23 Dec 2011 18:07:46 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/AbstractPollTask.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f7f35fe13abfb038f4ac38e3ec6d56b55c58abc8 Date: Fri, 23 Dec 2011 18:07:46 +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: 98d1be0a-c9da-49b8-a9e8-fd27d49925b4 X-Archives-Hash: 6923616031e3cbb431e8efad2ed055d1 commit: f7f35fe13abfb038f4ac38e3ec6d56b55c58abc8 Author: Zac Medico gentoo org> AuthorDate: Fri Dec 23 18:07:35 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Dec 23 18:07:35 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df7f35fe1 AbstractPollTask: note PipeReaderArrayTestCase --- pym/_emerge/AbstractPollTask.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/AbstractPollTask.py b/pym/_emerge/AbstractPollTa= sk.py index 83e6c7b..13e3c23 100644 --- a/pym/_emerge/AbstractPollTask.py +++ b/pym/_emerge/AbstractPollTask.py @@ -26,13 +26,13 @@ class AbstractPollTask(AsynchronousTask): """ NOTE: array.fromfile() is used here only for testing purposes, because it has bugs in all known versions of Python (including - Python 2.7 and Python 3.2). + Python 2.7 and Python 3.2). See PipeReaderArrayTestCase. =20 | POLLIN | RETURN | BIT | VALUE | --------------------------------------------------- | 1 | Read self._bufsize into an instance of - | | array.array('B') and return it, ignoring + | | array.array('B') and return it, handling | | EOFError and IOError. An empty array | | indicates EOF. | ---------------------------------------------------