Thanks to visit codestin.com
Credit goes to github.com

Skip to content

bpo-45081: Fix __init__ method generation when inheriting from Protocol #28121

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 5 commits into from
Sep 2, 2021

Conversation

uriyyo
Copy link
Member

@uriyyo uriyyo commented Sep 2, 2021

@uriyyo
Copy link
Member Author

uriyyo commented Sep 2, 2021

@Fidget-Spinner Could you please verify that we need backport those changes to 3.9 and 3.10 versions?

Copy link
Member

@Fidget-Spinner Fidget-Spinner left a comment

Choose a reason for hiding this comment

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

@uriyyo if I understand the original issue correctly, you're right that we need to backport this to fix that issue's backports.

I'm deferring this to @serhiy-storchaka or @ambv because I'm not too familiar with the previous patch that caused this regression. Sorry.

@uriyyo uriyyo requested a review from gvanrossum as a code owner September 2, 2021 12:03
@uriyyo
Copy link
Member Author

uriyyo commented Sep 2, 2021

@Fidget-Spinner Could you please review this PR? Looks like I found way how to fix this issue without changing dataclasses module.

Copy link
Member

@Fidget-Spinner Fidget-Spinner left a comment

Choose a reason for hiding this comment

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

After researching this issue (and the previous patch), this LGTM in general, I only have suggestions to change wording in some parts.

I'm not very confident with backporting this change so late into 3.10's release cycle. I hope another core dev can review.

cls = type(self)

if cls._is_protocol:
raise TypeError('Protocols cannot be instantiated')
Copy link
Member

Choose a reason for hiding this comment

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

Note to self: this is the previous behavior.

Copy link
Member

@Fidget-Spinner Fidget-Spinner left a comment

Choose a reason for hiding this comment

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

LGTM. I will wait a bit to see if Serhiy or Lukasz (or anyone else) says anything.

@Fidget-Spinner Fidget-Spinner changed the title bpo-45081: Fix dataclass __init__ method generation when inherit from Protocol bpo-45081: Fix __init__ method generation when inheriting from Protocol Sep 2, 2021
@ambv
Copy link
Contributor

ambv commented Sep 2, 2021

The previous behavior was introduced in GH-27545 as an attempt to make non-protocol subclasses of Protocol ignore the __init__ inherited from protocol base classes.

This PR retains this ability and restores compatibility with dataclasses. LGTM.

@ambv ambv merged commit 0635e20 into python:main Sep 2, 2021
@miss-islington
Copy link
Contributor

Thanks @uriyyo for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10.
🐍🍒⛏🤖 I'm not a witch! I'm not a witch!

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 2, 2021
…ol (pythonGH-28121)

Co-authored-by: Ken Jin <[email protected]>
(cherry picked from commit 0635e20)

Co-authored-by: Yurii Karabas <[email protected]>
@bedevere-bot bedevere-bot removed the needs backport to 3.10 only security fixes label Sep 2, 2021
@bedevere-bot
Copy link

GH-28131 is a backport of this pull request to the 3.10 branch.

@bedevere-bot bedevere-bot removed the needs backport to 3.9 only security fixes label Sep 2, 2021
@bedevere-bot
Copy link

GH-28132 is a backport of this pull request to the 3.9 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 2, 2021
…ol (pythonGH-28121)

Co-authored-by: Ken Jin <[email protected]>
(cherry picked from commit 0635e20)

Co-authored-by: Yurii Karabas <[email protected]>
ambv pushed a commit that referenced this pull request Sep 2, 2021
…ol (GH-28121) (GH-28132)

Co-authored-by: Ken Jin <[email protected]>
(cherry picked from commit 0635e20)

Co-authored-by: Yurii Karabas <[email protected]>
miss-islington added a commit that referenced this pull request Sep 3, 2021
…ol (GH-28121)

Co-authored-by: Ken Jin <[email protected]>
(cherry picked from commit 0635e20)

Co-authored-by: Yurii Karabas <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants