Message193841
| Author |
terry.reedy |
| Recipients |
brett.cannon, chris.jerdonek, eric.snow, ezio.melotti, flox, italip, ncoghlan, python-dev, terry.reedy |
| Date |
2013年07月28日.21:43:35 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1375047815.51.0.123032468168.issue15415@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
-def temp_cwd(name='tempcwd', quiet=False, path=None):
+def temp_cwd(name='tempcwd', quiet=False):
Since this parameter removal was pushed, the Windows buildbots consistently have this new error in this Windows-only test.
ERROR: test_empty (test.test_startfile.TestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\buildbot.python.org3円.3.kloth-win64\build\lib\test\test_startfile.py", line 26, in test_empty
with support.temp_cwd(path=path.dirname(sys.executable)):
File "C:\buildbot.python.org3円.3.kloth-win64\build\lib\contextlib.py", line 115, in helper
return _GeneratorContextManager(func, *args, **kwds)
File "C:\buildbot.python.org3円.3.kloth-win64\build\lib\contextlib.py", line 37, in __init__
self.gen = func(*args, **kwds)
TypeError: temp_cwd() got an unexpected keyword argument 'path' |
|