intbitset: fixed iteration-related segfault
- If an intbitset was directly iterated as in: >>> for x in intbitset([1,2,3]): ... this would have caused a Python segmentation fault, due to the iterator object referencing an intbitset that immediately disappears from memory. This is now fixed.
- Added a test case for this problem.