Modify _Set to support iteration.

Otherwise printlist(surprise) will fail with a TypeError, because map
is called with an argument that doesn't support iteration.
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 285acba..4c7b4be 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -416,6 +416,9 @@
                 del data[x]
         return result
 
+    def __iter__(self):
+        return iter(self.data)
+
     def tolist(self, sorted=1):
         "Return _Set elements as a list."
         data = self.data.keys()