New submission from Cesare Di Mauro :
This test fails on Windows because it tries to change the working folder to an
empty string.
Anyway, even changing:
os.chdir(basepath)
with:
os.chdir(basepath or '.')
it fails because the subprocess tries to execute an ELF file
('Mod
New submission from Cesare Di Mauro :
Executing test_future5 fails:
D:\CPython>PCbuild\python_d.exe Lib\test\test_future5.py
Traceback (most recent call last):
File "Lib\test\test_future5.py", line 6, in
from . import support
ValueError: Attempted relative import in non-p
Cesare Di Mauro added the comment:
Unfortunately this test isn't skip on normal setup (using VisualStudio 2008
Express). I've updated the clone just a few minutes ago, rebuilt Python (in
Debug mode), and that's what happened:
D:\CPython>PCbuild\python_d.exe Lib