From afc3c3624c56dafdb263351715f982915d16884f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 24 Sep 2009 20:43:14 +0000 Subject: Use dict.__iter__ instead of keys(), since it behaves identically in python 2 and 3. svn path=/main/trunk/; revision=14412 --- pym/portage/cache/mappings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/cache/mappings.py b/pym/portage/cache/mappings.py index bd9f082b9..ed6e19ddd 100644 --- a/pym/portage/cache/mappings.py +++ b/pym/portage/cache/mappings.py @@ -67,7 +67,7 @@ class Mapping(object): return repr(dict(self.items())) def __len__(self): - return len(list(self.keys())) + return len(list(self)) if sys.hexversion >= 0x3000000: items = iteritems @@ -80,7 +80,7 @@ class MutableMapping(Mapping): """ def clear(self): - for key in list(self.keys()): + for key in list(self): del self[key] def setdefault(self, key, default=None): -- cgit v1.2.3-1-g7c22