Commit 12410a4a authored by Jason Madden's avatar Jason Madden

Actually do what the comment says and make both bounds None.

parent 201b339d
......@@ -992,7 +992,7 @@ class BTreeTests(MappingBase):
diff = lsubtract(list(t.keys(0, 100)), r)
self.assertEqual(diff , [], diff)
# The same thing with no bounds
diff = lsubtract(list(t.keys(0, 100)), r)
diff = lsubtract(list(t.keys(None, None)), r)
self.assertEqual(diff , [], diff)
# The same thing with each bound set and the other
# explicitly None
......
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