All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] runqueue: drop unnecessary keys() in runqueue_process_waitpid
@ 2012-05-09 23:35 Christopher Larson
  2012-05-11  9:06 ` Richard Purdie
  0 siblings, 1 reply; 2+ messages in thread
From: Christopher Larson @ 2012-05-09 23:35 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 lib/bb/runqueue.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 8828e4a..462c685 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1064,7 +1064,7 @@ class RunQueueExecute:
         del self.build_pipes[pid]
 
         # self.build_stamps[pid] may not exist when use shared work directory.
-        if pid in self.build_stamps.keys():
+        if pid in self.build_stamps:
             del self.build_stamps[pid]
 
         if status != 0:
-- 
1.7.7




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] runqueue: drop unnecessary keys() in runqueue_process_waitpid
  2012-05-09 23:35 [PATCH] runqueue: drop unnecessary keys() in runqueue_process_waitpid Christopher Larson
@ 2012-05-11  9:06 ` Richard Purdie
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2012-05-11  9:06 UTC (permalink / raw)
  To: Christopher Larson; +Cc: Christopher Larson, bitbake-devel

On Wed, 2012-05-09 at 18:35 -0500, Christopher Larson wrote:
> From: Christopher Larson <chris_larson@mentor.com>
> 
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> ---
>  lib/bb/runqueue.py |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Merged to master along with the previous patch, thanks.

Richard




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-11  9:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09 23:35 [PATCH] runqueue: drop unnecessary keys() in runqueue_process_waitpid Christopher Larson
2012-05-11  9:06 ` Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.