pytoolz / toolz

A functional standard library for Python.
http://toolz.readthedocs.org/
Other
4.57k stars 258 forks source link

Add functoolz.reorder_args #546

Open groutr opened 1 year ago

groutr commented 1 year ago

Candidate function to reorder arguments of an existing function. Allows alternative function signatures that might be more useful to curry. The wrapped function name reflects the argument remapping for easier debugging.

groutr commented 1 year ago

Apparently the .replace method on code objects wasn't introduced till Python 3.8. Code objects have readonly attributes though, so I need to figure out a workaround for updating the wrapper function name.

groutr commented 11 months ago

@eriknw The test failures I think are caused by the linter. This is ready to look over though.