Deprecate type comment support?
Personne n'a encore pris cette issue.
- Langage dominant
- Python
- Étoiles
- 20.6k
- Forks
- 3.3k
- Métriques de merge des PR
- Métriques de PR en attente
Description
I've kicked off a discussion on typing-sig, as some of you have already seen, to talk about deprecating and eventually removing type comments.
Currently, the ast module takes type_comments=True to enable parsing any type comment.
I am proposing that this argument emit deprecation warnings with Python 3.12 and 3.13. With Python 3.14 type_comments=True will be removed, and all type comments except for # type: ignore will be treated as normal comments. (# type: ignore will always parse as its own node in the parser).
There is a complication: ast.parse also accepts feature_version. 3.11 is not EOL until 2027, so if someone wanted to parse code written targeting 3.11 with a mypy running on, say 3.14, that would not work under my proposal. I believe that this is acceptable, because the user would have 2 reasonable alternatives: 1) type check their code targeting 3.11 with mypy running on 3.11 2) update to type annotations, which they will need to do eventually anyway, and would have 3 years to do so already.
I think the existing tooling such as libcst, pyupgrade, com2ann, etc make the upgrade relatively straight forward.
I'd be interested to hear what others think mypy should do in regards to removing support for type comments (or if we should at all!)
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Piste de recherche
Commencez par la discussion typing-sig liée et par la proposition de l’issue concernant ast.parse(type_comments=True) et le comportement de feature_version. Déterminez si mypy doit supprimer la prise en charge des commentaires de type et quelle politique de compatibilité est attendue ; la tâche sera terminée lorsqu’une décision approuvée et le périmètre d’implémentation correspondant auront été définis.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- python
- Domaine
- tooling
- Type d'issue
- Fonctionnalité
- Difficulté
- 5/5
- Temps estimé
- Plus d'une semaine
- Activité
- À l'abandon
- Clarté
- À clarifier
- Accessibilité débutants
- 25/100