Commit d27d3a6d authored by Jim Fulton's avatar Jim Fulton

Backing out a test that demonstrated a bug that Guido discovered. The

initial fix causes core dumps. We'll reenable this test when the bug
gets fixed (again).
parent 3d34ff57
...@@ -605,7 +605,7 @@ class TestIOBTrees(BTreeTests, TestCase): ...@@ -605,7 +605,7 @@ class TestIOBTrees(BTreeTests, TestCase):
def _noneraises(self): def _noneraises(self):
self.t[None] = 1 self.t[None] = 1
def testEmptyFirstBucketReportedByGuido(self): def XXXtestEmptyFirstBucketReportedByGuido(self):
b = self.t b = self.t
for i in xrange(29972): # reduce to 29971 and it works for i in xrange(29972): # reduce to 29971 and it works
b[i] = i b[i] = i
......
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