Closed GoogleCodeExporter closed 9 years ago
fixed in r99 (accidentally said that was for issue31)
Original comment by pmo...@google.com
on 29 Aug 2009 at 9:56
Hi Peter,
(oops original comment was on issue 31)
I think there is a small bug in the tests:
+ self.assertTrue(ipaddr.IPNetwork('::1'), ipaddr.IPNetwork('::1'))
+ self.assertTrue(ipaddr.IPNetwork('::1'), ipaddr.IPNetwork('::2'))
should probably be:
+ self.assertTrue(ipaddr.IPNetwork('::1') <= ipaddr.IPNetwork('::1'))
+ self.assertTrue(ipaddr.IPNetwork('::1') <= ipaddr.IPNetwork('::2'))
Original comment by mattimus...@gmail.com
on 30 Aug 2009 at 10:51
Original issue reported on code.google.com by
pmo...@google.com
on 29 Aug 2009 at 9:14