This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients ethan smith, gvanrossum, levkivskyi, masthana, msullivan, serhiy.storchaka, yselivanov
Date 2019-02-28.23:25:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551396304.47.0.647357075169.issue35975@roundup.psfhosted.org>
In-reply-to
Content
> Would not be simpler to just drop the support of Python versions <3.7 in new MyPy versions?

Not really -- mypy has a lot of users who run it over (very) large code bases that can't easily be upgraded. Basically mypy has to support all Python versions that haven't reached their end of life yet. (And it's also important that mypy not be constrained to the same Python version as the target code.)

I suppose we could just stick with the existing typed_ast that supports 3.4 through 3.7, but we actually have a use case for the end_lineno and end_col_offset fields that were just added to ast in 3.8, and in general we'd like to support any future grammar elements and ast features.
History
Date User Action Args
2019-02-28 23:25:04gvanrossumsetrecipients: + gvanrossum, serhiy.storchaka, yselivanov, levkivskyi, ethan smith, masthana, msullivan
2019-02-28 23:25:04gvanrossumsetmessageid: <1551396304.47.0.647357075169.issue35975@roundup.psfhosted.org>
2019-02-28 23:25:04gvanrossumlinkissue35975 messages
2019-02-28 23:25:04gvanrossumcreate