-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
gh-121027: Make the functools.partial object a method descriptor #121089
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
gh-121027: Make the functools.partial object a method descriptor
Co-authored-by: d.grigonis <dgrigonis@users.noreply.github.com>
- Loading branch information
commit d75250521ee16d596c06a7fe4a7bc3584a5c3810
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
from collections import namedtuple | ||
# import types, weakref # Deferred to single_dispatch() | ||
from reprlib import recursive_repr | ||
from types import MethodType | ||
from _thread import RLock | ||
|
||
# Avoid importing types, so we can speedup import time | ||
|
@@ -314,12 +315,7 @@ def __repr__(self): | |
def __get__(self, obj, objtype=None): | ||
if obj is None: | ||
return self | ||
import warnings | ||
warnings.warn('functools.partial will be a method descriptor in ' | ||
'future Python versions; wrap it in staticmethod() ' | ||
'if you want to preserve the old behavior', | ||
FutureWarning, 2) | ||
return self | ||
return MethodType(self, obj) | ||
|
||
def __reduce__(self): | ||
return type(self), (self.func,), (self.func, self.args, | ||
|
@@ -402,7 +398,7 @@ def _method(cls_or_self, /, *args, **keywords): | |
def __get__(self, obj, cls=None): | ||
get = getattr(self.func, "__get__", None) | ||
result = None | ||
if get is not None and not isinstance(self.func, partial): | ||
if get is not None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was needed to avoid emitting a warning for |
||
new_func = get(obj, cls) | ||
if new_func is not self.func: | ||
# Assume __get__ returning something new indicates the | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Library/2024-06-27-12-27-52.gh-issue-121027.D4K1OX.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Make the :class:`functools.partial` object a method descriptor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.