pytoolz/toolz

Should curry be deprecated?

caleb15 opened this issue · 2 comments

https://docs.djangoproject.com/en/3.1/releases/3.0/ says:

django.utils.functional.curry() - Use functools.partial() or functools.partialmethod. See 5b1c389603a353625ae1603.

Can functools.partial or functools.partialmethod be used as a replacement for curry? If so it seems that curry should be deprecated as functools is part of the stdlib.

https://docs.python.org/3/library/functools.html#functools.partial
https://docs.python.org/3/library/functools.html#functools.partialmethod

Alright, thanks.