[pypy-commit] pypy set-strategies: fixed _mixin_

l.diekmann noreply at buildbot.pypy.org
Thu Nov 10 13:49:51 CET 2011


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
Branch: set-strategies
Changeset: r49165:190fda089ccf
Date: 2011-05-18 17:15 +0200
http://bitbucket.org/pypy/pypy/changeset/190fda089ccf/

Log:	fixed _mixin_

diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py
--- a/pypy/objspace/std/setobject.py
+++ b/pypy/objspace/std/setobject.py
@@ -288,7 +288,7 @@
         w_set.update(w_other)
 
 class AbstractUnwrappedSetStrategy(object):
-    __mixin__ = True
+    _mixin_ = True
 
     def get_empty_storage(self):
         raise NotImplementedError


More information about the pypy-commit mailing list