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

variance not respected for annotated self method #1101

Open
KotlinIsland opened this issue Feb 24, 2025 · 0 comments
Open

variance not respected for annotated self method #1101

KotlinIsland opened this issue Feb 24, 2025 · 0 comments
Labels
type checking / linting issues relating to existing diagnostic rules or proposals for new diagnostic rules upstream bug a bug that also exists in pyright but has not been raised upstream

Comments

@KotlinIsland
Copy link
Collaborator

KotlinIsland commented Feb 24, 2025

Code sample in basedpyright playground

from __future__ import annotations

class A[T]:
    def __init__(self, t: T):
        self._t: T

    def get(self) -> T:
        return self._t

    def set(self: A[object], new_value: int):
        self._t = new_value  # expected error

a = A("hi")
a.set(3)
@KotlinIsland KotlinIsland added the type checking / linting issues relating to existing diagnostic rules or proposals for new diagnostic rules label Feb 24, 2025
@DetachHead DetachHead added the upstream bug a bug that also exists in pyright but has not been raised upstream label Feb 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type checking / linting issues relating to existing diagnostic rules or proposals for new diagnostic rules upstream bug a bug that also exists in pyright but has not been raised upstream
Projects
None yet
Development

No branches or pull requests

2 participants