[issue25093] New 3.5.0 failure in test_tcl on win7

2015-10-13 Thread Zachary Ware
Zachary Ware added the comment: Thank you for the patch, Serhiy. I'm just sorry it took me so long to get it committed. -- ___ Python tracker ___

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file40602/testLoadWithUNC_2.diff ___ Python tracker ___

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please commit corrected patch. -- assignee: -> zach.ware stage: patch review -> commit review ___ Python tracker ___

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Looks like an issue with a space in the path. That test has been flaky in the past, though, I assume it's failed multiple times? -- ___ Python tracker

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I tried more that once before submitting. That directory was a mistake. I since reinstalled 3.5.0 to put it in \Python35 (no space, ) and it works. Does it fail dependable in 'Program Files'? -- ___ Python tracker

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: The patch works, with an added 'import subprocess' and after removing the 'f.close()' check. I hadn't realized this test was still using os.popen, that's fairly horrible :) -- ___ Python tracker

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Terry J. Reedy
New submission from Terry J. Reedy: [324/397/3] test_tcl '\\TEJAREX\C$\Programs\Python' is not recognized as an internal or external command, operable program or batch file. test test_tcl failed -- Traceback (most recent call last): File "C:\Programs\Python 3.5\lib\test\test_tcl.py", line

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Yes, installation in 'Program Files' produces the failure. Looks like it's probably just bad quoting in the test, but I haven't looked at the code yet. This probably affects 2.7 and up, I don't think there have been any changes to that test in recent

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you please test with following patch? -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file40454/testLoadWithUNC.diff ___ Python tracker