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.

Author rami
Recipients docs@python, r.david.murray, rami, rhettinger
Date 2017-08-25.09:33:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503653622.92.0.986650587072.issue31270@psf.upfronthosting.co.za>
In-reply-to
Content
Well, I could think of a way to still use repeat() here that also is pretty clean except for the fact that it fails if all inputs to zip_longest are repeat() iterators themselves (which would here lead to an empty iterator while it would otherwise lead to an infinite one):

    def zip_longest(*args, **kwds):
        # zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
        fillvalue = kwds.get('fillvalue')
        iterators = [iter(it) for it in args]

        while True:
            values = []

            for i, it in enumerate(iterators):
                try:
                    values.append(next(it))
                except StopIteration:
                    values.append(fillvalue)
                    iterators[i] = repeat(fillvalue)

            if all(isinstance(it, repeat) for it in iterators):
                break
            else:
                yield tuple(values)

Keeping chain() in use here just for the sake of using it is not worth it, I believe.
History
Date User Action Args
2017-08-25 09:33:42ramisetrecipients: + rami, rhettinger, r.david.murray, docs@python
2017-08-25 09:33:42ramisetmessageid: <1503653622.92.0.986650587072.issue31270@psf.upfronthosting.co.za>
2017-08-25 09:33:42ramilinkissue31270 messages
2017-08-25 09:33:42ramicreate