You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PEP 585, type hinting generics in standard collections.
https://peps.python.org/pep-0585/#rationale-and-goals This change removes the necessity for a parallel type hierarchy in the typing module, making it easier for users to annotate their programs and easier for teachers to teach Python.
Tuple, List and Dict from typing are depreciated since Python 3.9 and will be removed... so MrPython needs to support this new (2019) syntax.
The text was updated successfully, but these errors were encountered:
PEP 585, type hinting generics in standard collections.
https://peps.python.org/pep-0585/#rationale-and-goals
This change removes the necessity for a parallel type hierarchy in the typing module, making it easier for users to annotate their programs and easier for teachers to teach Python.
Tuple, List and Dict from typing are depreciated since Python 3.9 and will be removed... so MrPython needs to support this new (2019) syntax.
The text was updated successfully, but these errors were encountered: