[issue37806] Infinite recursion with typing.get_type_hints

2019-09-13 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37806] Infinite recursion with typing.get_type_hints

2019-09-13 Thread hongweipeng
hongweipeng added the comment: Sorry, the link is https://github.com/python/cpython/pull/15400 . -- ___ Python tracker ___ ___

[issue37806] Infinite recursion with typing.get_type_hints

2019-09-13 Thread hongweipeng
hongweipeng added the comment: This report can be closed, PR #15400 has solved this issue. -- nosy: +hongweipeng ___ Python tracker ___

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-28 Thread hongweipeng
Change by hongweipeng : -- pull_requests: +15232 pull_request: https://github.com/python/cpython/pull/15559 ___ Python tracker ___

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-25 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-25 Thread hongweipeng
Change by hongweipeng : -- keywords: +patch pull_requests: +15181 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15493 ___ Python tracker ___

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-10 Thread Ivan Levkivskyi
Change by Ivan Levkivskyi : -- assignee: -> levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-10 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +gvanrossum, levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-09 Thread Valerio G
Change by Valerio G : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-09 Thread Valerio G
New submission from Valerio G : I encountered one condition where calling get_type_hints causes infinite recursion when dealing with forward declaration and cyclic types. Here's an example: from typing import Union, List, get_type_hints ValueList = List['Value'] Value = Union[str,