Closed
Description
Feature or enhancement
In #119827 (comment), @rhettinger proposed to add the __get__
method to the partial
object in functools
. This is a breaking change, although the impact may be much lesser than of adding __get__
to builtin functions. But we should follow the common procedure for such changes: first add __get__
that emits FutureWarning with suggestion to wrap partial into staticmethod and return the partial
object unchanged, then change the behavior few releases later.