debugging IronPython in pytools 1.5 does not correctly set scope in Locals, Autos and Immediate Window
description
With release 1.5.51026.0 when I try to debug an IronPython script I cannot access any of the scripts internal variables using any of the VS debug windows including the Locals, Autos or Watch window. Furthermore, neither the Immediate Window or the IronPython 2.7 Interactive display any in-scope variables. Resetting the Interactive window returns the error: -
Interactive window is not yet started.
This is even with a very simple script such as: -
x = 1
y = x + 1