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 C355713800E for ; Thu, 2 Aug 2012 15:15:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 884DEE0743; Thu, 2 Aug 2012 15:14:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 594B8E0743 for ; Thu, 2 Aug 2012 15:14:23 +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 DC4FF1B402E for ; Thu, 2 Aug 2012 15:14:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D3A9CE545C for ; Thu, 2 Aug 2012 15:14:18 +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: <1343920172.1a0b951c506d40584bb2df25a975a17a832cb7e0.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/errorqueue.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 1a0b951c506d40584bb2df25a975a17a832cb7e0 X-VCS-Branch: master Date: Thu, 2 Aug 2012 15:14:18 +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: bd124155-245c-4beb-bdf6-5432ecb969d3 X-Archives-Hash: 47f7b729e40c0b071954507e8521360e commit: 1a0b951c506d40584bb2df25a975a17a832cb7e0 Author: André Erdmann mailerd de> AuthorDate: Thu Aug 2 15:09:32 2012 +0000 Commit: André Erdmann mailerd de> CommitDate: Thu Aug 2 15:09:32 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=1a0b951c errorqueue: remove done TODO --- roverlay/errorqueue.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/roverlay/errorqueue.py b/roverlay/errorqueue.py index 2b5135a..ba14fab 100644 --- a/roverlay/errorqueue.py +++ b/roverlay/errorqueue.py @@ -8,8 +8,7 @@ class ErrorQueue ( object ): self.using_threads = using_threads self.empty = True self._exceptions = list() - # this error queue is able to unblock waiting queues (in future; TODO) - # id -> queue [, unblocking_item:=None] + # id -> queue, unblocking_item self._queues_to_unblock = dict() self._lock = threading.Lock()