changeset: 105037:0f863906cf2e branch: 3.6 parent: 105034:249a1f0b2857 parent: 105036:555f0ca31587 user: Guido van Rossum date: Thu Nov 10 08:29:19 2016 -0800 files: Lib/typing.py description: Issue #28649: fix second issue with _ForwardRef (#328) (3.5->3.6) diff -r 249a1f0b2857 -r 0f863906cf2e Lib/typing.py --- a/Lib/typing.py Thu Nov 10 08:26:19 2016 -0800 +++ b/Lib/typing.py Thu Nov 10 08:29:19 2016 -0800 @@ -218,7 +218,7 @@ self.__forward_value__ = None def _eval_type(self, globalns, localns): - if not self.__forward_evaluated__: + if not self.__forward_evaluated__ or localns is not globalns: if globalns is None and localns is None: globalns = localns = {} elif globalns is None: