[issue14637] test.test_import.PathsTests.test_UNC_path is failing

2012-04-21 Thread Brett Cannon
Brett Cannon added the comment: Thanks for catching that, Vinay! Buildbots say it worked. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue14637] test.test_import.PathsTests.test_UNC_path is failing

2012-04-21 Thread Brett Cannon
Brett Cannon added the comment: Thanks for catching that, Vinay! Just waiting for the buildbots to verify my fix (which also included invalidating the cache which is why it was sporadic plus cleaning up sys.path properly). -- ___ Python tracker

[issue14637] test.test_import.PathsTests.test_UNC_path is failing

2012-04-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0356103cde28 by Brett Cannon in branch 'default': Issue #14637: Fix the UNC import test under Windows to actually use http://hg.python.org/cpython/rev/0356103cde28 -- nosy: +python-dev ___ Python tracker

[issue14637] test.test_import.PathsTests.test_UNC_path is failing

2012-04-21 Thread Vinay Sajip
Vinay Sajip added the comment: I think that the line just before the __import__ call: sys.path.append(path) should say sys.path.append(unc) With this change, test_import passes for me (on the pythonv branch). -- nosy: +vinay.sajip ___ Python trac

[issue14637] test.test_import.PathsTests.test_UNC_path is failing

2012-04-20 Thread Brett Cannon
New submission from Brett Cannon : See http://www.python.org/dev/buildbot/all/builders/x86%20XP-5%203.x/builds/104/steps/test/logs/stdio for the failure, but basically: == ERROR: test_UNC_path (test.test_import.PathsTests) ---