# Feature or enhancement In https://github.com/python/cpython/pull/119827#issuecomment-2190108757, @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. <!-- gh-linked-prs --> ### Linked PRs * gh-121086 * gh-121089 * gh-121092 <!-- /gh-linked-prs -->