Batuhan Taskaya <isidenti...@gmail.com> added the comment:

An example would be this 
https://github.com/python/cpython/blob/24bddc1b3b58f6899b2d412e51b37f68536e4fe2/Lib/test/test_typing.py#L2744-L2745.
 Either I can change tests in order to reflect now everything is a forward ref 
by default
class Loop:
    attr: Final['Loop']
to
class Loop:
    attr: Final[Loop]
or resolve everything on get_type_hints.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue38605>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to