Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I guess in Python it would be going from:

    list(map(lambda x: x**2, [1, 2, 3, 4]))
To:

   list(pmap(lambda x: x**2, [1, 2, 3, 4]))


Right, and neither of those are pythonic. There is no need for a lambda when you have comprehensions.

This comment may relate better to your point: I would personally prefer "afor" over "async for", FWIW. One thing I don't feel "async for" is being more explicit over being more verbose. The symmetry with "await foo" is broken though.




Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: