Type narrowing and PEP 634 pattern matching
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 20.6k
- Forks
- 3.3k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
Feature
Narrowing a type in a case block that matches the True result of a type-narrowing expression.
Pitch
Hi all- I'd be curious to hear opinions on how realistic the above would be. Here's an example of something that would work if this were implemented:
a: str | None = "hello"
match a is not None: # or `match isinstance(a, str)`, etc.
case True:
print("'a' is a string", a.encode()) # currently: Item "None" of "str | None" has no attribute "encode"
case False:
print("'a' is None")
My "pitch" is simply that this feels like it should work (even though it makes sense to me why it doesn't). I think this feeling comes from the fact that, at least on the surface:
if thing:
blah()
else:
whatev()
seems morally equivalent to
match thing:
case True:
blah()
case False:
whatev()
Since I don't have any background with mypy's internals, I'm hoping to hear from the team here how feasible this all sounds.
For context, I ran into this issue when I had a type-narrowing expression embedded in a larger scrutinee (in practice, I can't imagine using match over if if the only thing I were testing was the result of a single type-narrowing expression). Specifically, I was creating a decision table of sorts, and match seemed like a nice way to do that without having to repeat tests:
content: str | bytes
is_text_format: bool
match isinstance(content, str), is_text_format:
case True, True:
prepped = content
case True, False:
prepped = content.encode("utf-8") # type narrowing useful here
case False, True:
prepped = content.decode("utf-8") # and here
case False, False:
prepped = content
...
I'm sure there are better ways to tackle this bool-centric example, but I think the general question stands on its own outside my original context.
Thank you for your consideration!
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne mit den beiden Match-Beispielen im Issue und vergleiche deren angefordertes Narrowing-Verhalten mit den aktuellen mypy-Diagnosen. Im Issue ist keine Quelldatei, kein Test und kein Einstiegspunkt angegeben, daher wäre das Auffinden der Implementierung für Pattern-Matching und Type-Narrowing Teil der Arbeit. Als erledigt gilt die Aufgabe, wenn die Zweige für True und False den geprüften Ausdruck konsistent eingrenzen, einschließlich Tuple-Scrutinees.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- python
- Bereich
- devtools
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 25/100