Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12304 - main/branches/2.1.6/pym/_emerge
Date: Thu, 25 Dec 2008 01:08:21
Message-Id: E1LFei4-00012z-5y@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-12-25 01:08:19 +0000 (Thu, 25 Dec 2008)
3 New Revision: 12304
4
5 Modified:
6 main/branches/2.1.6/pym/_emerge/__init__.py
7 Log:
8 Remove the TaskScheduler.run() method since the constructor replaces it with
9 the QueueScheduler.run() method. (trunk r12270)
10
11 Modified: main/branches/2.1.6/pym/_emerge/__init__.py
12 ===================================================================
13 --- main/branches/2.1.6/pym/_emerge/__init__.py 2008-12-25 00:31:45 UTC (rev 12303)
14 +++ main/branches/2.1.6/pym/_emerge/__init__.py 2008-12-25 01:08:19 UTC (rev 12304)
15 @@ -9084,9 +9084,6 @@
16 def add(self, task):
17 self._queue.add(task)
18
19 - def run(self):
20 - self._scheduler.schedule()
21 -
22 class JobStatusDisplay(object):
23
24 _bound_properties = ("curval", "failed", "running")