Antoine Pitrou <pit...@free.fr> added the comment:

Good idea, IMO.

+            cum = set()
+            for i in range(100):
+                val = getbytes(span)
+                cum |= set(i for i in range(span) if val[i])
+            self.assertEqual(len(cum), span)

I find this test a bit strange. Also, perhaps it should be bitwise rather than 
bytewise.

----------
nosy: +pitrou
stage:  -> patch review
versions:  -Python 3.2

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13396>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to