Split this iterator into two pieces. The original iterator is still callable, as is the sub-iterator.
(self)
| 49 | return self.__idup.getNext(self.__iterno) |
| 50 | |
| 51 | def split(self): |
| 52 | """Split this iterator into two pieces. The original iterator |
| 53 | is still callable, as is the sub-iterator.""" |
| 54 | |
| 55 | return _IDupped(self.__idup,self.__iterno) |
| 56 | |
| 57 | def __iter__(self): |
| 58 | return self |
no test coverage detected