changeset: 105038:84b4ac243508 parent: 105035:304f017462e4 parent: 105037:0f863906cf2e user: Guido van Rossum date: Thu Nov 10 08:29:20 2016 -0800 description: Issue #28649: fix second issue with _ForwardRef (#328) (3.6->3.7) diff -r 304f017462e4 -r 84b4ac243508 Lib/typing.py --- a/Lib/typing.py Thu Nov 10 08:27:50 2016 -0800 +++ b/Lib/typing.py Thu Nov 10 08:29:20 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: