python / python/cpython

Generic class with broken `__eq__` cannot be specialized

Aperta
#119,972 0 commenti 0 reazioni 1 assegnatario Vedi su GitHub

@JelleZijlstra ci sta già lavorando.

Dal 3/6/2024.

3.12 3.13 3.14 topic-typing type-bug
Lingua principale
Python
Stelle
77.2k
Fork
35.9k
Metriche di merge delle PR
Metriche PR in attesa

Descrizione

Bug report

Bug description:

This test case currently fails:

    def test_buggy_eq(self):
        class BrokenEq(abc.ABCMeta):
            def __eq__(self, other):
                raise TypeError("I'm broken")

        class G(Generic[T], metaclass=BrokenEq):
            pass

        alias = G[int]
        self.assertIs(get_origin(alias), G)
        self.assertEqual(get_args(alias), (int,))

See python/typing_extensions#422 for a real-world example.

CPython versions tested on:

CPython main branch

Operating systems tested on:

macOS

Linked PRs
  • gh-119973

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.