Type of default value for `attrs.field()` is revealed as `Union[builtins.int, None]`
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 20.6k
- Forks
- 3.3k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
Bug Report
Default (default=) value for attrs.field() type is revealed as Union[builtins.int, None] where the Union with None is unexpected. While this used to be revealed as Any, this shows up as a regression, bisected to https://github.com/python/mypy/commit/391ed853f (PR https://github.com/python/mypy/pull/15021, mypy master, unreleased).
To Reproduce
import attrs
@attrs.define()
class MyDataClass:
some_int_field: int = attrs.field(default=123)
# Somewhere else in the project I would like to reference that default:
reveal = attrs.fields(MyDataClass).some_int_field.default
reveal_type(reveal)
assignment_to_int_fails: int = attrs.fields(MyDataClass).some_int_field.default
Expected Behavior
$ mypy --strict myfile.py
myfile.py:9:13: note: Revealed type is "builtins.int"
Success: no issues found in 1 source file
Actual Behavior
on master (tested 9edda9a79790d8f7263234eca9509657ea0c37f0):
$ mypy --strict --show-error-context --show-column-numbers myfile.py
myfile.py:9:13: note: Revealed type is "Union[builtins.int, None]"
myfile.py:11:32: error: Incompatible types in assignment (expression has type "int | None", variable has type "int") [assignment]
Found 1 error in 1 file (checked 1 source file)
(my project fails, suspected mypy bug / imperfect type inference)
On 1.5.1:
$ mypy --strict myfile.py
myfile.py:9:13: note: Revealed type is "Any"
Success: no issues found in 1 source file
(my project passes, albeit without a proper type check)
Your Environment
- Mypy version used: master (1.5.1 = OK, introduced with https://github.com/python/mypy/commit/391ed853f)
- Mypy command-line flags:
--strict --show-error-context --show-column-numbers - Mypy configuration options from
mypy.ini(and other config files): n/a - Python version used: 3.11.5
Project to test on if you want (100% mypy-strict compatible on 1.5.1 and master otherwise): https://github.com/gertvdijk/PyKMP
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 dem minimalen attrs-Beispiel im Issue und führe es unter mypy master mit --strict aus; vergleiche das Verhalten mit Version 1.5.1. Lies den per Bisect ermittelten Commit 391ed853f und PR #15021, um die Regression nachzuverfolgen. Als erledigt gilt die Aufgabe, wenn der Default als int aufgedeckt wird und die Zuweisung ohne Fehler durchläuft.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- python
- Bereich
- compilers, devtools
- Issue-Typ
- Bug
- Schwierigkeit
- 3/5
- Geschätzter Aufwand
- 1-2 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 38/100