From dad179075ac026debf32c457df0f6ecd27787d30 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 10 Nov 2016 08:29:18 -0800 Subject: [PATCH] Issue #28649: fix second issue with _ForwardRef (#328) --- Lib/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/typing.py b/Lib/typing.py index 462cc225f6..7a64e07a18 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -218,7 +218,7 @@ class _ForwardRef(_TypingBase, _root=True): 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: -- 2.40.0