(a, b)
| 513 | |
| 514 | """ |
| 515 | def gen(a, b): |
| 516 | try: |
| 517 | while 1: |
| 518 | x = next(a) |
| 519 | y = next(b) |
| 520 | yield x |
| 521 | yield y |
| 522 | except StopIteration: |
| 523 | return |
| 524 | |
| 525 | # Step over the import statement in tfunc_import using 'next' and step |
| 526 | # into main() in test_module. |
no outgoing calls
no test coverage detected