P.E.P. 572?
if (match := matchThisRegex(r))
doSomeShit(match);
statements as expressionsPlease explain, what on earth is statement supposed to mean in this context?
λf. λk. k λx. λk. k λy. λk. k (f x y)
lazy listsPretty sure that it already has that? See range/xrange for example.
tail recursionI think that you mean tail call optimisation. All tail calls may be optimised, not only recursive ones.
I think that you mean tail call optimisation. All tail calls may be optimised, not only recursive ones.while this is true, your're are being a pedantic anus. the point is that there's no TCO in Python and it would be better for FP if it had it
yield my_dubs
if you want but there's always a genexpr if you like one-liners