
May 10, 2020
11:45 p.m.
On Sun, 10 May 2020 16:04:02 -0000 "Brandt Bucher" <brandtbucher@gmail.com> wrote:
I have pushed a second draft of PEP 618:
https://www.python.org/dev/peps/pep-0618
Please let me know what you think – I'd love to hear any new feedback that hasn't yet been addressed in the PEP!
"""
x = iter([iter([1, 2, 3]), iter(["one" "two" "three"])]) xt = list(zip(*x)) """
I'm not sure what the `iter`s bring here. The snippet would be more readable without, IMHO. Regards Antoine.