Commit 50a6fa82 authored by Jim Fulton's avatar Jim Fulton

don't need to specify __slots__ (We're just continuing to not handle

slots and instance dicts correctly.)
parent 766e8c66
...@@ -17,14 +17,12 @@ class B(OOBucket): ...@@ -17,14 +17,12 @@ class B(OOBucket):
pass pass
class T(OOBTree): class T(OOBTree):
__slots__ = ()
_bucket_type = B _bucket_type = B
max_bucket_size = 2 max_bucket_size = 2
max_btree_size = 3 max_btree_size = 3
class S(T): class S(T):
__slots__ = () pass
import unittest import unittest
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment