Author: Lukas Diekmann <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to