Commit 9a490ea8 authored by Fred Drake's avatar Fred Drake

add missing spaces for readability

parent 3722aab1
...@@ -29,9 +29,9 @@ class TestBTreeContainer(TestSampleContainer, TestCase): ...@@ -29,9 +29,9 @@ class TestBTreeContainer(TestSampleContainer, TestCase):
class TestBTreeLength(TestCase): class TestBTreeLength(TestCase):
def testStoredLength(self): def testStoredLength(self):
#This is lazy for backward compatibility. If the len is not # This is lazy for backward compatibility. If the len is not
#stored already we set it to the length of the underlying # stored already we set it to the length of the underlying
#btree. # btree.
bc = BTreeContainer() bc = BTreeContainer()
self.assertEqual(bc.__dict__['_BTreeContainer__len'](), 0) self.assertEqual(bc.__dict__['_BTreeContainer__len'](), 0)
del bc.__dict__['_BTreeContainer__len'] del bc.__dict__['_BTreeContainer__len']
......
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