Can someone explain why this code:
import sys
sys.path.append("C:\\WINDOWS\\system32")
import clr
clr.AddReferenceToFile("wiimotelib.dll")
works fine with IronPython 2.6, but fails in IronPython 2.7 alpha 1 with an IOException, and the message:
Could not add reference to assembly wiimotelib.dll
Is this new behaviour in 2.7, or is it an alpha release bug?