On 8 September 2016 at 00:00, Paul Moore <[email protected]> wrote:
> > Type annotations are code, not tests.
>
> Not in Python they aren't.
>
Well, to a certain extent. One can try something like this in REPL:
from typing import get_type_hints
import __main__
s: str
class C:
x: int
get_type_hints(C)
get_type_hints(__main__)
Although please remember that the PEP is still provisional and
implementation details may change.
--
Ivan
_______________________________________________
Python-ideas mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/