From: Zac Medico Date: Thu, 24 Sep 2009 20:43:14 +0000 (-0000) Subject: Use dict.__iter__ instead of keys(), since it behaves identically in python X-Git-Tag: v2.2_rc42~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=afc3c3624c56dafdb263351715f982915d16884f;p=portage.git Use dict.__iter__ instead of keys(), since it behaves identically in python 2 and 3. svn path=/main/trunk/; revision=14412 --- 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):