[issue5613] test_posix.py and test_wait4.py having missing import on win32

2009-04-01 Thread R. David Murray
R. David Murray added the comment: Fixed in trunk as part of the change to the way regrtest handles ImportErrors. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue5613] test_posix.py and test_wait4.py having missing import on win32

2009-03-30 Thread Tim Driscoll
New submission from Tim Driscoll : These are supposed to raise a unittest.SkipTest on win32 but the unittest import is missing. The patch just adds the missing import See patch here: http://codereview.appspot.com/32074/show -- components: Tests messages: 84607 nosy: brett.cannon, tdri