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
(The PEP went back and forth a few times; Undefined was removed. Right now the PEP suggests using either a # type comment or defining an alias, e.g. IntList = List[int] after which you can say y = IntList().)
The current PEP 484 draft does not allow writing code like this:
Instead, the recommended way is using type annotations:
See also: python/typing#9
The text was updated successfully, but these errors were encountered: