Message 141836 - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Content
A smaller snippet to reproduce:

    izip().next()

This gets converted to:

    next(izip())

It seems to me that the pattern of the itertools fixer doesn't match to izip().something(), and thus this is skipped.