Minor neatening of iter.

This commit is contained in:
Mike Auty
2015-04-09 16:25:21 -05:00
parent 5493617727
commit 180db2e23d
+1 -1
View File
@@ -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"""