This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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.org\3.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.org\3.3.kloth-win64\build\lib\contextlib.py", line 115, in helper
    return _GeneratorContextManager(func, *args, **kwds)
  File "C:\buildbot.python.org\3.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'
History
Date User Action Args
2013-07-28 21:43:35terry.reedysetrecipients: + terry.reedy, brett.cannon, ncoghlan, ezio.melotti, flox, chris.jerdonek, python-dev, eric.snow, italip
2013-07-28 21:43:35terry.reedysetmessageid: <1375047815.51.0.123032468168.issue15415@psf.upfronthosting.co.za>
2013-07-28 21:43:35terry.reedylinkissue15415 messages
2013-07-28 21:43:35terry.reedycreate