Commit 1ccccc08 authored by Michael W. Hudson's avatar Michael W. Hudson

Make test_mhlib run again.

There's some wierdness here, but the test ran before and not after,
so I'm just hacking the change out.  Someone more motivated than
me can work out what's really happening.

Raymond: *PLEASE* run the test suite before checking things like
this in!
parent 9ea6c197
...@@ -788,7 +788,7 @@ class IntSet: ...@@ -788,7 +788,7 @@ class IntSet:
self.pairs = [] self.pairs = []
self.sep = sep self.sep = sep
self.rng = rng self.rng = rng
if data is not None: self.fromstring(data) if data: self.fromstring(data)
def reset(self): def reset(self):
self.pairs = [] self.pairs = []
......
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