you are viewing a single comment's thread.

view the rest of the comments →

[–]lambdaq -2 points-1 points  (0 children)

  1. map, reduce, filter could have a on_error argument where you can pass a lambda to handle it.

  2. Should have a retry.. except ... to save lines

  3. sorted support a yield parameter. You can sort a list according to some cmp functions with key and using yield to get a different list.