Skip to content

Conversation

@AlexWaygood
Copy link
Member

@AlexWaygoodAlexWaygood commented Jul 25, 2023

Comment on lines +2698 to +2703
def__init__(
cls, name: str, bases: tuple[type, ...], classdict: dict[str, Any]
) ->None:
converter_cls=cast(type["CConverter"], cls)
add_c_converter(converter_cls)
add_default_legacy_c_converter(converter_cls)
Copy link
MemberAuthor

@AlexWaygoodAlexWaygoodJul 25, 2023

Choose a reason for hiding this comment

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

Mypy was complaining because our type annotation for add_c_converter says (correctly) that the argument passed in has to be a subclass of CConverter. But that isn't necessarily true here, since this metaclass could theoretically be used with classes other than CConverter (it isn't, and it won't be, but mypy doesn't know that).

Ideally we could do this:

def__init__( cls, name: str, bases: tuple[type, ...], classdict: dict[str, Any] ) ->None: assertissubclass(cls, CConverter) add_c_converter(cls) add_default_legacy_c_converter(cls)

But we can't... because if cls is CConverter itself, then at this point, CConverter doesn't exist in the global namespace yet! So that would fail with NameError.

I therefore elected to use typing.cast() to just tell mypy to go away here.

Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks for writing these excellent explanations!

Copy link
MemberAuthor

Choose a reason for hiding this comment

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

I'm glad they're all making sense! :D

@AlexWaygoodAlexWaygood merged commit ee90107 into python:mainJul 25, 2023
@AlexWaygoodAlexWaygood deleted the misc-clinic-typing branch July 25, 2023 21:08
jtcave pushed a commit to jtcave/cpython that referenced this pull request Jul 27, 2023
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@AlexWaygood@erlend-aasland@bedevere-bot