Author: Manuel Jacob
Branch: remove-remaining-smm
Changeset: r69378:8724ffd1d1bf
Date: 2014-02-25 03:36 +0100
http://bitbucket.org/pypy/pypy/changeset/8724ffd1d1bf/

Log:    Fix.

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
@@ -306,7 +306,7 @@
 
     def newset(self, iterable_w=None):
         if iterable_w is None:
-            return W_FrozensetObject(self, None)
+            return W_SetObject(self, None)
         return W_SetObject(self, self.newtuple(iterable_w))
 
     def newfrozenset(self, iterable_w=None):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to