Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/
Date: Fri, 23 Dec 2011 18:07:58
Message-Id: f7f35fe13abfb038f4ac38e3ec6d56b55c58abc8.zmedico@gentoo
1 commit: f7f35fe13abfb038f4ac38e3ec6d56b55c58abc8
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 23 18:07:35 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 23 18:07:35 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=f7f35fe1
7
8 AbstractPollTask: note PipeReaderArrayTestCase
9
10 ---
11 pym/_emerge/AbstractPollTask.py | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/pym/_emerge/AbstractPollTask.py b/pym/_emerge/AbstractPollTask.py
15 index 83e6c7b..13e3c23 100644
16 --- a/pym/_emerge/AbstractPollTask.py
17 +++ b/pym/_emerge/AbstractPollTask.py
18 @@ -26,13 +26,13 @@ class AbstractPollTask(AsynchronousTask):
19 """
20 NOTE: array.fromfile() is used here only for testing purposes,
21 because it has bugs in all known versions of Python (including
22 - Python 2.7 and Python 3.2).
23 + Python 2.7 and Python 3.2). See PipeReaderArrayTestCase.
24
25 | POLLIN | RETURN
26 | BIT | VALUE
27 | ---------------------------------------------------
28 | 1 | Read self._bufsize into an instance of
29 - | | array.array('B') and return it, ignoring
30 + | | array.array('B') and return it, handling
31 | | EOFError and IOError. An empty array
32 | | indicates EOF.
33 | ---------------------------------------------------