From 180db2e23dc98967d58cf041293263926bb0ccde Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 9 Apr 2015 16:25:21 -0500 Subject: [PATCH] Minor neatening of iter. --- volatility/framework/symbols/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/symbols/__init__.py b/volatility/framework/symbols/__init__.py index 573fc3773..f2ee98c61 100644 --- a/volatility/framework/symbols/__init__.py +++ b/volatility/framework/symbols/__init__.py @@ -56,7 +56,7 @@ class SymbolSpace(collections.abc.Mapping): def __iter__(self): """Iterates through all available tables in the symbol space""" - return self._dict.__iter__() + return iter(self._dict) def append(self, value): """Adds a symbol_list to the end of the space"""