Skip to content
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

gh-119605: Preserve class signature after wrapping with @warnings.deprecated #132055

Open
wants to merge 17 commits into
base: main
Choose a base branch
from

Conversation

XuehaiPan
Copy link
Contributor

@XuehaiPan XuehaiPan commented Apr 3, 2025

@XuehaiPan XuehaiPan marked this pull request as ready for review April 3, 2025 17:45
@XuehaiPan
Copy link
Contributor Author

cc @JelleZijlstra

@XuehaiPan XuehaiPan requested a review from JelleZijlstra April 4, 2025 15:43
import functools
from types import MethodType

original_new = arg.__new__
is_object_new = original_new is object.__new__

@functools.wraps(original_new)
def __new__(cls, *args, **kwargs):
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A question might be out of the scope of this PR: Should we make cls a positional-only argument?

Suggested change
def __new__(cls, *args, **kwargs):
def __new__(cls, /, *args, **kwargs):

A 'cls' key will never be collected in kwargs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants