Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r64449:09477d50934b
Date: 2013-05-22 15:01 +0200
http://bitbucket.org/pypy/pypy/changeset/09477d50934b/

Log:    add sets

diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -666,9 +666,11 @@
         # register other things
         from pypy.objspace.std.dictmultiobject import W_DictMultiObject
         from pypy.objspace.std.listobject import W_ListObject
+        from pypy.objspace.std.setobject import W_SetObject
 
         self._interplevel_classes[self.w_dict] = W_DictMultiObject
         self._interplevel_classes[self.w_list] = W_ListObject
+        self._interplevel_classes[self.w_set] = W_SetObject
 
     @specialize.memo()
     def _get_interplevel_cls(self, w_type):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to